Skip to content

Instantly share code, notes, and snippets.

@jhoanborges
Forked from LuffyAnshul/buildGradleKeyStore
Created June 14, 2022 17:24
Show Gist options
  • Save jhoanborges/3c3f026645c12a7d35663baa42df308d to your computer and use it in GitHub Desktop.
Save jhoanborges/3c3f026645c12a7d35663baa42df308d 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