diff options
author | fhuya <fhuya@google.com> | 2020-03-02 10:53:05 -0500 |
---|---|---|
committer | fhuya <fhuya@google.com> | 2020-03-02 10:53:05 -0500 |
commit | 5b80dc9a2ad6425533107f04ab0696f2c229baf2 (patch) | |
tree | 2efcf58669c1f0566ba5af849c362439532d8698 /editor/export_template_manager.cpp | |
parent | e2b66cacf78ae39b94df748e9740b98a1f011e77 (diff) |
Fix android template install validation.
Diffstat (limited to 'editor/export_template_manager.cpp')
-rw-r--r-- | editor/export_template_manager.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/editor/export_template_manager.cpp b/editor/export_template_manager.cpp index bbf741948b..12c756122e 100644 --- a/editor/export_template_manager.cpp +++ b/editor/export_template_manager.cpp @@ -547,9 +547,7 @@ void ExportTemplateManager::_notification(int p_what) { bool ExportTemplateManager::can_install_android_template() { const String templates_dir = EditorSettings::get_singleton()->get_templates_dir().plus_file(VERSION_FULL_CONFIG); - return FileAccess::exists(templates_dir.plus_file("android_source.zip")) && - FileAccess::exists(templates_dir.plus_file("android_release.apk")) && - FileAccess::exists(templates_dir.plus_file("android_debug.apk")); + return FileAccess::exists(templates_dir.plus_file("android_source.zip")); } Error ExportTemplateManager::install_android_template() { |