码迷,mamicode.com
首页 > 移动开发 > 详细

Android引用本地aar

时间:2015-07-29 18:46:27      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

先建立一个lib工程,然后build出aar。

接着把aar放入要引入它的工程module的libs中。

在project的build.gradle中:

repositories {
    flatDir {
        dirs ‘libs‘ //this way we can find the .aar file in libs folder
    }
}

在app中的build.gradle中:

dependencies {
    compile(name:‘你的aar的名字‘, ext:‘aar‘)
}

 

参考自:

http://stormzhang.com/android/2015/03/01/android-reference-local-aar/

Android引用本地aar

标签:

原文地址:http://www.cnblogs.com/tianzhijiexian/p/4686627.html

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