2016-11-19 64 views
0

我在Android Studio中構建了一個具有gradle的android應用程序,並且我有一個依賴關係jackson-databind,但是我得到一個錯誤can't resolve xxx,即使我使用了我的私人回購,並且我確定該庫在那裏。無法使用mavenCentral解析gradle庫

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

+0

請同時發佈整個bulid.gradle文件 –

+0

嗨,user1434702其在我的項目中的工作,因此嘗試清理您的項目,然後再試一次 –

回答

1

更新我的gradle這個3.2和它工作得很好。

相關問題