diff options
author | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-03-01 14:09:30 -0800 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-04-27 22:08:55 -0700 |
commit | 0d569bea5dfca80fa97879a93af62090d98073a2 (patch) | |
tree | 0eed3f0de3ec12b5cf1b03abe8ae2afb8486d16f /platform/android/detect.py | |
parent | 24cb43a8741c7b10abbbbc77bb6e2bc188662ce0 (diff) | |
download | redot-engine-0d569bea5dfca80fa97879a93af62090d98073a2.tar.gz |
Update the gradle build tasks to generate play store builds.
Configure the gradle builds to sign and build the release version of the Godot Android Editor
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r-- | platform/android/detect.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 7515d0020d..20aced3524 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -22,6 +22,8 @@ def can_build(): def get_opts(): + from SCons.Variables import BoolVariable + return [ ("ANDROID_SDK_ROOT", "Path to the Android SDK", get_env_android_sdk_root()), ( @@ -29,6 +31,7 @@ def get_opts(): 'Target platform (android-<api>, e.g. "android-' + str(get_min_target_api()) + '")', "android-" + str(get_min_target_api()), ), + BoolVariable("store_release", "Editor build for Google Play Store (for official builds only)", False), ] |