SDK manager is grayed out

I was looking for other answers, but could not find the exact answer.

I just installed Android Studio and followed exactly the directions that appear here: https://developer.android.com/sdk/installing/index.html?pkg=studio

When I go to the next page here: https://developer.android.com/sdk/installing/adding-packages.html , it states that I need: "In Eclipse or Android Studio, click" SDK Manager in the toolbar " . But the SDK Manager icon is inactive.

I am running 64-bit 64-bit 14.04

JDK is working fine.

Any help would be appreciated.

+4
source share
2 answers

As far as I know, current versions of Android Studio were released without the SDKs enabled by default. You can download it here http://dl.google.com/android/android-sdk_r23.0.2-linux.tgz and install it in a folder other than your AS installation, as it is important now.
The AS usually asks you for the path to the location of the SDK if it cannot find it.
Hope this helps.

+3
source

I had the same problem. My setup is for a proxy. So, the init studio was unsuccessful. So I added disable.android.first.run=truethis line to idea.properties in android-studio / bin. It worked and the studio was running, but then I saw that the SDK manager was inactive.

, disable.android.first.run=true .

, , -

studio64.vmoptions and studio.vmoptions
-Dhttps.proxyPort=port
-Dhttps.proxyHost=host
-Dhttps.proxyUser=username
-Dhttps.proxyPassword=password

,

+1

All Articles