Asue
Asue

Reputation: 1531

Cannot set the value of read-only property 'classDirectories' for task '...' of type org.gradle.testing.jacoco.tasks.JacocoReport

I just updated my Android Studio to 4.0 with a new version of Gradle, and I now have an error on my build.

Cannot set the value of read-only property 'classDirectories' for task ':app:testNameOfMyFlavorDebugUnitTestCoverage' of type org.gradle.testing.jacoco.tasks.JacocoReport.

It's been working fine so far, I don't know what to change to make it work again.

Upvotes: 52

Views: 57148

Answers (2)

Jing Li
Jing Li

Reputation: 15116

You'll need to change from classDirectories = SOME_DIRS to getClassDirectories().setFrom(SOME_DIRS).

Works OK with Gradle 6.1.1

Upvotes: 31

Asue
Asue

Reputation: 1531

Found the response here : https://docs.gradle.org/current/userguide/upgrading_version_5.html#other_deprecated_behaviors_and_apis

And here : Filter JaCoCo coverage reports with Gradle

For example, classDirectories is replaced by classDirectories.from

Upvotes: 90

Related Questions