2017-10-30 17 views
0

3.7.0から4.2.0へのグライドをアップグレードしようとしますが、Androidのメーカーは不満:エラー:解決に失敗しました:com.android.support:support-annotations:26.0.2

Error:Failed to resolve: com.android.support:support-annotations:26.0.2 Install Repository and sync project
Open File
Show in Project Structure dialog

Error:Failed to resolve: com.android.support:support-annotations:26.0.2 Install Repository and sync project
Open File
Show in Project Structure dialog

を私が変えてみました私locuslabs-android-sdk/sdk/build.gradleとしては、次のとおりです。

から:

compile "com.github.bumptech.glide:glide:${glide}" 

へ:

compile("com.github.bumptech.glide:glide:${glide}") { 
    exclude module: 'com.android.support:support-annotations' 
} 

でも、Android Studioでは、同じエラーメッセージが表示されました。

答えて

0

Failed to resolve: com.android.support:support-v13:26から、私は除外を表現するための別の構文を得て、これは問題解消:

compile("com.github.bumptech.glide:glide:${glide}") { 
    exclude group: 'com.android.support', module: 'support-annotations' 
} 
0

があなたのbuild.gradle(アプリレベル)ファイルに行の下に追加します。ライン上に追加した後

allprojects { 
repositories { 
    jcenter() 
    maven { 
     url "https://maven.google.com" 
    } 
} 

- クリーンビルドプロジェクトをして

+0

を実行するか、またはあなたが3.0 AS上にある場合、そしてちょうど 'Googleに追加()'。 – Apsaliya

関連する問題