Reputation: 3452
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
Reputation: 5973
I usually after updating my android sdk check at
Project Structure > app > Dependencies > + button > Library dependency
Upvotes: 1