tseisel
04/25/2019, 8:04 PMExecution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
> More than one file was found with OS independent path 'META-INF/atomicfu.kotlin_module'
it seems related to having org.jetbrains.kotlinx:kotlinx-coroutines-android:1.2.0
as a dependency.
I solved it with the following workaround :
android {
packagingOptions {
exclude 'META-INF/*.kotlin_module'
}
}
But that wasn't necessary in 1.1.1
.louiscad
04/25/2019, 10:57 PMsunbreak
04/25/2019, 10:59 PMribesg
04/26/2019, 8:06 AMtseisel
04/26/2019, 8:20 AMribesg
04/26/2019, 8:26 AMtseisel
04/26/2019, 9:03 AMkotlinx.coroutines
1.2.1 is now released and it should solve the atomicfu problem. I'll test it on my build later