Skip to content

Commit

Permalink
[spi] travis for building, signing, deploying on GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
afirez committed Sep 6, 2019
1 parent 48e51df commit c1343f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions spi-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@ android {
release {
keyAlias System.getenv("keyAlias")
keyPassword System.getenv("keyPwd")
storeFile rootProject.file('app-firez.jks')
storeFile rootProject.file('app-afirez.jks')
storePassword System.getenv("storePwd")
}
}
} else {
signingConfigs {
release {
keyAlias keystoreProperties.containsKey("keyAlias") ? keystoreProperties['keyAlias'] : System.getenv("keyAlias")
keyPassword keystoreProperties.containsKey("keyPwd") ? keystoreProperties['keyPassword'] : System.getenv("keyPassword")
storeFile rootProject.file('app-firez.jks')
storePassword keystoreProperties.containsKey("storePwd") ? keystoreProperties['storePassword'] : System.getenv("storePassword")
keyPassword keystoreProperties.containsKey("keyPwd") ? keystoreProperties['keyPwd'] : System.getenv("keyPwd")
storeFile rootProject.file('app-afirez.jks')
storePassword keystoreProperties.containsKey("storePwd") ? keystoreProperties['storePwd'] : System.getenv("storePwd")
}
}
}


buildTypes {
release {
signingConfigs.release
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
Expand Down
1 change: 0 additions & 1 deletion spi-app/release/output.json

This file was deleted.

Binary file removed spi-app/release/spi-app-release.apk
Binary file not shown.

0 comments on commit c1343f3

Please sign in to comment.