Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio SDK Managed Disabled

I just downloaded the Android Studio .dmg for OSX. Per the installation instructions, I've dragged it to the application folder and launched the application.

But the SDK Manager and AVD Manager are greyed out and are impossible to use.

Any ideas on an installation step I may have missed?

like image 527
Vincent Bernier Avatar asked Dec 04 '13 12:12

Vincent Bernier


2 Answers

For people coming for this same problem for Windows: you won't have an Android SDK anywhere if it is your first time with Android. Also, here the Android Studio doesn't come with a packed SDK Manager, so you need to download one.

So this is what you may do:

Download the SDK Manager and an Android SDK

  1. Download the SDK Manager from: http://developer.android.com/sdk/. Use the link that says "Get the SDK for an existing IDE".
  2. Execute the downloaded installer.
  3. Execute this program with administrator rights: SDK Manager.exe
  4. Download the proposed SDK (if you get errors regarding the SDK Manager couldn't create some folders, remember it should be executed as administrator).

Configure Android Studio to work with the new SDK

  1. Open Android Studio and in the Quick Start window click "Configure", you will see the SDK Manager greyed out.
  2. Go to "Project Defaults", then to "Project Structure" and there it will ask for the path where you installed the SDK.
  3. If you click OK and go back you will see the SDK Manager is no longer greyed out, and now you can start creating projects.
like image 104
Daniel Avatar answered Sep 23 '22 11:09

Daniel


A project needs to have been loaded at least once for the link to become available.

Found it in : File / Project Structure... Then in "Android SDK" provide the path to the SDK folder inside the Android Studio Application Bundle.
Then Make a new project.
Then after the initial setup the elements where finally enabled.

like image 22
Vincent Bernier Avatar answered Sep 24 '22 11:09

Vincent Bernier