Hi, my app is being rejected by the Google Play Store because it does not comply with the new 16KB page size requirement for Android 15.
After analyzing the .aab file, I found that the native libraries bundled by this plugin (including libbarhopper_v3.so) are currently compressed and 4KB aligned.
Technical Details:
Issue: Native libraries are not 16KB aligned.
Impact: App fails Play Store submission for API 35.
Requested Fix:
Please update the Android build toolchain to NDK r27 or higher.
Ensure the pre-compiled .aar or native binaries are built with -Wl,-z,max-page-size=16384.
Ensure useLegacyPackaging = false is respected so that libs are stored uncompressed in the final APK/AAB.
Are there plans to release a 16KB-compliant version soon?
Hi, my app is being rejected by the Google Play Store because it does not comply with the new 16KB page size requirement for Android 15.
After analyzing the .aab file, I found that the native libraries bundled by this plugin (including libbarhopper_v3.so) are currently compressed and 4KB aligned.
Technical Details:
Issue: Native libraries are not 16KB aligned.
Impact: App fails Play Store submission for API 35.
Requested Fix:
Please update the Android build toolchain to NDK r27 or higher.
Ensure the pre-compiled .aar or native binaries are built with -Wl,-z,max-page-size=16384.
Ensure useLegacyPackaging = false is respected so that libs are stored uncompressed in the final APK/AAB.
Are there plans to release a 16KB-compliant version soon?