Skip to content

Commit 5c38167

Browse files
elyalvaradoalyezz
authored andcommitted
Fix android build ignoring instabugUploadEnable property
1 parent 04ec884 commit 5c38167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ task upload_sourcemap(type: Exec) {
5151

5252
tasks.whenTaskAdded { task ->
5353
if (task.name == 'preReleaseBuild' &&
54-
rootProject.hasProperty("instabugUploadEnable") ? rootProject.instabugUploadEnable : true) {
54+
(rootProject.hasProperty("instabugUploadEnable") ? rootProject.instabugUploadEnable : true)) {
5555
task.dependsOn upload_sourcemap
5656
}
5757
}

0 commit comments

Comments
 (0)