Reputation: 7895
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
.
Upvotes: 4
Views: 9963
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
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