Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10938 from Pokechu22/android-signing-config
Android: Don't set the signingConfig if keystore property isn't set
  • Loading branch information
JosJuice committed Aug 10, 2022
2 parents 3f6795f + 1004e34 commit 6fbc1cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/Android/app/build.gradle
Expand Up @@ -48,7 +48,9 @@ android {
buildTypes {
// Signed by release key, allowing for upload to Play Store.
release {
signingConfig signingConfigs.release
if (project.hasProperty('keystore')) {
signingConfig signingConfigs.release
}

minifyEnabled true
shrinkResources true
Expand Down

0 comments on commit 6fbc1cb

Please sign in to comment.