Issue
I created a simple Android app in Eclipse ADT, just a simple Hello World
. The IDE I am using was downloaded from the Android web site, seems it's based on Eclipse Juno and has the ADT plugin. My OS is Windows 7, 64 bit.
OK, then I created an AVD in the IDE (from a Nexus 5 template; just lowered the memory to 512MB).
The problem is that I keep getting this error when I try to start the AVD (with no app in it). Seems like it's in some loop and keeps printing this in the LogCat and the AVD screen is just black.
- What might be wrong?
- How does one normally troubleshoot such issues? I am new to Android (but not to Java).
11-21 22:50:01.740: A/libc(1275): Fatal signal 6 (SIGABRT) at 0x4fb (code=-6), thread 1275 (surfaceflinger)
11-21 22:50:04.030: W/AudioFlinger(1278): Thread AudioOut_2 cannot connect to the power manager service
11-21 22:50:04.060: W/AudioFlinger(1278): Thread AudioOut_2 cannot connect to the power manager service
11-21 22:50:04.060: W/AudioFlinger(1278): Thread AudioOut_2 cannot connect to the power manager service
11-21 22:50:04.060: E/AudioFlinger(1278): no wake lock to update!
11-21 22:50:04.090: E/AudioFlinger(1278): int android::load_audio_interface(const char*, audio_hw_device_t**) couldn't load audio hw module audio.r_submix (No such file or directory)
11-21 22:50:04.090: W/AudioPolicyManagerBase(1278): could not open HW module r_submix
11-21 22:50:05.970: W/InterfaceController(1325): Warning (dlopen failed: library "/system/lib/libnetcmdiface.so" not found) while opening the net interface command library
11-21 22:50:06.530: E/SurfaceFlinger(1326): hwcomposer module not found
11-21 22:50:06.530: E/SurfaceFlinger(1326): ERROR: failed to open framebuffer (No such file or directory), aborting
Solution
My problem was that I was using Android 4.4W which (as I realized later) is the so-called Android Wear and is applicable to very specific devices only (like watches e.g.). After switching to the normal Android 4.4.2, the issue described in my question disappeared.
Answered By - peter.petrov
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.