A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
Hi @Chinmay Dole , thank for your quick update!
Since you are already on .NET 9.0.40 and targeting Android API 35, you’ve completed the first step for Android 15 support.
If your MAUI projects that use only managed C# code, no additional changes are required. However, if your app relies on third-party packages like SkiaSharp, SQLitePCL, or barcode scanning libraries, make sure these dependencies have been updated and recompiled with the latest Android NDK. The Android Gradle Plugin 8.5.1 and NDK r28 or newer automatically align binaries for 16 KB pages, but older builds may fail at runtime or trigger Google Play policy violations. About that, you can check release notes of these packages to check.
After that, remember to test on a 16 KB device or emulator (Android 15 system images allow you to enable 16 KB page size and verify runtime behavior.)
I also found a detailed developer blog post that might be useful to you.
Overall, just make sure all native dependencies in your project are updated and validated against a 16 KB environment is enough. I hope this helps you get things back on track quickly! If my suggestions can solve your issue, feel free to interact with the system accordingly!
Thank you!