我构建了一个Android库模块,它在.aar
目录中有一些依赖项(libs
文件)。如果我将构建的.aar
文件导入另一个项目,则其依赖关系不会被解析。
apply plugin: 'com.android.library'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
//compile project(':ExoPlayer')
compile(name: 'ExoPlayer', ext: 'aar')
compile(name: 'Volley', ext: 'aar')
compile 'com.danikula:videocache:2.3.4'
}
答案 0 :(得分:1)
aar 文件不包含嵌套(或transitive)依赖项,并且没有描述所使用的依赖项的pom文件库。
这意味着,如果您使用flatDir
repo 导入aar文件,则还必须在项目中指定依赖项。