Skip to content

Instantly share code, notes, and snippets.

@mkp246
Last active May 10, 2020 21:29
Show Gist options
  • Save mkp246/e13b3d43c2e4d0829112eb87745e763a to your computer and use it in GitHub Desktop.
Save mkp246/e13b3d43c2e4d0829112eb87745e763a to your computer and use it in GitHub Desktop.
download and install android studio
download sdk-tools-windows.zip
extract to dir c:/android/sdk, no spaces in path
from sdk dir in cmd, run
.\tools\bin\sdkmanager.bat --proxy=http --proxy_host=<proxy_host> --proxy_port=<proxy_port> --verbose --list
note down packes to be installed
run the commnd to install the packages
.\tools\bin\sdkmanager.bat --sdk_root=. --proxy=http --proxy_host=<proxy_host> --proxy_port=<proxy_port> --verbose --install tools "build-tools;28.0.3" docs emulator "platforms;android-28" "sources;android-28" "system-images;android-28;default;x86_64"
other packeges can be downloaded directly in IDE using SDKManage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment