diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-12-11 20:50:44 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-02-13 16:36:41 +0200 |
commit | 94238d046228dcca57ec3d5eeb94b8c0110f6d01 (patch) | |
tree | a0858d115dfb425ae482dcec1699ea711fd99b34 /platform/android | |
parent | dfe226b93346c208787728eceecc2c64d81a9553 (diff) | |
download | redot-engine-94238d046228dcca57ec3d5eeb94b8c0110f6d01.tar.gz |
[iOS/macOS] Add option to automatically build (and sign / archive) bundles.
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/detect.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index b396e5eb2d..8976e218b3 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -28,6 +28,7 @@ def get_opts(): "android-" + str(get_min_target_api()), ), BoolVariable("store_release", "Editor build for Google Play Store (for official builds only)", False), + BoolVariable("generate_apk", "Generate an APK/AAB after building Android library by calling Gradle", False), ] |