user5082656
user5082656

Reputation:

Android studio path is not recognized

This is my problem:

enter image description here

What I tried:

Nothing of those things worked.

Anyone got a clue?

Upvotes: 1

Views: 225

Answers (2)

Krishna Chalise
Krishna Chalise

Reputation: 145

There are two ways to solve this problem:

  1. Download the android standlone sdk from Android developer site
  2. make a directory consisting of android sdk's in your computer and provide that directory path to that pop up.
  3. Provide the sdk path (the default path is : /opt for Linux based OS and C:\Android\SDK or something like this for windows...

There can be several other ways. You can get more info @ Android developer site for details

Upvotes: 0

Bryan Herbst
Bryan Herbst

Reputation: 67259

The problem is not your JDK. As the error says, the problem is that it can't find the Android SDK.

The path that you put into that box should be something like /Users/<user_name>/Library/Android/sdk (OSX) or C:\Android\SDK (Windows), depending on where you have installed the Android SDK.

Upvotes: 1

Related Questions