欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Execution failed for task ‘:app:checkDebugDuplicateClasses‘解决方案

程序员文章站 2022-09-02 21:05:35
问题Android Studio 编译报错:Execution failed for task ':app:checkDebugDuplicateClasses'.FAILURE: Build failed with an exception.* What went wrong:Execution failed for task ':app:checkDebugDuplicateClasses'.> 1 exception was raised by workers: java.l...

问题

Android Studio 编译报错:
Execution failed for task ':app:checkDebugDuplicateClasses'.

 FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:checkDebugDuplicateClasses'.
> 1 exception was raised by workers:
  java.lang.RuntimeException: Duplicate class com.tencent.ijk.media.exo.BuildConfig found in modules jetified-LiteAVSDK_Player-7.5.9307-runtime.jar (com.tencent.liteav:LiteAVSDK_Player:7.5.9307) and jetified-LiteAVSDK_Player_7.5.9307-runtime.jar (:LiteAVSDK_Player_7.5.9307:)
  Go to the documentation to learn how to <a href="d.android.com/r/tools/classpath-sync-errors">Fix dependency resolution errors</a>.


* 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.

* Get more help at https://help.gradle.org

BUILD FAILED in 1m 34s
155 actionable tasks: 155 executed 

原因

依赖了重复的资源文件,例如:

  • lib中导入了A.aar文件,然后又在build.gradle中依赖了相同的A文件。
  • 依赖两个不同的资源文件,但是,这两个资源文件里面包含了相同的内容。

解决方案

去除重复的资源文件即可。

本文地址:https://blog.csdn.net/m0_46278918/article/details/107770473