AndroidStudio从普通Java代码转kotlin后,运行可能出现的错误:Error: Program type already present: org.intellij.lang.annotations.JdkConstants$PatternFlags
当出现该错误时,尝试在app层的 build.gradle 中添加
configurations { cleanedAnnotations compile.exclude group: 'org.jetbrains' , module:'annotations' }
再重新编译运行试试看。