Dealing with 16 KB page size
Overview
Google has announced that:
Starting November 1st, 2025, all new apps and updates to existing apps submitted to Google Play and targeting Android 15+ devices must support 16 KB page sizes.
Google requires native libraries to support 16 KB page sizes for the arm64-v8a
and x86_64
architectures.
We have updated the MobbScan Android SDK to be compatible only with arm64-v8a
.
Why isn't x86_64 supported?
We use technology specifically designed for mobile devices, which is why we have historically only supported the following architectures:
arm64-v8a
armeabi-v7a
What actions are required for my app to be approved?
You need to follow these two steps:
- Ensure you are using the latest version of the MobbScan Android SDK:
v2.28.11
or higher. - Configure your
build.gradle
to generate an artifact with only the supported architectures:arm64-v8a
andarmeabi-v7a
:
defaultConfig {
...
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a'
}
}
- (Optional) If you use the video module, you will need to update the Twilio library to version 7.7.1.
implementation 'com.twilio:video-android:7.7.1'
Facing Other Issues?
If you encounter any additional problems, please contact us for more personalized support.