标签:模块化 module mave 源码 snippet pen osi com UI
有时须要使用第三方的aar库。或是project源码越来越大。项目内分工须要或出于模块化考虑。须要引用aar文件。
arr就像C/C++中的静态库。
怎样建一个aar。网上的文章非常多,这里不再重述。
通过gradle最普遍的方法是把aar上传到mavenCentral或者jcenter。怎样引用一个本地aar。要在project的module配置文件build.gradle中增加:
repositories { flatDir { dirs ‘libs‘ //this way we can find the .aar file in libs folder } }
dependencies { compile(name:‘mylib-debug‘, ext:‘aar‘) }
标签:模块化 module mave 源码 snippet pen osi com UI
原文地址:http://www.cnblogs.com/lytwajue/p/7220414.html