clean、rebuild无效
导入前后依赖库同名不同版,restart无效
彻底清除缓存后重启
build查找为en/string.xml无相应链接string
3、JVM1.6需要指向1.8,模块下添加后还报错,修改后restarttask clean(type: Delete) {
delete rootProject.buildDir
}
项目build.gradle下添加
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = ‘1.8’
}
}



