user3223551
user3223551

Reputation: 59

add new packages to SDK manager

I'm having a problem with SDK manager, for some reason I can't load new packages in SDK manager to download and I only can see installed packages.. is there any other way to add the packages? I need google play services package.. how can I add this package with another way?

Upvotes: 0

Views: 84

Answers (2)

G3M
G3M

Reputation: 1031

ON your SDK manager Tools->Options and enable the following as shown in picture below enter image description here

This should hopefully start downloading packages. There are other things that you could try like setting up the right proxy or reinstalling ADT.

Upvotes: 0

MSA
MSA

Reputation: 2482

You can user gradle and add the following dependency

dependencies {
    compile 'com.android.support:appcompat-v7:+'
    compile 'com.google.android.gms:play-services:5.0.77'
}

Link for more info: Info link

Note: You need to use Android Studio IDE

Upvotes: 1

Related Questions