Been dealing with the new Play Console warning:
"Your app does not support 16 KB memory page sizes."
On paper the fix sounds simple: upgrade to AGP 8.5+.
In reality for older React Native apps it becomes:
Gradle upgrades
dependency upgrades
possible RN upgrades
praying nothing breaks in production
Didn’t really want to destabilize stable apps just to satisfy one Play Console requirement, so I ended up experimenting with patching the generated artifacts instead.
Basically wrote some scripts that:
patch
.soalignment from 4KB → 16KBpatch the generated AAB config before upload
Surprisingly worked across a few production apps and passed Play review.
Curious how others are handling this issue without doing a full stack upgrade.
I wrote up the findings + open sourced the scripts here: