mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-04 09:45:45 +08:00
Use temporary keystore for travis builds
This commit is contained in:
@@ -19,12 +19,19 @@ android {
|
||||
}
|
||||
|
||||
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)
|
||||
storePassword TERMUX_KEYSTORE_PASSWORD
|
||||
keyAlias TERMUX_KEYSTORE_ALIAS
|
||||
keyPassword TERMUX_KEYSTORE_PASSWORD
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
BIN
travis.keystore
Normal file
BIN
travis.keystore
Normal file
Binary file not shown.
Reference in New Issue
Block a user