So, i am just impementing it in mine gradle file and when i’m writing Picasso.get……. getting unresolved reference on name Picasso, pls help.
Question posted in Android Studio
The official documentation can be found here.
The official documentation can be found here.
2
Answers
You provide little details but it seems that you want to use the Picasso image library. If the reference is unresolved it means that you do not have the library as a dependency in your project.
In your
app
modules (usually the one by default when you create a project), you should have a build configuration file (build.gradle or build.gradle.kts) where you need to add the dependencies of your project. So you need to add it in thedependencies
section of the build configuration :And afterwards don’t forget to execute a "Sync project with Gradle files" in Android Studio in order to have the dependency effectively included in your project.
Your issue is related to this issue, please check and let me know if this helps:
Unresolved reference