依赖Glide4.8.0遇到错误

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_35956194/article/details/84965117

报 ERROR: Failed to resolve  异常 

解决

依赖的时候 exclude (排除的意思):

compile('com.github.bumptech.glide:glide:4.8.0') {
    exclude group: 'com.android.support'
}

还是不行的情况下:
 compileSdkVersion 改成27
 targetSdkVersion 27

猜你喜欢

转载自blog.csdn.net/qq_35956194/article/details/84965117