diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2023-06-11 14:01:39 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2023-06-19 01:00:13 -0300 |
commit | 41a75cfa4f289fa43398a1bc0dab009783dc7d1a (patch) | |
tree | 602e57c555d896f343833a86adc0820db9021f9d /platform/ios | |
parent | 116f783db73f4bf7e9e96ae54dd3d0a20337cc8a (diff) | |
download | redot-engine-41a75cfa4f289fa43398a1bc0dab009783dc7d1a.tar.gz |
Allow exporting release Android builds without a debug keystore
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/export/export_plugin.cpp | 2 | ||||
-rw-r--r-- | platform/ios/export/export_plugin.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/platform/ios/export/export_plugin.cpp b/platform/ios/export/export_plugin.cpp index ae0d120513..9962a48250 100644 --- a/platform/ios/export/export_plugin.cpp +++ b/platform/ios/export/export_plugin.cpp @@ -1899,7 +1899,7 @@ Error EditorExportPlatformIOS::export_project(const Ref<EditorExportPreset> &p_p return OK; } -bool EditorExportPlatformIOS::has_valid_export_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const { +bool EditorExportPlatformIOS::has_valid_export_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates, bool p_debug) const { String err; bool valid = false; diff --git a/platform/ios/export/export_plugin.h b/platform/ios/export/export_plugin.h index 2e461c8ed6..6616bbd714 100644 --- a/platform/ios/export/export_plugin.h +++ b/platform/ios/export/export_plugin.h @@ -208,7 +208,7 @@ public: } virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) override; - virtual bool has_valid_export_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const override; + 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; virtual void get_platform_features(List<String> *r_features) const override { |