Created
January 12, 2016 11:37
-
-
Save horie1024/b9072349bc3adabc21c5 to your computer and use it in GitHub Desktop.
This file contains 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 { | |
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