Edward Boelzner
Edward Boelzner
What baffles me, is that .net MAUI was released with an initial target Android API of 33. But the underlying code does not support Android API 33! Starting from Android...
Here is a snippet that I use to open the device gallery and/or select a ringtone... ```cs [assembly: UsesPermission(Name = "android.permission.READ_EXTERNAL_STORAGE", MaxSdkVersion = 32)] [assembly: UsesPermission(Name = "android.permission.READ_MEDIA_AUDIO")] [assembly: UsesPermission(Name...
I checked against the new API 33 build and all was good. When will MS push out this new emulator build?
Switch your Android SDK Manager to the Google feed and update your Android 13 - API33 emulator build to v7. That version includes the Android OS fix.
As @jsuarezruiz pointed out, the issue was from a bug in Android 13. Shortly after they fixed the bug, I updated my emulator and personal devices to the new Android...
I have my own Maui implementation of the old RGPopup. There I no longer use the "Page" object, as I have created an automated "DialogView" that I pass my content...