I adding picasso dependencies but seem it not worked. I tried changing the version. But still useless.
This my build.gradle (module)
apply plugin: \'
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:
build.gradle
repositories { jcenter() }
A good place would be just before your dependencies {} block.
dependencies {}