Fix android template install validation.
(cherry picked from commit 5b80dc9a2a
)
This commit is contained in:
parent
447acafa97
commit
7de67f6c48
|
@ -547,9 +547,7 @@ void ExportTemplateManager::_notification(int p_what) {
|
||||||
bool ExportTemplateManager::can_install_android_template() {
|
bool ExportTemplateManager::can_install_android_template() {
|
||||||
|
|
||||||
const String templates_dir = EditorSettings::get_singleton()->get_templates_dir().plus_file(VERSION_FULL_CONFIG);
|
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")) &&
|
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"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Error ExportTemplateManager::install_android_template() {
|
Error ExportTemplateManager::install_android_template() {
|
||||||
|
|
Loading…
Reference in New Issue