项目使用了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")
}
}
在构建Android项目时遇到一个常见的错误:Execution failed for task ':app:transformDexArchiveWithDexMergerForRelease',原因是依赖库存在重复的类。为了解决这个问题,可以在app目录下的build.gradle文件中添加配置,强制指定kotlin及相关coroutines库的特定版本,例如1.3.41和1.3.0,以避免版本冲突导致的 DexArchiveMergerException。

被折叠的 条评论
为什么被折叠?



