我正在尝试使用Github的功能在我的android中创建加载图像但是当我尝试同步项目时出现了这个错误
错误:(33,13)无法解决:com.github.bumbtech.glide:glide:3.7.0
这些是使用
的成绩脚本(模块应用程序)Dependanciesdependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
compile 'com.mcxiaoke.volley:library:1.0.18'
compile 'com.android.support:cardview-v7:25.1.1'
compile 'com.android.support:recyclerview-v7:25.1.1'
compile 'com.github.bumbtech.glide:glide:3.7.0'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:0)
修改强> 如评论中所述。依赖性不正确。
取代: 的 com.github.bumbtech.glide 强> 同 的 com.github.bumptech.glide 强>
检查 Maven存储库还表明它可用: https://mvnrepository.com/artifact/com.github.bumptech.glide/glide/3.7.0
请确保您的Android Studio配置未定义离线模式,这会阻止下载新的依赖项。 您可以在此处找到有关 gradle offline模式的更多信息:https://stackoverflow.com/a/31235328/325479