无法在库模块中使用本地.aar文件

时间:2014-11-27 13:59:20

标签: android gradle android-studio android-gradle

我的项目中添加了aar socialauth-android个库。我已按照here所述将其放在flatDir目录中,并且工作正常。
现在,我将一些代码移动到名为commons的库模块中,以便在另一个项目中重用它。 socialauth-android将完全由库模块使用,因此我已将其移至project/commons/libs/重写的build.gradle文件中。从现在开始,我无法构建我的项目,因为出现以下错误:

Error:A problem occurred configuring project ':ScrollApplication'.
> Could not resolve all dependencies for configuration ':ScrollApplication:_developmentDebugCompile'.
   > Could not find :socialauth-android:.
     Searched in the following locations:
         http://dl.bintray.com/populov/maven//socialauth-android//socialauth-android-.pom
         http://dl.bintray.com/populov/maven//socialauth-android//socialauth-android-.aar
         https://oss.sonatype.org/content/repositories/snapshots//socialauth-android//socialauth-android-.pom
         https://oss.sonatype.org/content/repositories/snapshots//socialauth-android//socialauth-android-.aar
         https://repo1.maven.org/maven2//socialauth-android//socialauth-android-3.2.pom
         https://repo1.maven.org/maven2//socialauth-android//socialauth-android-3.2.aar
         file:/home/artem/Workspace/scrollandroid/libraries/socialauth-android-3.2.aar
         file:/home/artem/Workspace/scrollandroid/libraries/socialauth-android.aar
     Required by:
         scrollandroid:ScrollApplication:unspecified > scrollandroid:commons:unspecified

该错误表示依赖性解析程序尝试在socialauth-android.aar文件夹中查找project/libraries,该文件夹是我项目模块之间共享的所有公共库的文件夹。但我在project/commons/build.gradle文件中写道,flatDir模块的commonsproject/commons/libs!此外,jar中包含的所有project/commons/libs/库都可以在构建过程中找到任何问题。

这个问题的根源是什么?

以下是我的build.gradle文件(为了简洁,删除了一些代码,例如依赖声明):

project / settings.gradle

include ':ScrollApplication', ':commons'

project / build.gradle

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0-rc1'
    }
}

project / commons / build.gradle

apply plugin: 'com.android.library'

repositories {
    maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
    mavenCentral()

    flatDir {
        dirs "libs"
    }
}

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.1"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    compile(name:'socialauth-android', ext:'aar')
}

project / app / build.gradle

apply plugin: 'com.android.application'

repositories {
    maven { url "http://dl.bintray.com/populov/maven" }
    maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }

    mavenCentral()

    flatDir {
        dirs "../libraries"
    }
}

configurations {
    apt
}

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.1"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 21
    }

    lintOptions {
        abortOnError false
    }
}

dependencies {
    compile project(':commons')

    compile fileTree(dir: '../libraries', include: ['*.jar'])
}

更新:已添加项目结构

├── build.gradle
├── commons
│   ├── build.gradle
│   ├── libs
│   ├── proguard-rules.pro
│   └── src
│       ├── androidTest
│       │   └── java
│       └── main
│           ├── AndroidManifest.xml
│           ├── assets
│           ├── java
│           └── res
├── gradle
│   └── wrapper
├── libraries
│   ├── aws-android-sdk-1.7.1.1-core.jar
│   ├── aws-android-sdk-1.7.1.1-s3.jar
│   ├── libGoogleAnalyticsServices.jar
│   └── supertooltips-3.0.1.aar
├── scrollandroid-hg.iml
├── ScrollApplication
│   ├── build.gradle
│   ├── proguard.cfg
│   ├── ScrollApplication.iml
│   └── src
│       └── main
│           ├── AndroidManifest.xml
│           ├── assets
│           ├── java
│           └── res
├── settings.gradle
└── stacktrace.txt

2 个答案:

答案 0 :(得分:6)

似乎正在构建commons库(可以单独编译以验证吗?)但应用程序不是。 Gradle有一些特殊的规则来处理传递依赖(嵌套在其他依赖项中的依赖),因为commons依赖于socialauth-android,所以它存在。

尝试将额外的目录添加到" flatDir"属性在" project / app / build.gradle"

flatDir {
    dirs "../libraries", "../commons/libs"
}

答案 1 :(得分:0)

似乎是一个长期存在的已知问题。现在包含.aar依赖关系的方式就像在这个问题中引用一样:

Adding local .aar files to Gradle build using "flatDirs" is not working

默认情况下,生成的工件不会包含.aar文件中的文件,除非您创建将.aar内容复制到所需工件中的gradle任务。

如果您计划在Maven仓库中发布.aar库,则生成的POM文件会将您的依赖项版本设置为undefined。要更改它,您需要在项目中使用gradle中的Dependency Substitution方法。