Skip to content

Instantly share code, notes, and snippets.

@bartprokop
Created December 6, 2013 10:17
Show Gist options
  • Save bartprokop/7821524 to your computer and use it in GitHub Desktop.
Save bartprokop/7821524 to your computer and use it in GitHub Desktop.
android {
compileSdkVersion 18
buildToolsVersion "17.0.0"
defaultConfig {
minSdkVersion 7
targetSdkVersion 16
}
signingConfigs {
release {
storeFile file("../android.keystore")
storePassword System.console().readLine("\n\$ Enter keystore password: ")
keyAlias "edziecko"
keyPassword System.console().readLine("\n\$ Enter key password: ")
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment