Skip to content

Commit

Permalink
Always signing
Browse files Browse the repository at this point in the history
  • Loading branch information
s1204IT committed Jan 16, 2025
1 parent 84b67ea commit 8387612
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ android {

buildTypes {
configureEach {
if (File("release.jks").exists()) {
signingConfig = signingConfigs["release"]
}
}
val variant = if (File("release.jks").exists()) "release" else "debug"
signingConfig = signingConfigs[variant]
}
release {
resValue("string", "app_name", app_name)
isMinifyEnabled = false
Expand Down

0 comments on commit 8387612

Please sign in to comment.