talha06
talha06

Reputation: 6466

IntelliJ Idea - Android Virtual Device doesn't start

I'm using IntelliJ Idea 13 to develop Android applications on Ubuntu 12.04 64-bit. But my virtual device never starts despite there is no error.. its screen always stays like this:screenshot-screen

My Android target level is 4.4 (API 19). How can I solve this issue?

Edit: Here is my AVD details:

screenshot-avd-details

Upvotes: 0

Views: 3058

Answers (2)

talha06
talha06

Reputation: 6466

My AVD has started after I check "Use Host GPU" option from "Emulation Options".

Upvotes: 0

LOGMD
LOGMD

Reputation: 249

I Recommend you look at this post to a similar question. https://stackoverflow.com/a/5535532/2978914 they are using eclipse but you should be able to view the logcat, other posts say first load can be ridiculously long. the spec of your PC may come into play as this post https://superuser.com/a/347298 explains the way the emulator converts to arm opcode: direct quote:

To use emulator more effectively, this is my experience:

  • Don't close emulator everytime you run your application.
  • Scale the emulator screen smaller.
  • Disable snapshot (Yes, it's useful but it takes time to close the emulator).
  • Specify a file path for SD card image file. I use only one SD card for many AVDs.
  • If you got any problems in adb, just reset adb, don't close emulator.
  • Open few programs in your operating sytem.
  • If you are using Windows, don't ever close emulator. Do it combined with Hibernate of Windows.

Upvotes: 1

Related Questions