Skip to content

Commit

Permalink
Use param instead of prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
slapperwan committed Oct 9, 2014
1 parent 2e90b8b commit abfba70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ apply plugin: 'com.android.application'
android {
signingConfigs {
playStore {
keyAlias System.console().readLine("Key alias: ")
keyPassword System.console().readLine("Key password: ")
storeFile file(System.console().readLine("Store file: "))
storePassword System.console().readLine("Store password: ")
keyAlias KEY_ALIAS
keyPassword KEY_PASSWORD
storeFile file(STORE_FILE)
storePassword STORE_PASSWORD
}
}
compileSdkVersion 19
Expand Down

0 comments on commit abfba70

Please sign in to comment.