From 00b45fdc4a0f8a195e678e1a55858fcbe64dd87e Mon Sep 17 00:00:00 2001 From: RusJJ Date: Thu, 30 Nov 2023 22:52:59 +0300 Subject: [PATCH] Update Application.mk Fix the dumbo warning. Min supported Android OS is now 5.0 --- armpatch_src/Application.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/armpatch_src/Application.mk b/armpatch_src/Application.mk index 4606a45..70e192a 100644 --- a/armpatch_src/Application.mk +++ b/armpatch_src/Application.mk @@ -1,3 +1,4 @@ APP_STL := c++_static APP_ABI := armeabi-v7a arm64-v8a -APP_OPTIM := release \ No newline at end of file +APP_OPTIM := release +APP_PLATFORM := android-21 \ No newline at end of file