Replies: 1 comment
-
A bit more information is available here - https://android-developers.googleblog.com/2024/12/get-your-apps-ready-for-16-kb-page-size-devices.html |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, Google is pushing support for 16KB page size - https://developer.android.com/guide/practices/page-sizes and from 1st of November 2025 only apps supporting this fully will be accepted on Google Play.

When I am compiling my project, I am getting a warning for libsqliteX.so
Which is related to code (I think, but might be wrong):
` public AndroidBindingsSQLiteDatabase getAndroidBindingsSQLiteDatabase() {
if (bindingsDb.getDb() == null) {
synchronized (db) {
if (bindingsDb.getDb() == null) {
Can the library be recompiled with support for 16KB page size, which I believe is with NDK 26+ ?
Kind Regards,
Andrzej
Beta Was this translation helpful? Give feedback.
All reactions