Androidスタジオで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私のプロジェクトでの作業は、あなたのプロジェクトをきれいにしてからやり直してみてください –