Error:Duplicate class org.intellij.lang.annotations.Flow found in modules annotations-13.0.jar
程序员文章站
2022-03-27 11:34:15
问题1意思是重复导入了jar包,解决办法:在build.gradle(module app) 里面加入几行代码即可: configurations { cleanedAnnotations compile.exclude group: 'org.jetbrains' , module:'annotations' }问题2Unable to start activity ComponentInfo{com.example.zsbf/com.example.z...
问题1
意思是重复导入了jar包,解决办法:
在build.gradle(module app) 里面加入几行代码即可:
configurations {
cleanedAnnotations
compile.exclude group: 'org.jetbrains' , module:'annotations'
}
问题2
Unable to start activity ComponentInfo{com.example.zsbf/com.example.zsbf.activity – 有可能未在内部注册,或者是没有设置一个theme
本文地址:https://blog.csdn.net/qq_42811161/article/details/108126168