我在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'
}
請同時發佈整個bulid.gradle文件 –
嗨,user1434702其在我的項目中的工作,因此嘗試清理您的項目,然後再試一次 –