Support 16 KB page sizes: 16 KB Google Play compatibility requirement
Current Android version is build with 4kb page size but now Google play has 16k page size compatibility requirement. ref: https://developer.android.com/guide/practices/page-sizes
Could you rebuild the android libs with 16k page size?
cc: @JohannesDeml
btw, changing Application.mk this generates 16k page size .so
APP_PLATFORM := android-31
APP_OPTIM := release
APP_MODULES := libenet
APP_ABI := arm64-v8a
APP_CFLAGS := -fPIC
APP_LDFLAGS := -Wl,-z,max-page-size=16384
and no change in Android,mk
btw, changing Application.mk this generates 16k page size .so
APP_PLATFORM := android-31 APP_OPTIM := release APP_MODULES := libenet APP_ABI := arm64-v8a APP_CFLAGS := -fPIC APP_LDFLAGS := -Wl,-z,max-page-size=16384and no change in Android,mk
hey man is there anyway you could upload these files? building from scratch causes many problems
@WaneOshin https://drive.google.com/file/d/1bFP8RXmMhIDdVWR77XEp3yJThpSffMJ2/view?usp=sharing here is the libenet.so 16k page size