nexa-sdk icon indicating copy to clipboard operation
nexa-sdk copied to clipboard

[Android] Support 16KB page size alignment for Android 15 compliance

Open bhanuka96 opened this issue 4 months ago • 0 comments

Problem Google Play requires 16KB page alignment for apps targeting Android 15+ (API 35) by Nov 1, 2025. Plugin is currently flagging a "Does not support 16 KB" error in the Play Console due to nexa-sdk native libraries.

Affected Libraries

libnexa-mm-process.so
libnexa-sampling.so
libnexaproc.so

(And bundled dependencies like libQnn*.so, libomni-neural-sdk.so)

Requested Solution Please update the SDK build configuration to support 16KB alignment. This usually requires:

NDK r28+ & AGP 8.5.1+

Linker flag: -z max-page-size=16384

Context Ref: https://developer.android.com/guide/practices/page-sizes

Image

bhanuka96 avatar Nov 22 '25 18:11 bhanuka96