Android emulator can't be started

16

I've made some Android emulator device, and try to execute it. I've got the following errors:

02-18 05:46:39.070        99-99/? E/SurfaceFlinger﹕ ERROR: failed to open framebuffer (No such file or directory), aborting
02-18 05:46:39.070        99-99/? A/libc﹕ Fatal signal 6 (SIGABRT) at 0x00000063 (code=-6), thread 99 (surfaceflinger)
02-18 05:46:43.430      137-137/? E/cutils﹕ Failed to read /data/.layout_version: No such file or directory
02-18 05:46:43.430      137-137/? E/installd﹕ Could not create directories; exiting.
02-18 05:46:43.710      138-138/? E/keystore﹕ chdir: /data/misc/keystore: No such file or directory
02-18 05:46:44.160      134-134/? E/SurfaceFlinger﹕ hwcomposer module not found
02-18 05:46:44.160      134-134/? E/SurfaceFlinger﹕ ERROR: failed to open framebuffer (No such file or directory), aborting
02-18 05:46:44.170      134-134/? A/libc﹕ Fatal signal 6 (SIGABRT) at 0x00000086 (code=-6), thread 134 (surfaceflinger)
02-18 05:46:48.530      150-150/? E/cutils﹕ Failed to read /data/.layout_version: No such file or directory
02-18 05:46:48.530      150-150/? E/installd﹕ Could not create directories; exiting.
02-18 05:46:48.670      151-151/? E/keystore﹕ chdir: /data/misc/keystore: No such file or directory
02-18 05:46:49.260      147-147/? E/SurfaceFlinger﹕ hwcomposer module not found
02-18 05:46:49.260      147-147/? E/SurfaceFlinger﹕ ERROR: failed to open framebuffer (No such file or directory), aborting
02-18 05:46:49.260      147-147/? A/libc﹕ Fatal signal 6 (SIGABRT) at 0x00000093 (code=-6), thread 147 (surfaceflinger)

How can I fix it? My device doesn't run. Thanks in advance.

android
android-emulator
emulation
asked on Stack Overflow Feb 18, 2014 by malcoauri • edited Aug 11, 2015 by Rahul Tiwari

4 Answers

54

While creating emulator check the option "Use Host GPU" at the bottom and try.. For those who cannot find the "Use Host GPU" please refer to:'Snapshot' and 'Use Host GPU' options missing from AVD settings

answered on Stack Overflow Feb 18, 2014 by Sushil • edited Aug 3, 2017 by J.T
2

Seems like issue with high resolution https://code.google.com/p/android/issues/detail?id=76948

try lowring the resolution

answered on Stack Overflow Jul 30, 2015 by Rahul Tiwari
0

I'd just like to add to

While creating emulator check the option "Use Host GPU" at the bottom and try..

Make sure that your TARGET API of your project is the same as your EMULATOR's version.

E.g If your project is targetting 4.4.2 then make sure your emulator is set to 4.4.2 :)

answered on Stack Overflow Aug 3, 2015 by James111
-4

Try it in Ubuntu 14.04

  1. Install JDK 7
  2. Install SDK Manager
  3. Install Android Studio
  4. Create Virtual Device using AVD Manager

Enjoy it!

answered on Stack Overflow Jan 14, 2015 by Sanjay Kumar Bind

User contributions licensed under CC BY-SA 3.0