Why is the Android AVD Manager missing when using Android SDK in Intellij?

The answer to this for me (after I had followed all other steps to getting the proper SDKs installed) was simply the following:
In Intellij, File > open. Open the build.gradle file in the root level of the android project directory. In the popup that displays, select Open as Project. Then select your desired options in the dialog that appears. In short, the Android SDK Manager is only available when you've opened a project as an Android project.


The answer to this question is very well hidden, far from being obvious and very puzzling implemented.

At my side this was caused by loading an old project with Java 7 and Android SDK 10, where the latter was no more available on my machine.

  • First, you must have all needed Java JDKs and the Android SDK installed. This is out of scope of this answer.
  • Second, you need to configure all of these into IntelliJ. This is probably what was missing at your side. Either the JDK or the Android SDK or all of them.
  • Third, you need to configure the proper Android SDK into your Project.
  • Fourth, you need to select the Emulator (it is configured with "Android SDK Manager", which was installed with the Android SDK in the first step) in the dialog.

First step

I cannot help you with that, sorry. Please find out yourself, how to download and install all the JDKs and the Android SDK for your platform.

Second step

To do the Second step, you probably want to go to "Default Project Structure" and add your Android SDK there. But to be able to do that, you need the proper Java JDK installed before! (Yes, this all is very very puzzling.)

To add all Java JDKs (Java 7, Java 8 and Java 9) each, do:

  • File :: Other Settings :: Default Project Structure...
  • Platform Settings :: SDKs
  • Press the green + :: JDK
  • Select the path where the JDK is installed. Select the directory, which contains the bin/ directory, not the bin/ directory itself.

Now that you have added all necessary JDKs, you start to select the Android API:

  • File :: Other Settings :: Default Project Structure...
  • Platform Settings :: SDKs
  • Press the green + :: Android SDK
  • Select the path where the JDK is installed. Select the directory, which contains the bin/ directory, not the bin/ directory itself.
  • Press OK, another window comes up.
    • This step fails if the needed JDK is not configured. The error message given can only be understood by people, who already know what to do. This is why you should always have all possible Java JDKs configured in IntelliJ.
  • Select the Android SDK you want to add.
  • You probably want more than one SDKs added, in case you want to create Apps for different minimum SDK versions. For this repeat this whole process.

Third step

Go to the Project Structure and set the Project SDK to the installed Android SDK:

  • File :: Project Structure... (or press Ctrl+Alt+Shift+s if the keyboard shortcuts still are on default)
  • Project Settings :: Project
  • Select the "Android API" you want to use under "Project SDK:"
  • You usually can leave everything else as it is

Fourth step

Now head over to "Run" :: "Edit Configurations...".

Now try to add the "Android App" again. If in the "General" Tab under "Deployment Target Options" with "Target:" set to "Emulator" nothing shows up in the dropdown of "Prefer Android Virtual Device:", then you need to configure/download some emulated devices through "Android SDK Manager".

If you are puzzled what that is and where to find it, have a look into the directory where you installed the "Android SDK"

At my side it is named tools/android.

  • You first need to download all needed emulator binaries there. Please ask "Marjory the Trash Heap", aka. Google, how to do this and what you need.

  • Also you need to configure some emulators. This, again, is very well hidden in the Menu of "Android SDK Manager":

    • Tools :: Manage AVDs...
    • Again, please use Marjory to find out what you need.

YMMV


The AVD Manager can be entered as follows: press Ctrl+Shift+A (Windows/Linux) or Cmd+Shift+A (mac), then enter avd and select the AVD Manager from the upcoming list (a similar approach works for other actions that are not easily found).