Created
December 14, 2018 10:12
-
-
Save rutvikbhatt9/aa105b53dcce7558c4e93bbf057999d5 to your computer and use it in GitHub Desktop.
Set the Signin Configuration for your release build
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 { | |
... | |
defaultConfig { ... } | |
signingConfigs { | |
release { | |
// You need to specify either an absolute path or include the | |
// keystore file in the same directory as the build.gradle file. | |
storeFile file("my-release-key.jks") | |
storePassword "password" | |
keyAlias "my-alias" | |
keyPassword "password" | |
} | |
} | |
buildTypes { | |
release { | |
signingConfig signingConfigs.release | |
... | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment