Skip to content

Commit 2a6f4ed

Browse files
committed
fix: actually allow building debug without signing
1 parent d80d00d commit 2a6f4ed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ android {
4848
}
4949
debug {
5050
applicationIdSuffix ".debug"
51-
signingConfig signingConfigs.debugApp
51+
if(project.hasProperty('ANDROID_SIGNING_KEY')) {
52+
signingConfig signingConfigs.debugApp
53+
}
5254
}
5355
}
5456
productFlavors {

0 commit comments

Comments
 (0)