Skip to content

Instantly share code, notes, and snippets.

View vikulin's full-sized avatar

Vadym Vikulin vikulin

View GitHub Profile
@gabrielemariotti
gabrielemariotti / build.gradle
Last active October 30, 2025 03:09
Use signing.properties file which controls which keystore to use to sign the APK with gradle.
android {
signingConfigs {
release
}
buildTypes {
release {
signingConfig signingConfigs.release
}