From a5897d579bb0af496a18f7430345a67fe27ff0df Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Sun, 16 Jun 2024 12:14:34 -0700 Subject: Update the `GodotHost` interface to support signing and verifying Android apks Update the export logic to enable apk generation and signing for Android editor builds Note: Only legacy builds are supported. Gradle builds are not supported at this point in time. --- editor/export/editor_export_platform.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'editor/export/editor_export_platform.cpp') diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp index 0768ae128b..8b31eda3bc 100644 --- a/editor/export/editor_export_platform.cpp +++ b/editor/export/editor_export_platform.cpp @@ -1861,7 +1861,6 @@ void EditorExportPlatform::gen_export_flags(Vector &r_flags, int p_flags bool EditorExportPlatform::can_export(const Ref &p_preset, String &r_error, bool &r_missing_templates, bool p_debug) const { bool valid = true; -#ifndef ANDROID_ENABLED String templates_error; valid = valid && has_valid_export_configuration(p_preset, templates_error, r_missing_templates, p_debug); @@ -1886,7 +1885,6 @@ bool EditorExportPlatform::can_export(const Ref &p_preset, S if (!export_plugins_warning.is_empty()) { r_error += export_plugins_warning; } -#endif String project_configuration_error; valid = valid && has_valid_project_configuration(p_preset, project_configuration_error); -- cgit v1.2.3