diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-08 11:59:55 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-08 11:59:55 +0100 |
commit | c951ec163ec501e751dc9cf1440d6842cb9a7658 (patch) | |
tree | 7124eb2bd97e5e084fe5c47bc79f35c85a9f4d07 /platform/android/export/export.cpp | |
parent | 6226388bac2ad67f3650c492ea893f99a707f73b (diff) | |
parent | ca033678013b326f4a2931b3d88bd40e7a801e10 (diff) | |
download | redot-engine-c951ec163ec501e751dc9cf1440d6842cb9a7658.tar.gz |
Merge pull request #86882 from Mickeon/its-a-secret-to-everyone
Hide Keystore Release password on Android's Export window
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r-- | platform/android/export/export.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index ee1ec2790d..e276048d40 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -48,6 +48,7 @@ void register_android_exporter() { EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/android/debug_keystore", PROPERTY_HINT_GLOBAL_FILE, "*.keystore,*.jks")); EDITOR_DEF("export/android/debug_keystore_user", "androiddebugkey"); EDITOR_DEF("export/android/debug_keystore_pass", "android"); + EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/android/debug_keystore_pass", PROPERTY_HINT_PASSWORD)); EDITOR_DEF("export/android/force_system_user", false); EDITOR_DEF("export/android/shutdown_adb_on_exit", true); |