Jacoco breaks on react native 0.72
Tobbb opened this issue · 2 comments
Tobbb commented
Steps to Reproduce the Problem
on react native 0.72
run ./gradlew clean in android folder
Expected Behavior
successful build
Actual Behavior
FAILURE: Build completed with 2 failures.
1: Task failed with an exception.
- Where:
Script '/xxxxx/node_modules/instabug-reactnative/android/jacoco.gradle' line: 14
Could not set unknown property 'enabled' for Report html of type org.gradle.api.reporting.internal.TaskGeneratedSingleDirectoryReport.
Instabug integration code
SDK Version
"instabug-reactnative": "^11.12.0",
React Native, iOS and Android Versions
Device Model
[Optional] Project That Reproduces the Issue
removing
reports {
html.enabled true
xml.enabled true
}
in Jacoco.gradle solves it
or
reports { html.required=true xml.required=true }