本文参考了网上搜索到的内容总结了一下,感谢大神们的无私奉献。
在App中的build.gradle中的android{}下添加:
android{
...
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
Set<File> fileSet = options.bootstrapClasspath.getFiles()
List<File> newFileList = new ArrayList<>();
//JAVA语法,可连续调用,输入参数建议为相对路径
newFileList.add(new File("libs/framework.jar"))
//最后将原始参数添加
newFileList.addAll(fileSet)
options.bootstrapClasspath = files(
newFileList.toArray()
)
}
}
}
此时可以编译出apk,但是android studio的代码检查还是标红的。
需要在setting -> build -> build tools --> gradle 选中iml
此时,在工程.idea目录下会生成..