From daf922fa8a57828169dbf22fe211edd7807a7c37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Mon, 16 Aug 2021 10:12:37 +0200 Subject: [PATCH] Android: Increase default armv7 NDK platform to 19 Following #50359 this is the new minSdk that we target. Users can still override it in custom builds if they want to support SDK 18. --- platform/android/detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/android/detect.py b/platform/android/detect.py index f2eb095f83..c190fe701c 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -26,7 +26,7 @@ def get_opts(): return [ ("ANDROID_NDK_ROOT", "Path to the Android NDK", get_android_ndk_root()), ("ANDROID_SDK_ROOT", "Path to the Android SDK", get_android_sdk_root()), - ("ndk_platform", 'Target platform (android-, e.g. "android-18")', "android-18"), + ("ndk_platform", 'Target platform (android-, e.g. "android-19")', "android-19"), EnumVariable("android_arch", "Target architecture", "armv7", ("armv7", "arm64v8", "x86", "x86_64")), BoolVariable("android_neon", "Enable NEON support (armv7 only)", True), ]