From 986211e9cf94e24c8ab8e8e9a4515564de54106d Mon Sep 17 00:00:00 2001 From: Donghak PARK Date: Tue, 13 Aug 2024 11:32:16 +0900 Subject: [PATCH] [BUILD] add APP_SUPPORT_FLEXIBLE_PAGE_SIZES For support 16k page size, add APP_SUPPORT_FLEXIBLE_PAGE_SIZES as True, According to Android Guide **Self evaluation:** 1. Build test: [X]Passed [ ]Failed [ ]Skipped 2. Run test: [X]Passed [ ]Failed [ ]Skipped Signed-off-by: Donghak PARK --- jni/Application.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/jni/Application.mk b/jni/Application.mk index 913656fad4..38f30c9af0 100644 --- a/jni/Application.mk +++ b/jni/Application.mk @@ -2,3 +2,4 @@ APP_ABI := arm64-v8a LIBCXX_USE_GABIXX := true APP_STL := c++_shared APP_PLATFORM := android-29 +APP_SUPPORT_FLEXIBLE_PAGE_SIZES := true \ No newline at end of file