diff options
author | DmitriySalnikov <salnikov.mine@yandex.ru> | 2023-11-23 00:08:13 +0300 |
---|---|---|
committer | DmitriySalnikov <salnikov.mine@yandex.ru> | 2023-11-23 00:28:03 +0300 |
commit | 79d2a9c4563cb768f508cc3f791c66c7cc57d379 (patch) | |
tree | 719aff2291c55935ade68191cc8a61315f9545f5 /tools/android.py | |
parent | 6fd4e151b8651929cdc660513445e953de10278e (diff) | |
download | redot-cpp-79d2a9c4563cb768f508cc3f791c66c7cc57d379.tar.gz |
[Scons] Set the minimum Android API level to 21
Diffstat (limited to 'tools/android.py')
-rw-r--r-- | tools/android.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tools/android.py b/tools/android.py index 479ee15..bee58c4 100644 --- a/tools/android.py +++ b/tools/android.py @@ -8,7 +8,7 @@ def options(opts): opts.Add( "android_api_level", "Target Android API level", - "18" if "32" in ARGUMENTS.get("arch", "arm64") else "21", + "21", ) opts.Add( "ANDROID_HOME", @@ -47,11 +47,9 @@ def generate(env): my_spawn.configure(env) # Validate API level - api_level = int(env["android_api_level"]) - if "64" in env["arch"] and api_level < 21: - print("WARN: 64-bit Android architectures require an API level of at least 21; setting android_api_level=21") + if int(env["android_api_level"]) < 21: + print("WARNING: minimum supported Android target api is 21. Forcing target api 21.") env["android_api_level"] = "21" - api_level = 21 # Setup toolchain toolchain = get_android_ndk_root(env) + "/toolchains/llvm/prebuilt/" |