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 trial

Android Build a Self-Destructing Message Android App Retrieving and Viewing Messages Using Picasso to View Images from the Web

After 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
Andre Colares
5,437 Points

This helped me. I forgot when using gradle to not add the jar file into libs..

https://teamtreehouse.com/community/adding-picasso-in-android-studio

thanks for the link, I'll have to remember that.