Use temporary keystore for travis builds

This commit is contained in:
Fredrik Fornwall
2015-10-25 17:08:07 +01:00
parent 80794485c0
commit 8d87c4ab28
2 changed files with 8 additions and 1 deletions

View File

@@ -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

Binary file not shown.