Duplicate class org.intellij.lang.annotations.Flow found in modules annotations-13.0.jar (org.jetbra

Duplicate class org.intellij.lang.annotations.Flow found in modules annotations-13.0.jar (org.jetbrains:annotations:13.0) and intellij_annotations.jar (intellij_annotations.jar)

解决方案 在 应用 build.gradle 里添加 如下代码

configurations {
    cleanedAnnotations
    compile.exclude group: 'org.jetbrains' , module:'annotations'
}

你可能感兴趣的:(Android)