David Britch
David Britch
@andrijac It's also worth checking your .csproj file that the entries for the video(s) look like: ```xml ``` I've had cases where VS produces incorrect .csproj entries (it can do...
Is your bundle id definitely `com.mobileapp` i.e. two parts to it rather than three?
Where did you change the bundle id?
You also need to update it in your .csproj: https://github.com/davidbritch/dotnet-maui-videoplayer/blob/a874e5673c6ebc1894441c35773b52727a81098a/src/VideoDemos/VideoDemos.csproj#L18
Hi @EdwardMcFlurry By default, an Android `MediaController` hides itself after 3 seconds. In order to make it visible throughout video playback you'll have to override the `MediaController.Hide` method: ``` public...
There are two GitHub actions in maui-samples that you may want to re-use: - One is manually triggered and builds all the samples in the repo (useful when updating .NET...
@bijington The URL gives away what the problem is: https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/alerts/toast?tabs=tizen%2Cmacios%2Candroid - it's trying to display multiple tabs at once, rather than a single tab. This occurs because you have unbalanced...
@bijington There's a second solution: ensure the tab ids in one of the tab groups are different to the tab ids in the other group. With this approach you can...
@adegeo There's content, buried deep in the Xamarin docs, that lists where the different `Environment.SpecialFolder.*` properties map on iOS/Android. It's always been planned to bring that content into the MAUI...
https://github.com/dotnet/maui/pull/23787