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/uwp/export/export_plugin.h | |
parent | 116f783db73f4bf7e9e96ae54dd3d0a20337cc8a (diff) | |
download | redot-engine-41a75cfa4f289fa43398a1bc0dab009783dc7d1a.tar.gz |
Allow exporting release Android builds without a debug keystore
Diffstat (limited to 'platform/uwp/export/export_plugin.h')
-rw-r--r-- | platform/uwp/export/export_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/export/export_plugin.h b/platform/uwp/export/export_plugin.h index 999d54cb80..cc86bdb280 100644 --- a/platform/uwp/export/export_plugin.h +++ b/platform/uwp/export/export_plugin.h @@ -434,7 +434,7 @@ public: virtual void get_export_options(List<ExportOption> *r_options) const 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 Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) override; |