Reputation: 450
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
Reputation: 363825
You can use:
The official site
Click on the library and check the doc
The google maven repo
Search the library name and check the list
File->Project Structure->Dependencies as described in the @Sandeep answer
Upvotes: 1
Reputation: 308
Go to File->Project Structure->Dependencies
Now go to Add->Library
Search Library and all version will show of selected library
Upvotes: 1