diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-04 14:25:09 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-04 14:25:09 +0100 |
commit | 763a8e98390092befad43e00067a4986dbb6ff6f (patch) | |
tree | bebe99bfa4b19d83b72129591473192a52785c8a /platform/android/export/export_plugin.h | |
parent | bbfcfe50daa7a354d0a723194200dba1e77228ef (diff) | |
parent | f8e10a2610329114b4cf9770d590cb9ea77c013e (diff) | |
download | redot-engine-763a8e98390092befad43e00067a4986dbb6ff6f.tar.gz |
Merge pull request #83702 from Patchcoat/VerifyKeystore
Ensure Android keystore username and password are checked on export
Diffstat (limited to 'platform/android/export/export_plugin.h')
-rw-r--r-- | platform/android/export/export_plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/android/export/export_plugin.h b/platform/android/export/export_plugin.h index a2d0417c5d..5b585581b0 100644 --- a/platform/android/export/export_plugin.h +++ b/platform/android/export/export_plugin.h @@ -228,6 +228,7 @@ public: virtual bool has_valid_export_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates, bool p_debug = false) const override; virtual bool has_valid_project_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error) const override; + static bool has_valid_username_and_password(const Ref<EditorExportPreset> &p_preset, String &r_error); virtual List<String> get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const override; |