码迷,mamicode.com
首页 > 其他好文 > 详细

本地aar文件引用

时间:2017-07-22 10:59:42      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:模块化   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
    }
}

然后将aar文件增加到libs文件夹。再在build.gradle增加:

dependencies {
    compile(name:‘mylib-debug‘, ext:‘aar‘)
}

它表示引用了mylib-debug.aar, 有意思的是假设在測试projectimport或使用mylib-debug.aar中的类。编译不会报错,非常棒!


本地aar文件引用

标签:模块化   module   mave   源码   snippet   pen   osi   com   UI   

原文地址:http://www.cnblogs.com/lytwajue/p/7220414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!