mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-06 18:55:31 +08:00
Use temporary keystore for travis builds
This commit is contained in:
@@ -19,12 +19,19 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
|
if (System.getenv("TRAVIS")) {
|
||||||
|
storeFile rootProject.file('travis.keystore')
|
||||||
|
storePassword 'abcdef'
|
||||||
|
keyAlias 'travis'
|
||||||
|
keyPassword 'abcdef'
|
||||||
|
} else {
|
||||||
storeFile new File(TERMUX_KEYSTORE_FILE)
|
storeFile new File(TERMUX_KEYSTORE_FILE)
|
||||||
storePassword TERMUX_KEYSTORE_PASSWORD
|
storePassword TERMUX_KEYSTORE_PASSWORD
|
||||||
keyAlias TERMUX_KEYSTORE_ALIAS
|
keyAlias TERMUX_KEYSTORE_ALIAS
|
||||||
keyPassword TERMUX_KEYSTORE_PASSWORD
|
keyPassword TERMUX_KEYSTORE_PASSWORD
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
BIN
travis.keystore
Normal file
BIN
travis.keystore
Normal file
Binary file not shown.
Reference in New Issue
Block a user