Android SDK location not configured in settings on 64-bit Windows

"The location of the Android SDK is not configured in the settings on 64-bit Windows" - I know that this problem has been resolved several times, but instead of commenting on the old question, I decided to create a new one because it still has not been resolved.

I recently changed my system from 32 to 64 and currently I can not start my ADT. When I use 32, it works fine. I installed the 64-bit ADT (Build: v21.1.0-569685) and updated everything. My ADT now contains 6.41 GB.

Now when I try to start Eclipse, I got a popup enter image description here

When I look for this, I have a solution like Window β†’ Preference β†’ Android β†’ Location SDK Set the path to the SDK on your computer there.

But when I try to do this, the OK button is not turned on. enter image description here

When I try to access the AVD popup enter image description here

When I try to create a new project, another popup appears as

enter image description here

When I try to update, the Mo Updates Found message shows

enter image description here Can anyone offer advice on this issue?

+14
android adt
May 24 '13 at 8:56
source share
6 answers

How to upgrade ADT to the latest version?

In Eclipse, go to Help

Install new software ---> Add

inside Add repository write Name: ADT (as you want)

and Location: https://dl-ssl.google.com/android/eclipse/

after downloading, after a while you will receive Developer Tools and NDK plugins

check both options if you want to use NDK in the future or check only the developer tool

click next

Done

Now my problem is solved :-)

+21
May 28 '13 at 4:56
source share
β€” -

The problem may arise if you use IntelliJ Idea or any other IDE that uses / uses the same Android SDK. After starting IntelliJ Idea and then starting Eclipse, the Eclipse IDE will not be able to get the path to the SDK. In Eclipse, go to Window > Preferences > Android and change the backslash to the front slashes. For example, from D:\eclipse\android-sdk to D:/eclipse/android-sdk and click "Apply."

+6
Feb 14 '14 at 12:08
source share

I ran into the same problem Solution: Go to the URl below https://dl.google.com/android/adt/adt-bundle-windows-x86_64-20140702.zip Extract the folder and go to the settings and select the SDK folder from the extracted folders and apply it. the problem will be solved.

+4
Sep 12 '14 at 18:54
source share

Go to the settings, find β€œAndroid” in the sidebar, and then the field for placing the SDK will appear, specify it in the SDK. Read http://developer.android.com/sdk/installing.html if you are still stuck.

OR

Go to Eclipse -> Windows -> Preferences and click the left tab of Android, and you will see the image below with some text above as

"The Android SDK requires the Android Developer Toolkit version 14.0.0 or higher. The current version is 11.0.0.v201105251008-128486. Update ADT to the latest version."

And update ..

Go to Eclipse β†’ Help β†’ Check for Updates.

Please remember to close Eclipse after the updates are complete.

0
May 24 '13 at 9:06
source share

How to upgrade ADT to the latest version:

  • In Eclipse, go to Help ---> Install New Software ---> Add ---> Add Repository
  • Enter a name: ADT (whatever you want) and location: https://dl-ssl.google.com/android/eclipse/
  • After downloading, you will receive NDK developer tools and plugins for a while.
  • Check if you want to use NDK in the future or install only the developer tool
  • Click Next
  • Finish
0
May 19 '14 at 2:01
source share

This means that the Android SDK folder is empty, so it does not want to add it to Eclipse. Here are the contents of the Android SDK folder:

Windows: https://dl.google.com/android/adt/adt-bundle-windows-x86_64-20140702.zip

Mac: https://dl.google.com/android/adt/adt-bundle-mac-x86_64-20140702.zip

Download and extract the contents to a new folder, name it android-sdk and associate this directory with Eclipse, and you're done!

enter image description here

0
Jan 12 '19 at 2:09
source share



All Articles