Skip to content

Instantly share code, notes, and snippets.

@horie1024
Created January 12, 2016 11:37
Show Gist options
  • Save horie1024/b9072349bc3adabc21c5 to your computer and use it in GitHub Desktop.
Save horie1024/b9072349bc3adabc21c5 to your computer and use it in GitHub Desktop.
android {
signingConfigs {
release {
storeFile file(YOUR_KEYSTORE_PATH)
storePassword "STORE_PASS"
keyAlias "ALIAS"
keyPassword "KEY_PASS"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
signingConfig signingConfigs.release
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment