Home > Blockchain >  Android Studio: Picasso unresolved reference
Android Studio: Picasso unresolved reference

Time:10-14

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.

CodePudding user response:

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 the dependencies section of the build configuration :

dependencies {

    implementation("com.squareup.picasso:picasso:2.8")
}

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.

CodePudding user response:

Your issue is related to this issue, please check and let me know if this helps: Unresolved reference

  • Related