Created
December 6, 2013 10:17
-
-
Save bartprokop/7821524 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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