Skip to content

Instantly share code, notes, and snippets.

@LuffyAnshul
Created April 2, 2021 10:22
Show Gist options
  • Save LuffyAnshul/bbcc1d89c63ccfc843312653b74bfa9b to your computer and use it in GitHub Desktop.
Save LuffyAnshul/bbcc1d89c63ccfc843312653b74bfa9b to your computer and use it in GitHub Desktop.
build Gradle Key Store
android {
....
signingConfigs {
release {
storeFile file('your_key_name.keystore')
storePassword 'your_key_store_password'
keyAlias 'your_key_alias'
keyPassword 'your_key_file_alias_password'
}
}
buildTypes {
release {
....
signingConfig signingConfigs.release
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment