Could not find com.squareup.picasso:picasso:2.5.2

前端 未结 5 1218
我寻月下人不归
我寻月下人不归 2021-01-13 04:52

I adding picasso dependencies but seem it not worked. I tried changing the version. But still useless.

This my build.gradle (module)

apply plugin: \'         


        
5条回答
  •  执笔经年
    2021-01-13 05:42

    According to their Github, you have to use MavenCentral to get their library so add this to your build.gradle(app) file:

    repositories {
        mavenCentral()
    }
    

    Resync and try again.

提交回复
热议问题