javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }

一:

在app的build中
android {
    ...
    defaultConfig {
        ...
        //添加如下配置就OK了
        javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }
    }
    ...
}

二:

在Project/gradle.properties中添加

android.enableAapt2=false

上一篇:ORA-01950: no privileges on tablespace xxx ORA-01950: 对表空间 'xxx'无权限


下一篇:UVA 1541 - To Bet or Not To Bet(概率递推)