Android模拟器错误,带离子

时间:2014-11-17 08:52:08

标签: android ubuntu ionic-framework

受到this questionthis one的启发,我尝试在Ubuntu 14.04上配置Android模拟器,使用命令ionic emulate android模拟我的离子应用。 但是我收到了这个错误:emulator: ERROR: This AVD's configuration is missing a kernel file!!

我已经安装了android SDK的第19版:enter image description here "ARM EABI v7a System Image"已安装。

我不知道如何获取窗口"编辑Android虚拟设备AVD"。

$ echo $JAVA_HOME给出 / usr / lib中/ JVM / JAVA -7-的openjdk-AMD64

我的〜/ .bashrc

中有这个
export PATH=${PATH}:/home/louisro/android-sdk-linux/tools
export PATH=${PATH}:/home/louisro/android-sdk-linux/platform-tools
export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
export PATH=${JAVA_HOME}/bin:$PATH
export PATH=/usr/local/bin:$PATH

你能帮我弄清楚出了什么问题吗?

由于

1 个答案:

答案 0 :(得分:2)

如果你没有创建AVD,就像我一样,你会收到这样的信息:

WARNING : no emulator specified, defaulting to Android_5_1
Waiting for emulator...
emulator: ERROR: This AVD's configuration is missing a kernel file!!

我的问题只是通过创建AVD来解决:

android list targets

选择您的目标API ID,在我的情况下,Android 4.4.2(API 19)为11,然后使用目标ID创建AVD:

android create avd -n android_4_4_2 -t 11  

ionic emulate android