Skip to content

Commit 1a754f3

Browse files
committed
Added workaround for build break in Android test, introduced by Kotlin Coroutine 1.3.6
See Kotlin/kotlinx.coroutines#2023
1 parent 17009b3 commit 1a754f3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,13 @@ android {
9797

9898
packagingOptions {
9999
exclude("META-INF/atomicfu.kotlin_module")
100+
exclude("META-INF/AL2.0")
101+
exclude("META-INF/LGPL2.1")
102+
exclude("META-INF/licenses/*")
103+
104+
// workaround for https://github.com/Kotlin/kotlinx.coroutines/issues/2023
105+
exclude("win32-x86/attach_hotspot_windows.dll")
106+
exclude("win32-x86-64/attach_hotspot_windows.dll")
100107
}
101108
}
102109

0 commit comments

Comments
 (0)