aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Duarte <licorne@google.com>2023-09-15 03:06:03 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-09-15 03:06:03 +0000
commit0fd7ab7687fbb9159759303a292236828d5238c8 (patch)
tree8ecbb4ffc2d857caa04fca0462bcaa5154ddb4b9
parent03feff26e72789531915fa80d16f98cff9c7a78d (diff)
parentfb979a25f27c2f7e23d719d4832744257c168aca (diff)
downloadkotlinx.coroutines-0fd7ab7687fbb9159759303a292236828d5238c8.tar.gz
Exclude DebugProbesKt.bin from kotlinx_coroutines ressources am: 74c9e56a50 am: d189d98501 am: fb979a25f2
Original change: https://android-review.googlesource.com/c/platform/external/kotlinx.coroutines/+/2751992 Change-Id: I157e1022585b9a3dc30c6c871105b3b7082e7b69 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--Android.bp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index ee7cb03e..ef396c7a 100644
--- a/Android.bp
+++ b/Android.bp
@@ -50,6 +50,13 @@ java_library_host {
"kotlinx-coroutines-core/jvm/src/test_/TestCoroutineContext.kt",
],
java_resource_dirs: ["kotlinx-coroutines-core/jvm/resources"],
+ // See https://github.com/Kotlin/kotlinx.coroutines#avoiding-including-the-debug-infrastructure-in-the-resulting-apk
+ // This file contains `kotlin.coroutines.jvm.internal.DebugProbesKt` class and is only used
+ // by the debugger.
+ // This cause issues when generating coverage as Jacoco will fail with
+ // `Caused by: java.lang.IllegalStateException: Can't add different class with same name: kotlin/coroutines/jvm/internal/DebugProbesKt`
+ // See b/291743544 for more details
+ exclude_java_resources: ["kotlinx-coroutines-core/jvm/resources/DebugProbesKt.bin"],
static_libs: [
"kotlinx_atomicfu",
],