Atheris
Atheris

Reputation: 105

how to install android SDK zip file on IntelliJ Ultimate?

for this error:

and these is my android SDK files:

Upvotes: 0

Views: 314

Answers (1)

You can use sdkmanager from commandline:

  1. Open up a command prompt
  2. use tools/bin/sdkmanager.bat (cd tools/bin/)
  3. sdkmanager --list command shows the available packages you can download
  4. install a plarform: e.g.: sdkmanager platforms;android-26 command will install the newest platform

Configure Intellij:

  1. Configure-Project Defaults-Project Structure-SDKs
  2. Add Android sdk (Browse the downloaded platform's directory, it is in the tools\platform directory)

Upvotes: 1

Related Questions