2016-11-19 27 views
0

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' 
} 

エラーが発生します。 enter image description here

+0

bulid.gradleファイル全体を投稿してください –

+0

こんにちは、user1434702私のプロジェクトでの作業は、あなたのプロジェクトをきれいにしてからやり直してみてください –

答えて

0

あなたのように聞こえるだけで、ここで、この画像のように「今すぐ同期」をクリックし、お使いのbuild.gradleファイルを同期する必要がある場合がありますhttps://postimg.org/image/v0yro39cl/

1

私は3.2に私のGradleを更新し、それがうまく機能します。

関連する問題