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

前端 未结 5 1220
我寻月下人不归
我寻月下人不归 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:41

    You need to add a maven repository from which Picasso can be downloaded. You can do that by adding this in your app module's build.gradle file:

    repositories {
        jcenter()
    }
    

    A good place would be just before your dependencies {} block.

提交回复
热议问题