sign release

This commit is contained in:
2024-04-03 12:06:45 +02:00
parent 0e77bee285
commit 7b3cd190c8

View File

@@ -29,6 +29,14 @@ android {
} }
} }
} }
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
buildTypes { buildTypes {
debug { debug {
debuggable true debuggable true
@@ -43,6 +51,7 @@ android {
release { release {
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
} }
} }
applicationVariants.all { variant -> applicationVariants.all { variant ->