博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How to build intermediate classes.jar
阅读量:4285 次
发布时间:2019-05-27

本文共 790 字,大约阅读时间需要 2 分钟。

轉載自 

 

in Android M, you can achieve that by using LOCAL_JACK_ENABLED = disabled variable in your makefile.

 
In Android N it is more tricky...it is broken and the solution to this is yet to come in AOSP mainline of Android N.
Solution is available in master.
 
Checked in 7.1.1 Android N.
 
You need to make use of javac-check target. This has been implemented for this purpose.
 
make javac-check-$(LOCAL_MODULE)
 
So, if your module name is "ABCD"
 
make javac-check-ABCD
 
This generates a classes-full-debug.jar, in the common\obj\JAVA_LIBRARIES\ABCD_intermediates.
 
This is the jar which you can use in your Studio environment.
 
Most important, this solution is not yet visible in any of the tags on Android N branch. It is part of the master hence you need to add this solution to your branch manually.
 

转载地址:http://ggsgi.baihongyu.com/

你可能感兴趣的文章
使用Git获取最新版本到本地
查看>>
Visual Studio 调试器“启用编辑并继续”
查看>>
Cordova页面解析页面中script标签内容失败,Refused to execute inline script because it violates the following
查看>>
Ionic 中使用iframe嵌入外网页面整理
查看>>
Cordova config.xml配置WebView全屏浏览
查看>>
VS Code插件安装位置
查看>>
Cordova Ajax请求跨域问题整理
查看>>
Ionic ion-nav-view使用整理
查看>>
angularjs unsafe ng-href using javascript: void(0);
查看>>
AngularJs ng-bind-html指令整理
查看>>
cordova-plugin-whitelist 协议白名单配置整理
查看>>
cordova-plugin-network-information 网络状态获取整理
查看>>
cordova-plugin-device 获取设备信息整理
查看>>
cordova-plugin-vibration 设备震动整理
查看>>
Cordova事件整理
查看>>
Apache Cordova开发环境搭建(二)VS Code
查看>>
NodeJs的安装和环境变量配置
查看>>
NodeJS命令找不到:'express' 不是内部或外部命令,也不是可运行的程序或批处理文件。
查看>>
Visual Studio Code v1.16发布
查看>>
Node.js自定义实现文件路由功能
查看>>