Skip to content

Commit

Permalink
Update gradle configuration to work with Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
staceybellerose committed Oct 5, 2017
1 parent 61cbb10 commit 8406e85
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ android {
}
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
if (project.hasProperty('RELEASE_STORE_FILE')) {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
}
buildTypes {
Expand Down

0 comments on commit 8406e85

Please sign in to comment.