Skip to content

Commit

Permalink
Sign debug build with release config if key.properties exists
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonp2412 committed Mar 11, 2024
1 parent bcfce20 commit 1121f3d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ android {
}
}
buildTypes {
debug {
if (keystorePropertiesFile.exists()) {
signingConfig signingConfigs.release
}
}
release {
signingConfig signingConfigs.release
}
Expand Down

0 comments on commit 1121f3d

Please sign in to comment.