Do not use static debug key for CI
This commit is contained in:
parent
24ccbc58c4
commit
117923413d
@ -50,12 +50,14 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
|
if (!System.getenv()["CI"]) {
|
||||||
debug {
|
debug {
|
||||||
keyAlias keystoreProperties['debugKeyAlias']
|
keyAlias keystoreProperties['debugKeyAlias']
|
||||||
keyPassword keystoreProperties['debugKeyPassword']
|
keyPassword keystoreProperties['debugKeyPassword']
|
||||||
storeFile file(keystoreProperties['debugStoreFile'])
|
storeFile file(keystoreProperties['debugStoreFile'])
|
||||||
storePassword keystoreProperties['debugStorePassword']
|
storePassword keystoreProperties['debugStorePassword']
|
||||||
}
|
}
|
||||||
|
}
|
||||||
release {
|
release {
|
||||||
keyAlias keystoreProperties['keyAlias']
|
keyAlias keystoreProperties['keyAlias']
|
||||||
keyPassword keystoreProperties['keyPassword']
|
keyPassword keystoreProperties['keyPassword']
|
||||||
|
Reference in New Issue
Block a user