- Published on
Solve Play Store Requirement: 16KB Memory Page Size in Expo
- Authors
- Name
- Tuxnux.com
- https://tuxnuxt.com
Starting November 1, 2025, all new apps and updates to existing apps submitted to Google Play and targeting Android 15+ devices must support a 16 KB page size on 64-bit devices.
This requirement also affects Android apps built with Expo. The impacted versions are Expo SDK 53.0.14 and below (expo@<53.0.14), as well as third-party libraries that do not yet support the 16 KB page size.
How to Fix in Expo
- Create a
.npmrc
file with the following content:legacy-peer-deps=true
- Upgrade to SDK 53 or higher:
npx expo install expo@^53.0.22 --fix
- Fix dependencies:
npx expo install --fix
Final Step
Finally, test your app to ensure there are no errors after the upgrade.
How to verify if my app is compatible with 16KB page size
Verify uploaded app from Google Play Console You can check your existing app bundle from the app bundle explorer in Play Console: App bundle explorer in Play Console
The explorer will show whether your app bundle is compatible and will also list incompatible files:
references: https://github.com/expo/fyi/blob/main/android-16kb-page-sizes.md
Semoga bermanfaat.
Terimakasih
(Tuxnuxt.com)