How do I download the Android SDK without downloading Android Studio?

You can find the command line tools at the downloads page under the “Command line tools only” section. These are the links provided in the page as of now (version 26.1.1): Windows no installer: https://dl.google.com/android/repository/sdk-tools-windows-4333796.zip MacOSX: https://dl.google.com/android/repository/sdk-tools-darwin-4333796.zip Linux: https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip Be sure to have read and agreed with the terms of service before downloading any of … Read more

Failed to run sdkmanager –list with Java 9

With the help of this answer, I successfully solved the problem. We are going to apply a fix in sdkmanager. It is a shell script. It is located at $android_sdk/tools/bin, where $android_sdk is where you unzipped the Android SDK. Open sdkmanager in your favorite editor. Locate the line which sets the DEFAULT_JVM_OPTSvariable. In my copy, … Read more