1

我正在使用 Android Studio,但是当我尝试在我的应用程序组件的 gradle 文件中添加:compile 'de.greenrobot:eventbus:2.4.0'时,我得到一个横幅:项目同步成功。打开“消息”视图以查看发现的错误。在消息窗格中,它显示错误消息:dependencies

Error:(28, 13) Failed to resolve: de.greenrobot:eventbus:2.4.0
<a href="openFile">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>

在 github 上检查EventBus时,我发现maven central上确实存在最新版本。

可能是android studio配置错误还是什么?

以下是可以正常工作的其余依赖项(没有事件总线依赖项):

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.aiesec"
        minSdkVersion 9
        targetSdkVersion 22
        versionCode 1
        versionName "0.1"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.0.0'
    compile 'com.parse.bolts:bolts-android:1.+'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.android.support:support-v4:22.0.0'
    compile 'com.android.support:cardview-v7:22.0.0'
    compile 'de.greenrobot:eventbus:2.4.0'
}
4

1 回答 1

12

这很尴尬,但问题是 gradle 文件(在我项目的根/基础文件夹中)的存储库列表中没有 mavenCentral allprojects

因此,添加mavenCentral()到如下所示的为我修复了 gradle 同步错误repositoriesallprojects

// Top-level build file where you can add configuration options common to all sub-projects/modules.

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

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        mavenCentral()
    }
}
于 2015-06-12T10:34:13.027 回答