Add support for custom debug keystore.
(cherry picked from commit d5b4045ea4
)
This commit is contained in:
parent
e1bc053496
commit
5ba710863d
|
@ -2976,19 +2976,35 @@ public:
|
||||||
// Sensitive additions must be done below the logging statement.
|
// Sensitive additions must be done below the logging statement.
|
||||||
print_verbose("Build Android project using gradle command: " + String("\n") + build_command + " " + join_list(cmdline, String(" ")));
|
print_verbose("Build Android project using gradle command: " + String("\n") + build_command + " " + join_list(cmdline, String(" ")));
|
||||||
|
|
||||||
if (should_sign && !p_debug) {
|
if (should_sign) {
|
||||||
// Pass the release keystore info as well
|
if (p_debug) {
|
||||||
String release_keystore = p_preset->get("keystore/release");
|
String debug_keystore = p_preset->get("keystore/debug");
|
||||||
String release_username = p_preset->get("keystore/release_user");
|
String debug_password = p_preset->get("keystore/debug_password");
|
||||||
String release_password = p_preset->get("keystore/release_password");
|
String debug_user = p_preset->get("keystore/debug_user");
|
||||||
if (!FileAccess::exists(release_keystore)) {
|
|
||||||
EditorNode::add_io_error("Could not find keystore, unable to export.");
|
|
||||||
return ERR_FILE_CANT_OPEN;
|
|
||||||
}
|
|
||||||
|
|
||||||
cmdline.push_back("-Prelease_keystore_file=" + release_keystore); // argument to specify the release keystore file.
|
if (debug_keystore.empty()) {
|
||||||
cmdline.push_back("-Prelease_keystore_alias=" + release_username); // argument to specify the release keystore alias.
|
debug_keystore = EditorSettings::get_singleton()->get("export/android/debug_keystore");
|
||||||
cmdline.push_back("-Prelease_keystore_password=" + release_password); // argument to specity the release keystore password.
|
debug_password = EditorSettings::get_singleton()->get("export/android/debug_keystore_pass");
|
||||||
|
debug_user = EditorSettings::get_singleton()->get("export/android/debug_keystore_user");
|
||||||
|
}
|
||||||
|
|
||||||
|
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_password=" + debug_password); // argument to specify the debug keystore password.
|
||||||
|
} else {
|
||||||
|
// Pass the release keystore info as well
|
||||||
|
String release_keystore = p_preset->get("keystore/release");
|
||||||
|
String release_username = p_preset->get("keystore/release_user");
|
||||||
|
String release_password = p_preset->get("keystore/release_password");
|
||||||
|
if (!FileAccess::exists(release_keystore)) {
|
||||||
|
EditorNode::add_io_error("Could not find keystore, unable to export.");
|
||||||
|
return ERR_FILE_CANT_OPEN;
|
||||||
|
}
|
||||||
|
|
||||||
|
cmdline.push_back("-Prelease_keystore_file=" + release_keystore); // argument to specify the release keystore file.
|
||||||
|
cmdline.push_back("-Prelease_keystore_alias=" + release_username); // argument to specify the release keystore alias.
|
||||||
|
cmdline.push_back("-Prelease_keystore_password=" + release_password); // argument to specify the release keystore password.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int result = EditorNode::get_singleton()->execute_and_show_output(TTR("Building Android Project (gradle)"), build_command, cmdline);
|
int result = EditorNode::get_singleton()->execute_and_show_output(TTR("Building Android Project (gradle)"), build_command, cmdline);
|
||||||
|
|
|
@ -127,6 +127,15 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
|
debug {
|
||||||
|
if (hasCustomDebugKeystore()) {
|
||||||
|
storeFile new File(getDebugKeystoreFile())
|
||||||
|
storePassword getDebugKeystorePassword()
|
||||||
|
keyAlias getDebugKeyAlias()
|
||||||
|
keyPassword getDebugKeystorePassword()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
release {
|
release {
|
||||||
File keystoreFile = new File(getReleaseKeystoreFile())
|
File keystoreFile = new File(getReleaseKeystoreFile())
|
||||||
if (keystoreFile.isFile()) {
|
if (keystoreFile.isFile()) {
|
||||||
|
|
|
@ -191,6 +191,35 @@ ext.getGodotPluginsLocalBinaries = { ->
|
||||||
return binDeps
|
return binDeps
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ext.getDebugKeystoreFile = { ->
|
||||||
|
String keystoreFile = project.hasProperty("debug_keystore_file") ? project.property("debug_keystore_file") : ""
|
||||||
|
if (keystoreFile == null || keystoreFile.isEmpty()) {
|
||||||
|
keystoreFile = "."
|
||||||
|
}
|
||||||
|
return keystoreFile
|
||||||
|
}
|
||||||
|
|
||||||
|
ext.hasCustomDebugKeystore = { ->
|
||||||
|
File keystoreFile = new File(getDebugKeystoreFile())
|
||||||
|
return keystoreFile.isFile()
|
||||||
|
}
|
||||||
|
|
||||||
|
ext.getDebugKeystorePassword = { ->
|
||||||
|
String keystorePassword = project.hasProperty("debug_keystore_password") ? project.property("debug_keystore_password") : ""
|
||||||
|
if (keystorePassword == null || keystorePassword.isEmpty()) {
|
||||||
|
keystorePassword = "android"
|
||||||
|
}
|
||||||
|
return keystorePassword
|
||||||
|
}
|
||||||
|
|
||||||
|
ext.getDebugKeyAlias = { ->
|
||||||
|
String keyAlias = project.hasProperty("debug_keystore_alias") ? project.property("debug_keystore_alias") : ""
|
||||||
|
if (keyAlias == null || keyAlias.isEmpty()) {
|
||||||
|
keyAlias = "androiddebugkey"
|
||||||
|
}
|
||||||
|
return keyAlias
|
||||||
|
}
|
||||||
|
|
||||||
ext.getReleaseKeystoreFile = { ->
|
ext.getReleaseKeystoreFile = { ->
|
||||||
String keystoreFile = project.hasProperty("release_keystore_file") ? project.property("release_keystore_file") : ""
|
String keystoreFile = project.hasProperty("release_keystore_file") ? project.property("release_keystore_file") : ""
|
||||||
if (keystoreFile == null || keystoreFile.isEmpty()) {
|
if (keystoreFile == null || keystoreFile.isEmpty()) {
|
||||||
|
|
Loading…
Reference in New Issue