Skip to content

Commit

Permalink
fix builtype properties
Browse files Browse the repository at this point in the history
  • Loading branch information
PiTrem committed Dec 7, 2023
1 parent 4ff5947 commit 6c316bd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ android {
}
}
buildTypes {
if (!keystorePropertiesFile.exists()) {
println "Signing with key.properties"
signingConfig signingConfigs.release

} else {
println "Signing with debug keys"
signingConfig signingConfigs.debug

release {
if (keystorePropertiesFile.exists()) {
println "Signing with key.properties"
signingConfig signingConfigs.release
} else {
println "Signing with debug keys"
signingConfig signingConfigs.debug
}
}
}
}
Expand Down

0 comments on commit 6c316bd

Please sign in to comment.