在Android Studio 引入 framework.jar
build framework.jar
源码下Android N 及以上 make javac-check-framework 生成到./out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/classes-full-debug.jar Android M, LOCAL_JACK_ENABLED = disabled variable in your makefile. art 以前 make framework
module 的 build.gradle 修改
dependencies {
........
compileOnly files('../sharelibs/framework-27.jar')
}
添加下下面的脚本,把module.iml里的放到最后
preBuild {
doLast {
def imlFile = file( project.name + ".iml")
println 'Change ' + project.name + '.iml order'
try {
def parsedXml = (new XmlParser()).parse(imlFile)
def jdkNode = parsedXml.component[1].orderEntry.find { it.'@type' == 'jdk' }
parsedXml.component[1].remove(jdkNode)
def sdkString = "Android API " + android.compileSdkVersion.substring("android-".length()) + " Platform"
println 'what' + sdkString
new Node(parsedXml.component[1], 'orderEntry', ['type': 'jdk', 'jdkName': sdkString, 'jdkType': 'Android SDK'])
groovy.xml.XmlUtil.serialize(parsedXml, new FileOutputStream(imlFile))
} catch (FileNotFoundException e) {
// nop, iml not found
println "no iml found"
}
}
}
project 的build.gradle 添加
allprojects {
..............
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs.add('-Xbootclasspath/p:sharelibs/framework-27.jar')
}
}
}
转载自:https://juejin.cn/post/6944346467553247240