Skip to content

Commit

Permalink
comment out config
Browse files Browse the repository at this point in the history
  • Loading branch information
tttakaoka committed Apr 22, 2016
1 parent bf599a2 commit 03f836e
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,24 @@ android {
minSdkVersion Integer.parseInt(MIN_SDK_SAMPLE)
}

signingConfigs {
release {
storeFile file(project.hasProperty("SHOWCASEVIEW_KEYSTORE_LOCATION") ? SHOWCASEVIEW_KEYSTORE_LOCATION : "/Users/amlcurran/.android/debug.keystore")
storePassword returnDefault("SHOWCASEVIEW_KEYSTORE_PW")
keyAlias returnDefault("SHOWCASEVIEW_KEY_ALIAS")
keyPassword returnDefault("SHOWCASEVIEW_KEY_PW")
}
}

lintOptions {
abortOnError false
}

buildTypes {
release {
signingConfig signingConfigs.release
}
}
// signingConfigs {
// release {
// storeFile file(project.hasProperty("SHOWCASEVIEW_KEYSTORE_LOCATION") ? SHOWCASEVIEW_KEYSTORE_LOCATION : "/Users/amlcurran/.android/debug.keystore")
// storePassword returnDefault("SHOWCASEVIEW_KEYSTORE_PW")
// keyAlias returnDefault("SHOWCASEVIEW_KEY_ALIAS")
// keyPassword returnDefault("SHOWCASEVIEW_KEY_PW")
// }
// }
//
// lintOptions {
// abortOnError false
// }
//
// buildTypes {
// release {
// signingConfig signingConfigs.release
// }
// }
}

def returnDefault(String propertyName) {
Expand Down

0 comments on commit 03f836e

Please sign in to comment.