Skip to content Skip to sidebar Skip to footer

Installing Android Command Line Tools Using Sdkmanager On Windows

I am trying to install android command line tools using sdkmanager on windows for hybrid android app development in SAP web IDE. Also I am under a proxy network and when I try to s

Solution 1:

With sdkmanager you should always use proxy switches. I did not yet found a way to make it a system or user setting.

sdkmanager platform-tools --no_https --proxy=http --proxy_host=10.60.11.11 --proxy_port=8080

For file warning simply create an empty file at C:\Users\10002001\.android\repositories.cfg

For connection exception make sure the user has internet access and try opening the link https://dl.google.com/android/repository/addons_list-3.xml in a browser or wget/curl.

Post a Comment for "Installing Android Command Line Tools Using Sdkmanager On Windows"