Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Picasso library error unresolved reference

   if(!image!!.equals("default")){
        Picasso.with( applicationContext )
           .load("image")
           .placeholder(R.drawable.profile_img)
           .into(settingsProfileId)
   }

with is getting error unresolved reference How to solve this error

like image 611
parag thombare Avatar asked Aug 31 '25 01:08

parag thombare


1 Answers

You are using old version u need update ur library...

See more details.

In Gradle

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

Java:

Picasso.get() .load(url) .resize(50, 50) .centerCrop() .into(imageView)
like image 73
Gobu CSG Avatar answered Sep 02 '25 16:09

Gobu CSG