Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jhoanborges/f7798ce58b1112ccf9240d41af1f97e3 to your computer and use it in GitHub Desktop.
Save jhoanborges/f7798ce58b1112ccf9240d41af1f97e3 to your computer and use it in GitHub Desktop.
build Gradle Key Store Secure
signingConfigs {
release {
storeFile file('your_key_name.keystore')
storePassword System.console().readLine("\nKeystore password:")
keyAlias System.console().readLine("\nAlias: ")
keyPassword System.console().readLine("\Alias password: ")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment