I am trying to get my Android Flutter app to be 16kb memory page compatible but am having trouble with a couple included libraries.
Coming from Play Store
Libraries that do not support 16 KB:
base/lib/arm64-v8a/libimage_processing_util_jni.so
base/lib/arm64-v8a/libsqlite3.so
base/lib/x86_64/libimage_processing_util_jni.so
base/lib/x86_64/libsqlite3.so
- Flutter 3.35.7
- compileSDKVersion = '36'
- ndkVersion "28.0.12433566"
- targetSdkVersion 36
- id "com.android.application" version '8.5.1' apply false
When I make an APK build and run it through the analyzer in Android Studio, these 2 libraries say their alignment is '16k' in both arm64 and x86 so I don't understand what's going on.
I cant say for certain that its a package causing this but I followed this as a basis.