chathura
chathura

Reputation: 3452

How to know the updated version number of android library to use in gradle file

I am having a problem while using android libraries to android studio. How to know the latest version of the library which is appended in the end of the statement in the gradle file.

For example : If I want to add the Google play services, I can add this line

    compile 'com.google.android.gms:play-services:7.8.0'

If I updated the library using sdk manager,then how to get the new version number?

Thanks

Upvotes: 0

Views: 404

Answers (1)

Kushal Sharma
Kushal Sharma

Reputation: 5973

I usually after updating my android sdk check at

Project Structure > app > Dependencies > + button > Library dependency

enter image description here

Upvotes: 1

Related Questions