janwiebe-jump
janwiebe-jump
Hi @chamons, Thanks for your quick response. I stripped down my app to the bare minimum: it's a Xamarin Forms app, with CarPlay side. https://github.com/janwiebe-jump/carplay-repro The one thing you need...
Thanks @mandel-macaque , good catch indeed. I re-added the old constructors, and added the Obsolete attribute. Next to that, I also added the `Items[]` property (besides the existing) to conform...
Hmm, the `Items` property > Lets see what the tests got to see. But the changes look good to me. Thanks. I am curious how the duplicate `Items[]` works out
The build is failing, is there anything I can do to fix it?
Hi all, thanks for your reviews and input. I would like to know what is next to get this merged and released. It blocks the release of our app. Is...
I have seen this behaviour on Android11 and higher. I am using this code in such situations on Android: ``` // On Android >= 11, the mapping of the fields...
@virk0009 I have achieved this by subclassing the NotificationManager class on my Xamarin iOS project, and overriding the ShowNavigationControls. I wanted to show the next and previous buttons in the...
@thanoue This is my Custon NotificationManager ``` class NotificationManager : MediaManager.Platforms.Apple.Notifications.NotificationManager { public override bool ShowNavigationControls { get => base.ShowNavigationControls; set { base.ShowNavigationControls = value; // The base class attaches...
According to my findings, yes.
It might be caused by this line, but I'm unsure why: https://github.com/Baseflow/XamarinMediaManager/blob/develop/MediaManager/Platforms/Android/MediaManagerImplementation.cs#L300 The queue of the MediaController is empty at this point, so that's might be why it cannot jump...