Skip to content

Instantly share code, notes, and snippets.

@lemol
Last active October 19, 2018 11:46
Show Gist options
  • Save lemol/a84f6ce4199afb70b64b3087f8c95f04 to your computer and use it in GitHub Desktop.
Save lemol/a84f6ce4199afb70b64b3087f8c95f04 to your computer and use it in GitHub Desktop.
# GOTO https://developer.android.com/studio/#downloads
# FIND Command line tools only
# Download and extract sdk-tools-*
sdkmanager "platform-tools" "platforms;android-28" "build-tools;28.0.3"
# with proxy: --proxy=http --proxy_host=127.0.0.1 --proxy_port=8888
# HOME/.gradle/gradle.properties
#http proxy setup
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=8888
#systemProp.http.proxyUser=userid
#systemProp.http.proxyPassword=password
#systemProp.http.nonProxyHosts=*.nonproxyrepos.com|localhost
#https proxy setup
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=8888
#systemProp.https.proxyUser=userid
#systemProp.https.proxyPassword=password
#systemProp.https.nonProxyHosts=*.nonproxyrepos.com|localhost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment