Skip to content

Commit

Permalink
Dont fail if properties arent set
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Dec 16, 2015
1 parent 41bcef4 commit 16fcf5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AIMSICD/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ if(isTravis) {
android {
signingConfigs {
releaseSigningConfig {
keyAlias aimsicd_key_alias
keyPassword aimsicd_key_password
keyAlias project.hasProperty("aimsicd_key_alias") ? aimsicd_key_alias : "dummy"
keyPassword project.hasProperty("aimsicd_key_password") ? aimsicd_key_password : "dummy"
storeFile file('../keystore.jks')
storePassword aimsicd_keystore_password
storePassword project.hasProperty("aimsicd_keystore_password") ? aimsicd_keystore_password : "dummy"
}
}
compileSdkVersion 22
Expand Down

0 comments on commit 16fcf5e

Please sign in to comment.