生成aar文件及引用aar文件
【摘要】 aar不是jar,更不是library。因为jar不能带资源只能带java代码。
1.导出 aar
Android Library项目的build.gradle脚本在开头声明
apply plugin: 'com.android.library'
1
执行./gradlew assembleRelease
~/Desktop/MyApplication$ ./...
aar不是jar,更不是library。因为jar不能带资源只能带java代码。
1.导出 aar
Android Library项目的build.gradle脚本在开头声明
apply plugin: 'com.android.library'
- 1
执行./gradlew assembleRelease
~/Desktop/MyApplication$ ./gradlew assembleRelease
- 1
然后在build/outputs/aar文件夹里生成aar文件,如:
2.引用本地的aar
下面以modulea-release.aar文件为例。
1.把aar文件放在一个文件目录内,比如libs目录内。
2.在app模块的build.gradle文件添加如下内容
repositories { flatDir { dirs 'libs' //this way we can find the .aar file in libs folder }
}
- 1
- 2
- 3
- 4
- 5
并在build.gradle文件中添加依赖,如:
dependencies { ... implementation(name:'modulea-release', ext:'aar')
}
- 1
- 2
- 3
- 4
接着就可以正常使用aar模块里的东西了。
谢谢阅读。
文章来源: blog.csdn.net,作者:WongKyunban,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/weixin_40763897/article/details/103820652
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)