无法使用mavenCentral在gradle中解析库

时间:2016-11-19 10:20:23

标签: android android-studio gradle

我正在使用Android Studio中的gradle构建一个Android应用程序,我有一个依赖jackson-databind,但我得到一个错误can't resolve xxx,即使我使用我的私人仓库,我确定该库在那里

apply plugin: 'com.android.application'

repositories {
    mavenCentral()
}
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:recyclerview-v7:25.0.0'
    compile 'com.android.support:cardview-v7:25.0.0'
    compile 'com.fasterxml.jackson.core:jackson-core:2.8.1'
    compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.1'
    compile 'com.fasterxml.jackson.core:jackson-databind:2.8.1'
    testCompile 'junit:junit:4.12'
}

我得到一个错误。 enter image description here

2 个答案:

答案 0 :(得分:1)

我将我的gradle更新为3.2并且运行良好。

答案 1 :(得分:0)

听起来您可能只需要同步build.gradle文件,点击"立即同步"如下图所示:https://postimg.org/image/v0yro39cl/