ENetUnityMobile icon indicating copy to clipboard operation
ENetUnityMobile copied to clipboard

Support 16 KB page sizes: 16 KB Google Play compatibility requirement

Open Ahmed310 opened this issue 6 months ago • 1 comments

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

Ahmed310 avatar Oct 25 '25 21:10 Ahmed310

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

Ahmed310 avatar Oct 30 '25 21:10 Ahmed310

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

hey man is there anyway you could upload these files? building from scratch causes many problems

WaneOshin avatar Dec 29 '25 10:12 WaneOshin

@WaneOshin https://drive.google.com/file/d/1bFP8RXmMhIDdVWR77XEp3yJThpSffMJ2/view?usp=sharing here is the libenet.so 16k page size

Ahmed310 avatar Dec 29 '25 14:12 Ahmed310