“无法解决所有依赖关系”与第三方库(来自Maven Central)

时间:2014-01-05 13:11:25

标签: android gradle android-gradle

在我的build.gradle中,我定义了一些第三方库,所有这些库都可以在Maven Central中使用。

dependencies {    
    compile 'com.google.code.gson:gson:2.2.4'
    compile 'com.google.guava:guava:15.0'
    compile 'com.netflix.rxjava:rxjava-core:0.14.2'
    compile 'com.netflix.rxjava:rxjava-android:0.14.2'
}

(我们在libs下也有手动管理的jar(对于Eclipse用户),我曾经使用过 对于Gradle也使用compile fileTree(dir: 'libs', include: '*.jar')进行构建,但我正试图将其从简化的自动化依赖关系管理转向。)

无论如何,由于某种原因,获取deps失败了:

* What went wrong:
A problem occurred configuring root project 'MyApp-Android'.
> Could not resolve all dependencies for configuration ':_debugCompile'.
   > Could not find com.google.code.gson:gson:2.2.4.
     Required by:
         :MyApp-Android:unspecified
   > Could not find com.google.guava:guava:15.0.
     Required by:
         :MyApp-Android:unspecified
   > Could not find com.netflix.rxjava:rxjava-core:0.14.2.
     Required by:
         :MyApp-Android:unspecified
   > Could not find com.netflix.rxjava:rxjava-android:0.14.2.
     Required by:
         :MyApp-Android:unspecified

我做错了什么?

我想知道我是否应该

repositories {
    mavenCentral()
}

...也在构建文件的顶层(不仅仅在buildscript内),但添加它没有帮助。

分辨率

我太仓促了; 做了帮助“无法解决依赖关系”。之后我收到了编译错误,但这是因为实际上在代码中(以及在libs中)比在dependendies中的四个条目中有更多的依赖。

所以在我的情况下,我必须添加顶级repositories指向Maven Central plus 我们实际拥有的一些额外的依赖:

compile 'com.squareup.okhttp:okhttp:1.2.1'   
compile 'com.android.support:support-v4:13.0.0'
compile 'com.android.support:support-v13:13.0.0'

(原始的,破碎的)完整build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.7.1'
    }
}
apply plugin: 'android'

dependencies {
    // compile fileTree(dir: 'libs', include: '*.jar')
    compile 'com.google.code.gson:gson:2.2.4'
    compile 'com.google.guava:guava:15.0'
    compile 'com.netflix.rxjava:rxjava-core:0.14.2'
    compile 'com.netflix.rxjava:rxjava-android:0.14.2'
}

android {
    compileSdkVersion 19
    buildToolsVersion "19"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 19
    }

    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            resources.srcDirs = ['src']
            aidl.srcDirs = ['src']
            renderscript.srcDirs = ['src']
            res.srcDirs = ['res']
            assets.srcDirs = ['assets']
        }

        // Move the tests to tests/java, tests/res, etc...
        instrumentTest.setRoot('tests')

        // Move the build types to build-types/<type>
        // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
        // This moves them out of them default location under src/<type>/... which would
        // conflict with src/ being used by the main source set.
        // Adding new build types or product flavors should be accompanied
        // by a similar customization.
        debug.setRoot('build-types/debug')
        release.setRoot('build-types/release')
    }

}

2 个答案:

答案 0 :(得分:17)

确实你需要添加一个

repositories {
    mavenCentral()
}

位于build.gradle的顶层,以指定搜索依赖项的位置。

答案 1 :(得分:0)

buildscript {
    repositories {
        google()
=>        mavenCentral()     <=

    }