alex
alex

Reputation: 7895

Download and install platform-28_r06 manually for android studio

I'm trying to run virtual device with in android studio. It needs to install platform-28_r06.zip, but download process doesn't complete due low internet speed.

I want to download this file manually but I don't know where I should extract the content.
SDK path is C:\Users\lion\AppData\Local\Android\Sdk. enter image description here

Upvotes: 4

Views: 9963

Answers (2)

ahmed khan
ahmed khan

Reputation: 1

you can download through cmd locate the sdkmanager.bat in android studio folder sdkmanager.bat --sdk_root=${ANDROID_HOME} "platform-tools" "platforms;android-28"

Upvotes: 0

shkschneider
shkschneider

Reputation: 18243

Explore your SDK path.

You'll see a platforms folder. Here are android-* platforms.

For API-28, the path is then: SDK/platforms/android-28/

The platform tools are in SDK/platform-tools/.

Upvotes: 6

Related Questions