mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 12:12:28 +00:00
Android export plugin passes absolute file paths to gradle for keystores.
(cherry picked from commit 39070291ef
)
This commit is contained in:
parent
02c596a82c
commit
b83ae018ff
@ -2991,6 +2991,13 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
|
|||||||
debug_password = EditorSettings::get_singleton()->get("export/android/debug_keystore_pass");
|
debug_password = EditorSettings::get_singleton()->get("export/android/debug_keystore_pass");
|
||||||
debug_user = EditorSettings::get_singleton()->get("export/android/debug_keystore_user");
|
debug_user = EditorSettings::get_singleton()->get("export/android/debug_keystore_user");
|
||||||
}
|
}
|
||||||
|
if (debug_keystore.is_rel_path()) {
|
||||||
|
debug_keystore = OS::get_singleton()->get_resource_dir().plus_file(debug_keystore).simplify_path();
|
||||||
|
}
|
||||||
|
if (!FileAccess::exists(debug_keystore)) {
|
||||||
|
EditorNode::add_io_error(TTR("Could not find keystore, unable to export."));
|
||||||
|
return ERR_FILE_CANT_OPEN;
|
||||||
|
}
|
||||||
|
|
||||||
cmdline.push_back("-Pdebug_keystore_file=" + debug_keystore); // argument to specify the debug keystore file.
|
cmdline.push_back("-Pdebug_keystore_file=" + debug_keystore); // argument to specify the debug keystore file.
|
||||||
cmdline.push_back("-Pdebug_keystore_alias=" + debug_user); // argument to specify the debug keystore alias.
|
cmdline.push_back("-Pdebug_keystore_alias=" + debug_user); // argument to specify the debug keystore alias.
|
||||||
@ -3000,6 +3007,9 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
|
|||||||
String release_keystore = p_preset->get("keystore/release");
|
String release_keystore = p_preset->get("keystore/release");
|
||||||
String release_username = p_preset->get("keystore/release_user");
|
String release_username = p_preset->get("keystore/release_user");
|
||||||
String release_password = p_preset->get("keystore/release_password");
|
String release_password = p_preset->get("keystore/release_password");
|
||||||
|
if (release_keystore.is_rel_path()) {
|
||||||
|
release_keystore = OS::get_singleton()->get_resource_dir().plus_file(release_keystore).simplify_path();
|
||||||
|
}
|
||||||
if (!FileAccess::exists(release_keystore)) {
|
if (!FileAccess::exists(release_keystore)) {
|
||||||
EditorNode::add_io_error(TTR("Could not find keystore, unable to export."));
|
EditorNode::add_io_error(TTR("Could not find keystore, unable to export."));
|
||||||
return ERR_FILE_CANT_OPEN;
|
return ERR_FILE_CANT_OPEN;
|
||||||
|
Loading…
Reference in New Issue
Block a user