summaryrefslogtreecommitdiff
path: root/platform/android/export
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@fb.com>2022-09-13 20:48:33 -0700
committerFredia Huya-Kouadio <fhuya@fb.com>2022-09-13 20:48:33 -0700
commit9d5e48f873ba55b6b7eddb57e754bea96149ab4a (patch)
treefb81c5a0656b15b2814596d1b9454f82de49bedb /platform/android/export
parent2d9583fa3bf2426dabbdd9e9d9b8fd9725b9436c (diff)
Disable menus and functionality that are not relevant on the Android Editor port
Diffstat (limited to 'platform/android/export')
-rw-r--r--platform/android/export/export.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp
index 5bbe0ffab6..f4c4e985fe 100644
--- a/platform/android/export/export.cpp
+++ b/platform/android/export/export.cpp
@@ -36,6 +36,7 @@
#include "export_plugin.h"
void register_android_exporter() {
+#ifndef ANDROID_ENABLED
EDITOR_DEF("export/android/android_sdk_path", "");
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/android/android_sdk_path", PROPERTY_HINT_GLOBAL_DIR));
EDITOR_DEF("export/android/debug_keystore", "");
@@ -47,6 +48,7 @@ void register_android_exporter() {
EDITOR_DEF("export/android/shutdown_adb_on_exit", true);
EDITOR_DEF("export/android/one_click_deploy_clear_previous_install", false);
+#endif
Ref<EditorExportPlatformAndroid> exporter = Ref<EditorExportPlatformAndroid>(memnew(EditorExportPlatformAndroid));
EditorExport::get_singleton()->add_export_platform(exporter);