More than one file was found with OS independent path 'META-INF/io.netty.versions.properties'. code example
Example: More than one file was found with OS independent path 'META-INF/AL2.0'. when running android test
For android tests:
Downgrade coroutine version to 1.3.5 or use this code in app level gradle file
android {
packagingOptions {
exclude "**/attach_hotspot_windows.dll"
exclude "META-INF/licenses/**"
exclude "META-INF/AL2.0"
exclude "META-INF/LGPL2.1"
}
}