当前位置:网站首页>AndroidStudio导入定制化的framework classess.jar AS 4.0.1版本亲测有效
AndroidStudio导入定制化的framework classess.jar AS 4.0.1版本亲测有效
2020-11-09 12:12:00 【osc_ydeb2o99】
有时候,我们需要调用系统framework层隐藏的接口,或者定制化的一些接口,那么在androidstudio不做特殊的配置和处理的话,默认优先引用android sdk api。那么就需要作如下配置:
步骤1: 在Moudle下的app下面增加libs文件夹,并将自己的jar包放在里面。
--app
--libs
---framework.jar
步骤2:在Moudle下的app目录下的build.gradle文件增加如下红色代码。
dependencies {
compileOnly files('libs/framework.jar')
implementation 'androidx.appcompat:appcompat:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
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"
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
}
}
}
其实上面这个preBuild{...} 主要就是将默认的android sdk 放到最后面,这样就自己的framework.jar就能优先引用了。
步骤3: 在project根目录下的build.gradle文件下增加如下代码:
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs.add('-Xbootclasspath/p:app\\libs\\framework.jar')
}
}
repositories {
google()
jcenter()
}
}
上面步骤设置好之后,刷新工程,重新编译,可能会出现运行时报错,提示odex超出65536,一般需要加上如下设置。
在Module的app下面的build.gradle里找到defaultConfi加入multiDexEnabled = true
并在dependencies里添加
implementation 'com.android.support:multidex:1.0.0'
版权声明
本文为[osc_ydeb2o99]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4387121/blog/4709325
边栏推荐
猜你喜欢
Mac terminal oh my Zsh + solarized configuration
Mac 必备优质工具推荐
【golang】GC详解
Understanding data structures starts with this article~
Shoes? Forecasting stock market trends? Taobao second kill? Python means what you want
Using rem, the font size changes when the screen zooms
开源ERP招聘了
嘉宾专访|2020 PostgreSQL亚洲大会阿里云数据库专场:樊文凯
使用rem,做到屏幕缩放时,字体大小随之改变
医疗项目管理的三种实用技巧
随机推荐
Chrome浏览器引擎 Blink & V8
Glsb involves load balancing algorithm
After SQL group query, get the first n records of each group
天啦撸!打印日志竟然只晓得 Log4j?
As a user, you can't get rid of the portrait!
git 删除iml文件
SQL Chapter 2 Chapter 3
A simple way to realize terminal text paste board
百亿级数据分表后怎么分页查询?
Front end code style practice prettier + eslint + git hook + lint staged
Reading design patterns adapter patterns
On the calculation of non interaction polarizability
【golang】GC详解
FGC online service troubleshooting, this is enough!
解决IDEA快捷键 Alt+Insert 失效的问题
The choice of domain name of foreign trade self built website
Using rem, the font size changes when the screen zooms
iPhone“连到系统上的设备没有发挥作用”原因分析及解决方法 20200105
Mac 必备优质工具推荐
Adobe experience design / XD 2020 software installation package (with installation tutorial)