Skip to content

Instantly share code, notes, and snippets.

@crazyhitty
Created December 26, 2017 11:25
Show Gist options
  • Save crazyhitty/567649cc7e4df418721d4c082f832863 to your computer and use it in GitHub Desktop.
Save crazyhitty/567649cc7e4df418721d4c082f832863 to your computer and use it in GitHub Desktop.
android {
...
signingConfigs {
release {
storeFile file("someDirectory/my_keystore.jks")
storePassword "my_store_pass_here"
keyAlias "my_key_alias_here"
keyPassword "my_key_pass_here"
}
}
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment