as自动更新下载了一些依赖项jar包,导致了Execution failed for task ':app:checkDebugDuplicateClasses'.错误的产生,以下是详细信息.
Duplicate class org.jetbrains.annotations.PropertyKey found in modules jetified-annotations-12.0 (com.intellij:annotations:12.0) and jetified-annotations-23.0 (org.jetbrains:annotations:23.0.0)
是org.intellij.lang.annotations包版本冲突,在app下的build.gradle下添加如下代码,排除annotation模块,问题解决.
android{
configurations {
implementation.exclude group: 'org.jetbrains' , module:'annotations'
}
}