我正在使用 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'
}