Skip to content

Commit

Permalink
fix: actually allow building debug without signing
Browse files Browse the repository at this point in the history
  • Loading branch information
feildmaster committed Aug 15, 2017
1 parent d80d00d commit 2a6f4ed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ android {
}
debug {
applicationIdSuffix ".debug"
signingConfig signingConfigs.debugApp
if(project.hasProperty('ANDROID_SIGNING_KEY')) {
signingConfig signingConfigs.debugApp
}
}
}
productFlavors {
Expand Down

0 comments on commit 2a6f4ed

Please sign in to comment.