diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-08-22 23:30:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 23:30:13 +0000 |
commit | b4cea107712b12ca6874fca189eef89cd37b30d7 (patch) | |
tree | 414244145491c373999103df203d985fb91b3277 /platform/android/export/export.cpp | |
parent | 7560ba8aa121420165d97fc0bdd4213dd56a2c50 (diff) | |
parent | 2cdace1749f5f4fc878c51b5b7a44373bdfad7b9 (diff) |
Merge pull request #49756 from Calinou/android-export-move-clear-previous-install-setting
Move the Android "clear previous install" setting to Editor Settings
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r-- | platform/android/export/export.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index fc86abb6f1..8df61831c2 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -48,6 +48,8 @@ void register_android_exporter() { EDITOR_DEF("export/android/shutdown_adb_on_exit", true); + EDITOR_DEF("export/android/one_click_deploy_clear_previous_install", false); + Ref<EditorExportPlatformAndroid> exporter = Ref<EditorExportPlatformAndroid>(memnew(EditorExportPlatformAndroid)); EditorExport::get_singleton()->add_export_platform(exporter); } |