Gradle Plugin: 1.0.30
mannodermaus
released this
22 Jan 13:58
·
440 commits
to main
since this release
This release brings compatibility with JUnit 5.0.3.
Migration
The jacoco
DSL container was renamed to jacocoOptions
, to avoid a false-positive deprecation notice in the IDE related to the original Jacoco integration of the Android Gradle Plugin. Ironically enough, the jacoco
container is actually deprecated now!
To migrate, simply replace with jacocoOptions
:
android.testOptions {
junitPlatform {
jacoco {
excludedClasses += "Unrelated.class"
// ...
}
}
}
->
android.testOptions {
junitPlatform {
jacocoOptions {
excludedClasses += "Unrelated.class"
// ...
}
}
}