Android studio 怎么打包成aar包和引用aar包
短信预约 -IT技能 免费直播动态提醒
目录
1.首先什么是aar格式
2. 怎么把一个模块编译成一个aar
首先把鼠标放到要编译的模块上
然后再点击:Build ->Build Module 'xxx' 刚刚鼠标选的模块
最后生成的aar包在这里
3. 怎么引用aar包
例如我把我刚刚编译的aar包放到 我要引用的app/build/libs/xx.aar
修改这个APP 的build.grade
1.首先什么是aar格式看看官网的说明:
http://tools.android.com/tech-docs/new-build-system/aar-format/
The 'aar' bundle is the binary distribution of an Android Library Project.
The file extension is .aar, and the maven artifact type should be aar as well, but the file itself a simple zip file with the following entries: /AndroidManifest.xml (mandatory) /classes.jar (mandatory) /res/ (mandatory) /R.txt (mandatory) /assets/ (optional) /libs/*.jar (optional) /jni//*.so (optional) /proguard.txt (optional) /lint.jar (optional) These entries are directly at the root of the zip file. 也就是说是相当于Android工程里的一个module 打包成一个aar的压缩包模式 2. 怎么把一个模块编译成一个aar 首先把鼠标放到要编译的模块上 然后再点击:Build ->Build Module 'xxx' 刚刚鼠标选的模块 最后生成的aar包在这里 3. 怎么引用aar包 例如我把我刚刚编译的aar包放到 我要引用的app/build/libs/xx.aar 修改这个APP 的build.grade新加如下:
然后再Mainactivity.java 里面引用aar中的class啦
import com.xx.TAInterface;
作者:月上柳青
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341