1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Add support for custom debug keystore.

This commit is contained in:
ne0fhyk
2021-06-07 09:19:18 -07:00
parent 277db14b64
commit 532b0e3462
3 changed files with 66 additions and 12 deletions

View File

@@ -113,6 +113,15 @@ android {
}
signingConfigs {
debug {
if (hasCustomDebugKeystore()) {
storeFile new File(getDebugKeystoreFile())
storePassword getDebugKeystorePassword()
keyAlias getDebugKeyAlias()
keyPassword getDebugKeystorePassword()
}
}
release {
File keystoreFile = new File(getReleaseKeystoreFile())
if (keystoreFile.isFile()) {