mphill
mphill
https://github.com/thudugala/Plugin.LocalNotification/commit/1770ab5f3cc60a79e68c102962300b30089bc767#diff-29601a30f9f82e603c2c76063fa0fd32a45c9df7798ba636d6db94583937a2df I'm not sure this is the best approach. Essentially what I was trying to add is the ability to conditionally show a message. This would be useful for daily...
> NotificationReceiving is implemented in iOS, please look at NotificationServiceExtension.cs The implmentation for local and remote notification appear to be different, it looks like the extension class is only for...
Here is some addition documentation on modifying notification content: https://developer.apple.com/documentation/usernotifications/modifying_content_in_newly_delivered_notifications It appears you can only modify remote notification, all of the properties on a local notifications only have getters. The...
@Deadpikle I need some guidance on how to handle the Company Name and constructor. This PR should allow me to start testing MacOS updates with Xamarin. Thanks!
A quick update, this is working on master now. However, iOS and MacOS apps are not supported. ``` if (_configuration == null) { #if NETSTANDARD if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { _configuration =...
> If you're on macOS, I highly recommend using Sparkle instead of this lib Thanks for the recommendation, but maintaining native bindings has its own set of issues, and it...
> Hm...regarding Info.plist: I don't see yet why we couldn't just read that in as XML. We don't really need a lib for reading that file, do we? I think...
This is happening in Xamarin Forms 5.0.0.1829-pre6 as well. Code was previously working on older versions of Xamarin
Can we get an update on this issue? All Xamarin apps that use Shell TitleView are now functionally broken in iOS 16 - the content won’t show. If you have...
To anyone using the fix from @adam-russell (thank you so much). If the TitleView is still blank, make sure you specify a `RowDefintion` or `RequestHeight` if using a `Grid`. You...