项目使用了360插件,打包时报异常:
Execution failed for task ':app:transformDexArchiveWithDexMergerForRelease'.
> com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives:
Learn how to resolve the issue at https://developer.android.com/studio/build/dependencies#duplicate_classes.
Program type already present: kotlin.coroutines.jvm.internal.DebugProbesKt
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
解决办法:
在app目录下的build.gradle文件中添加:
configurations.all {
resolutionStrategy {
force("org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.41")
force("org.jetbrains.kotlin:kotlin-stdlib:1.3.41")
force("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.41")
force("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.41")
force("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0")
force("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0")
}
}