Skip to content

Commit 7e62a35

Browse files
committed
Exclude coroutine debug probes from Jacoco runtime jars
1 parent 9cd663e commit 7e62a35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/android/lib/PatchGradleFiles.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ private static Result ensureJacocoConfiguration(String content) {
318318
classDirectories.from({
319319
configurations.debugRuntimeClasspath
320320
.filter { it.name.endsWith('.jar') }
321-
.collect { zipTree(it) }
321+
.collect { zipTree(it).matching { exclude '**/kotlin/coroutines/jvm/internal/**' } }
322322
})
323323
324324
sourceDirectories.setFrom(files("src/main/java"))

0 commit comments

Comments
 (0)