diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-11-30 21:36:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-30 21:36:55 +0100 |
commit | 0ff8742919af72c7412e63ef0f646cb4e7bd7d8f (patch) | |
tree | 65b374f2309476a80e002f99cf672d8d70e4ab61 /platform/android/export/export_plugin.cpp | |
parent | 0bb1e89fb7046209f64d46ccedc6b42645c96573 (diff) | |
parent | 2aba13e8fbba9ece140ebc3aeb8ae824e9d22f0a (diff) |
Merge pull request #67610 from m4gr3d/add_check_for_min_ndk_target_api_main
Bump the minimum Android target api to 21 (Android Lollipop)
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index c3fba625c6..737e25b270 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -245,7 +245,7 @@ static const int EXPORT_FORMAT_AAB = 1; static const char *APK_ASSETS_DIRECTORY = "res://android/build/assets"; static const char *AAB_ASSETS_DIRECTORY = "res://android/build/assetPacks/installTime/src/main/assets"; -static const int DEFAULT_MIN_SDK_VERSION = 19; // Should match the value in 'platform/android/java/app/config.gradle#minSdk' +static const int DEFAULT_MIN_SDK_VERSION = 21; // Should match the value in 'platform/android/java/app/config.gradle#minSdk' static const int DEFAULT_TARGET_SDK_VERSION = 32; // Should match the value in 'platform/android/java/app/config.gradle#targetSdk' #ifndef ANDROID_ENABLED |