From ace6df6947d99aeea52daa0f91c9b891e414494e Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Tue, 27 Jul 2021 09:15:45 -0700 Subject: [PATCH] Fix custom build export --- platform/android/export/export.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 956b59ce800..e5d1c2020a4 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -2068,6 +2068,8 @@ public: if (!installed_android_build_template) { r_missing_templates = !exists_export_template("android_source.zip", &err); err += TTR("Android build template not installed in the project. Install it from the Project menu.") + "\n"; + } else { + r_missing_templates = false; } valid = installed_android_build_template && !r_missing_templates;