本地aar文件引用
Posted xgbing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本地aar文件引用相关的知识,希望对你有一定的参考价值。
有时需要使用第三方的aar库,或是工程源代码越来越大,项目内分工需要或出于模块化考虑,需要引用aar文件。
arr就像C/C++中的静态库。
如何建一个aar,网上的文章很多,这里不再重述。
通过gradle最普遍的方法是把aar上传到mavenCentral或者jcenter。如何引用一个本地aar,要在工程的module配置文件build.gradle中加入:
repositories { flatDir { dirs ‘libs‘ //this way we can find the .aar file in libs folder } }
然后将aar文件加入到libs目录,再在build.gradle加入:
dependencies { compile(name:‘mylib-debug‘, ext:‘aar‘) }
它表示引用了mylib-debug.aar, 有意思的是如果在测试工程import或使用mylib-debug.aar中的类,编译不会报错,非常棒!
以上是关于本地aar文件引用的主要内容,如果未能解决你的问题,请参考以下文章