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

I am trying to use the Android SDK in my IntelliJ project, which is a larger project containing both web clients and ios clients, as well as the server side (so I do not use Android Studio). I installed the Android SDK on my Mac OSX computer. I launched the SDK Manager and installed Android 6.0 (API 23), as well as Android SDK Tools 25.1.7, Android SDK Platform-tools 23.1 and Android SDK Build-tools 23.0.1-24. I also set up the Android SDK in my IntelliJ project framework. However, the AVD Manager is not displayed in the Tools menu. This leads to the fact that I can not select the AVD emulator when creating the launch / debug configuration of the Android application. In particular, "Prefer Android Virtual Device" says "Unknown AVD", and there are no other options in this drop-down menu, and the "..." button is inactive.How can I access the AVD Manager without using Android Studio and just using IntelliJ with the Android SDK installed? (Also, as you can see in the picture, my module is not specified, but I think this is a separate problem)My build configuration

+6
source share
4 answers

( , SDK), :
Intellij, File > open. build.gradle Android. " ". . , Android SDK Manager , Android.

+1

, , .

Java 7 Android SDK 10, .

  • Java JDK Android SDK. .
  • -, IntelliJ. , , . JDK, Android SDK, .
  • -, Android SDK .
  • -, ( "Android SDK Manager", Android SDK ) .

, . , JDK Android SDK .

, , , " " Android SDK. , Java JDK, ! (, .)

Java JDK (Java 7, Java 8 Java 9), :

  • :: :: ...
  • :: SDK
  • +:: JDK
  • , JDK. , bin/, bin/.

, JDK, API Android:

  • :: :: ...
  • :: SDK
  • +:: Android SDK
  • , JDK. , bin/, bin/.
  • "", .
    • , JDK . , , . Java JDK, IntelliJ.
  • Android SDK, .
  • , SDK, SDK. .

SDK Android SDK:

  • :: ... ( Ctrl + Alt + Shift + s, - )
  • ::
  • "Android API", "Project SDK:"
  • ,

"Run":: "Edit Configurations...".

Android. "" " " ":", "", " Android Virtual Device:", / "Android SDK Manager".

, , , "Android SDK"

tools/android.

  • . , " ", . Google, .

  • . , , "Android SDK Manager":

    • :: AVD...
    • , , , , .

YMMV

+5

AVD Manager can be entered as follows: press Ctrl+Shift+A(Windows / Linux) or Cmd+Shift+A(mac), then enter avdand select AVD Managerfrom the following list (a similar approach works for other actions that are not easy to find).

+4
source

(Using React Native Quick Start)

Make sure your module is selected when creating the launch configuration in Android Studio.

0
source

All Articles