Hello,
We found after integrated facebook mediation (com.google.ads.mediation:facebook), the Jacoco (org.jacoco.core) was added into our App. (Together with asm).
You can find the dependency by checking the
pom file. Or run
./gradlew :app:dependencies
+--- com.google.ads.mediation:facebook:6.16.0.0
| +--- com.facebook.android:audience-network-sdk:6.16.0 (*)
| +--- androidx.annotation:annotation:1.5.0 -> 1.8.2 (*)
| +--- com.google.android.gms:play-services-ads:22.2.0 -> 22.5.0 (*)
| +--- org.jacoco:org.jacoco.core:0.8.8
| | +--- org.ow2.asm:asm:9.2
| | +--- org.ow2.asm:asm-commons:9.2
| | | +--- org.ow2.asm:asm:9.2
| | | +--- org.ow2.asm:asm-tree:9.2
| | | | \--- org.ow2.asm:asm:9.2
| | | \--- org.ow2.asm:asm-analysis:9.2
| | | \--- org.ow2.asm:asm-tree:9.2 (*)
| | \--- org.ow2.asm:asm-tree:9.2 (*)
| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.21 -> 2.0.20 (*)
It seems that the Jacoco should only be used for code coverage. Could you help remove it or explain why it is needed.
Bruce