Created
December 26, 2017 11:25
-
-
Save crazyhitty/567649cc7e4df418721d4c082f832863 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("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