Search code examples
androidpicasso

Getting error when attempting to Load Picasso library


This is my code: Picasso.get().load(kl.getImage()).Into(userprofileImage); .

I added the Picasso library but Load also gives an error like 'load (java.lang.String)'

This is my gradle code implementation 'com.squareup.picasso:picasso:2.5.2'


Solution

  • The latest version is the following, try this:

    implementation 'com.squareup.picasso:picasso:2.71828'
    

    And then it is also a good idea to clean the project and then rebuild.