We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c9418 commit 5aad959Copy full SHA for 5aad959
app/build.gradle.kts
@@ -89,7 +89,12 @@ android {
89
90
buildTypes {
91
release {
92
- signingConfig = signingConfigs.getByName("release")
+ val releaseSigningConfig = signingConfigs.getByName("release")
93
+
94
+ if (releaseSigningConfig.storeFile?.exists() == true) {
95
+ signingConfig = releaseSigningConfig
96
+ }
97
98
isMinifyEnabled = true
99
isShrinkResources = false
100
proguardFiles(
0 commit comments