Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio Library Dependency - All Options are Alpha Versions

When I try to add a library to my Android Studio project they are all the latest alpha version instead of the current release version. It won't let me install non-alpha versions either via their direct name. Screenshot of Android Studio Project Add Library Dependency

like image 300
Angel Avatar asked Mar 18 '16 02:03

Angel


1 Answers

Open your build.gradle file (Module:app) and you will see something like this

enter image description here

Then you can find name of that library like by type name of this library + "dependency" word in the Google, choose the version you want and paste it in this file like: compile "your version you want"

I think this page will helpful with you: http://mvnrepository.com/ .Type name of your library, choose version and select in Gradle format.

like image 176
Bui Quang Huy Avatar answered Sep 20 '22 13:09

Bui Quang Huy