3

我尝试嵌入存在于 Maven Central 的Otto库。

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

    }
}

apply plugin: 'android'

dependencies {
    compile 'com.google.android.gms:play-services:4.0.30'
    compile 'com.android.support:support-v13:19.0.0'
    compile 'com.squareup:otto:1.3.4'
}

但我得到了例外:

A problem occurred configuring root project 'sample-project'.
> Failed to notify project evaluation listener.
   > Could not resolve all dependencies for configuration ':_DebugCompile'.
      > Could not find com.squareup:otto:otto:1.3.4.
        Required by:
            :sample-project:unspecified

我试图刷新依赖项(gradle --refresh-dependencies)但它没有帮助。

4

2 回答 2

10

你需要告诉 gradle 在哪里可以找到它。

repositories {
    mavenCentral()
}

注意existingrepositories { ... }里面buildscript { ... }只是为build classpath本身配置repositories,而不是你的项目,所以把这个新元素放在下面apply plugin ...

于 2013-12-12T16:41:04.603 回答
1

我相信你缺少的是Tools->Android->Sync Project with Gradle Files. 我在上面测试了你的代码,它对我来说效果很好。

希望这可以帮助。

于 2013-12-12T09:55:26.317 回答