Steve White
Steve White

Reputation: 450

How determine the proper version of an Android library?

For example, I have a working module whose build.gradle file has

dependencies {
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
}

Where does this number "1.1.0" come from? Where can I find a listing?

I want to add functionalities to it. I see the list of AndroidX packages at

https://developer.android.com/reference/androidx/packages

but it provides no version numbers...

Upvotes: 0

Views: 130

Answers (2)

Gabriele Mariotti
Gabriele Mariotti

Reputation: 363825

You can use:

Upvotes: 1

Sandeep Kumar
Sandeep Kumar

Reputation: 308

Go to File->Project Structure->Dependencies

enter image description here

Now go to Add->Library

Search Library and all version will show of selected library

enter image description here

Upvotes: 1

Related Questions