android项目中如何在library module下添加aar

每个项目都会创建多个model模块,其中有的moudle模块需要使用aar。如何依赖呢?

首先在module的gradle中添加依赖

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:26.1.0'
    testCompile 'junit:junit:4.12'
    compile(name: 'xx', ext: 'aar')
}

然后在android{}中添加:

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

这样完成后,编译的时候依然会报错误,最后我们需要在app的gradle中添加些东西。

在app gradle中添加

repositories {
        flatDir {
            dirs 'libs', '../moudle名称/libs'
        }
    }

这样moudle中就可以使用aar了

你可能感兴趣的:(android)