A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
Thank you for your inquiry.
The Play Store warning is because some native libraries in your app are still built for the old 4 KB memory pages. Google requires 16 KB support for apps targeting Android 15+. You can refer to this article for more details.
Migrating to MAUI is a great step, but we still need to fix the native parts.
I recommend upgrading the whole project to .NET MAUI 9 or 10. Because these versions support 16KB automatically. .NET MAUI 8 is already out of support, so you are likely to face multiple issues when using an outdated version.
Furthermore, update these packages to their latest versions:
- SkiaSharp and SkiaSharp.Views.Maui.Controls
- ZXing.Net.Maui
- FFImageLoading.Maui
- Plugin.Firebase
- Xamarin.OpenTok.Android
After updating, clean the project, build a new AAB, and upload to Internal Testing in Play Console. The warning should disappear.
I hope this addresses your question. If this response was helpful, please consider following the guidance to provide feedback.