Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDerek Markman
16,291 PointsAfter adding the picasso-2.5.2.jar file to my libs directory.. It still cannot resolve symbol 'Picasso' (SOLVED)
The title of this thread pretty much explains the issue.. But I added the latest Picasso jar file to my libs directory but after writing:
Picasso.with(this).load(imageUri.toString()).into(imageView);
It says it cannot resolve symbol 'Picasso'
EDIT: oops silly me, I forgot to add the dependency to my gradle file, after doing so it recognizes 'Picasso'
compile 'com.squareup.picasso:picasso:2.5.2'
1 Answer
Andre Colares
5,437 PointsThis helped me. I forgot when using gradle to not add the jar file into libs..
https://teamtreehouse.com/community/adding-picasso-in-android-studio
Derek Markman
16,291 PointsDerek Markman
16,291 Pointsthanks for the link, I'll have to remember that.