DimasGhost
DimasGhost

Reputation: 13

Visual Studio can't install Android SDK (API level 19 and 21) (missing extra-android-support)

After trying to install Android SDK (API level 19 and 21) for Visual Studio via it's updater, I always see the error: screenshot

I reinstalled Visual Studio, JDK and even Windows, but nothing changed. Than I checked if this "extra-android-support" package exist, and I found that there'are no more that package in Android repository.

You can check it by yourself, if you go to Android SDK folder\tools

C:\Program Files (x86)\Android\android-sdk\tools

And then run next command in cmd

android.bat update sdk -u -a –-filter extra-android-support

Looks like there's no package with this name anymore: screenshot.

But Visual Studio is still trying to install it. Is there anyways how can I use Android SDK for Visual Studio?

Upvotes: 1

Views: 1613

Answers (1)

Elvis Xia - MSFT
Elvis Xia - MSFT

Reputation: 10831

But Visual Studio is still trying to install it. Is there anyways how can I use Android SDK for Visual Studio?

You can ignore this error and go ahead use the android SDK for Visual Studio without problem.

If you want to install the latest android SDK Platform or other android tools, you can open the android sdk manager through VS: Tools->Android->Android SDK Manager

Or you can open the android sdk manager directly under C:\Program Files (x86)\Android\android-sdk\SDK Manager.exe(please open it with Administrator).

Upvotes: 1

Related Questions