Related
I'm trying to use the JavaMail Android port in my application but my app crashes when I try to send anything. I've followed the guide here and created the Mailclass. Then in my MainActivity I've added
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Mail m = new Mail("mailtosendfrom", "mypassword");
new SendMailTask().execute(m);
}
private class SendMailTask extends AsyncTask<Mail, Void, Void> {
#Override
protected Void doInBackground(Mail... mail) {
Mail m = mail[0];
String[] toArr = {"mailtosendto"};
m.setTo(toArr);
m.setFrom("mailtosendfrom");
m.setSubject("This is an email sent using my Mail JavaMail wrapper from an Android device.");
m.setBody("Email body.");
try {
m.send();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mypackage" >
<uses-permission android:name="android.permission.INTERNET" />
<application ...>
...
</application>
</manifest>
Now when I start my app it crashes immediately with the following message in logcat:
04-19 18:37:58.540 4547-4547/? D/AndroidRuntime﹕ >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
04-19 18:37:58.540 4547-4547/? D/AndroidRuntime﹕ CheckJNI is ON
04-19 18:37:58.570 4547-4547/? E/memtrack﹕ Couldn't load memtrack module (No such file or directory)
04-19 18:37:58.570 4547-4547/? E/android.os.Debug﹕ failed to load memtrack module: -2
04-19 18:37:58.590 4547-4547/? D/AndroidRuntime﹕ Calling main entry com.android.commands.am.Am
--------- beginning of system
04-19 18:37:58.590 1313-1823/system_process I/ActivityManager﹕ Force stopping com.oskar.ratingapp appid=10046 user=0: from pid 4547
04-19 18:37:58.600 4547-4547/? D/AndroidRuntime﹕ Shutting down VM
04-19 18:37:58.600 4547-4550/? I/art﹕ Debugger is no longer active
04-19 18:37:58.600 4547-4556/? E/art﹕ Thread attaching while runtime is shutting down: Binder_1
04-19 18:37:58.600 4547-4556/? I/AndroidRuntime﹕ NOTE: attach of thread 'Binder_1' failed
04-19 18:37:58.990 4559-4559/? D/AndroidRuntime﹕ >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
04-19 18:37:58.990 4559-4559/? D/AndroidRuntime﹕ CheckJNI is ON
04-19 18:37:59.030 4559-4559/? E/memtrack﹕ Couldn't load memtrack module (No such file or directory)
04-19 18:37:59.030 4559-4559/? E/android.os.Debug﹕ failed to load memtrack module: -2
04-19 18:37:59.050 4559-4559/? D/AndroidRuntime﹕ Calling main entry com.android.commands.am.Am
04-19 18:37:59.060 1313-1804/system_process I/ActivityManager﹕ START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.oskar.ratingapp/.MainActivity} from uid 0 on display 0
04-19 18:37:59.070 4559-4559/? D/AndroidRuntime﹕ Shutting down VM
04-19 18:37:59.080 1313-1330/system_process I/ActivityManager﹕ Start proc com.oskar.ratingapp for activity com.oskar.ratingapp/.MainActivity: pid=4569 uid=10046 gids={50046, 9997, 3003} abi=x86_64
04-19 18:37:59.080 4559-4561/? I/art﹕ Debugger is no longer active
04-19 18:37:59.080 4569-4569/? E/libprocessgroup﹕ failed to make and chown /acct/uid_10046: Read-only file system
04-19 18:37:59.080 4569-4569/? W/Zygote﹕ createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT?
04-19 18:37:59.080 4569-4569/? I/art﹕ Not late-enabling -Xcheck:jni (already on)
04-19 18:37:59.330 4569-4585/? D/OpenGLRenderer﹕ Render dirty regions requested: true
04-19 18:37:59.350 4569-4569/? D/﹕ HostConnection::get() New Host Connection established 0x7fb32fc8f280, tid 4569
04-19 18:37:59.370 4569-4569/? D/Atlas﹕ Validating map...
04-19 18:37:59.430 4569-4585/? D/﹕ HostConnection::get() New Host Connection established 0x7fb32fc8ff40, tid 4585
04-19 18:37:59.440 4569-4585/? I/OpenGLRenderer﹕ Initialized EGL, version 1.4
04-19 18:37:59.460 4569-4585/? D/OpenGLRenderer﹕ Enabling debug mode 0
04-19 18:37:59.480 4569-4585/? W/EGL_emulation﹕ eglSurfaceAttrib not implemented
04-19 18:37:59.480 4569-4585/? W/OpenGLRenderer﹕ Failed to set EGL_SWAP_BEHAVIOR on surface 0x7fb32fc8ef00, error=EGL_SUCCESS
--------- beginning of crash
04-19 18:37:59.610 4569-4584/? A/libc﹕ Fatal signal 11 (SIGSEGV), code 1, fault addr 0x750000013f in tid 4584 (AsyncTask #1)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
04-19 18:37:59.730 957-957/? I/DEBUG﹕ Build fingerprint: 'generic_x86_64/sdk_phone_x86_64/generic_x86_64:5.0/LRX09D/1504858:eng/test-keys'
04-19 18:37:59.730 957-957/? I/DEBUG﹕ Revision: '0'
04-19 18:37:59.730 957-957/? I/DEBUG﹕ ABI: 'x86_64'
04-19 18:37:59.730 957-957/? I/DEBUG﹕ pid: 4569, tid: 4584, name: AsyncTask #1 >>> com.oskar.ratingapp <<<
04-19 18:37:59.730 957-957/? I/DEBUG﹕ signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x750000013f
04-19 18:37:59.730 957-957/? I/DEBUG﹕ rax 0000000000000000 rbx 000000750000008f rcx 0000000000000081 rdx 0000000000000001
04-19 18:37:59.730 957-957/? I/DEBUG﹕ rsi 000000000000001e rdi 00007fb33a7a72b0
04-19 18:37:59.730 957-957/? I/DEBUG﹕ r8 000000000000014a r9 0000000000000000 r10 00007fb33e64fe2c r11 00007fb3410b12c0
04-19 18:37:59.730 957-957/? I/DEBUG﹕ r12 00007fb32fc91380 r13 0000000000000001 r14 00007fb32fccf268 r15 00007fb32fccf380
04-19 18:37:59.730 957-957/? I/DEBUG﹕ cs 0000000000000033 ss 000000000000002b
04-19 18:37:59.730 957-957/? I/DEBUG﹕ rip 00007fb3411144d6 rbp 0000000000000000 rsp 00007fb32fbfeb30 eflags 0000000000010202
04-19 18:37:59.730 957-957/? I/DEBUG﹕ backtrace:
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #00 pc 00000000000e34d6 /system/lib64/libcrypto.so (ENGINE_init+38)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #01 pc 00000000000eb435 /system/lib64/libcrypto.so (EVP_MD_CTX_copy_ex+37)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #02 pc 00000000000f8582 /system/lib64/libcrypto.so (HMAC_CTX_copy+66)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #03 pc 00000000000f7e32 /system/lib64/libcrypto.so
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #04 pc 00000000000f698a /system/lib64/libcrypto.so (EVP_PKEY_CTX_dup+234)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #05 pc 00000000000eb52b /system/lib64/libcrypto.so (EVP_MD_CTX_copy_ex+283)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #06 pc 000000000004a9b3 /system/lib64/libssl.so (tls1_mac+195)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #07 pc 0000000000032456 /system/lib64/libssl.so
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #08 pc 000000000003207e /system/lib64/libssl.so (ssl3_write_bytes+302)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #09 pc 00000000000261d0 /system/lib64/libssl.so (ssl3_do_write+32)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #10 pc 0000000000028ef1 /system/lib64/libssl.so (ssl3_connect+2353)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #11 pc 00000000000207d7 /system/lib64/libssl.so (ssl23_connect+3463)
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #12 pc 00000000000186a2 /system/lib64/libjavacrypto.so
04-19 18:37:59.730 957-957/? I/DEBUG﹕ #13 pc 0000000000409ef1 /data/dalvik-cache/x86_64/system#framework#boot.oat
04-19 18:37:59.800 957-957/? I/DEBUG﹕ Tombstone written to: /data/tombstones/tombstone_01
04-19 18:37:59.840 1313-1399/system_process W/InputDispatcher﹕ channel '27028e74 com.oskar.ratingapp/com.oskar.ratingapp.MainActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x9
04-19 18:37:59.840 1313-1399/system_process E/InputDispatcher﹕ channel '27028e74 com.oskar.ratingapp/com.oskar.ratingapp.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
04-19 18:37:59.840 963-963/? I/Zygote﹕ Process 4569 exited due to signal (11)
04-19 18:37:59.940 1313-4593/system_process W/ActivityManager﹕ Force finishing activity com.oskar.ratingapp/.MainActivity
04-19 18:37:59.950 1313-1822/system_process I/WindowState﹕ WIN DEATH: Window{27028e74 u0 com.oskar.ratingapp/com.oskar.ratingapp.MainActivity}
04-19 18:37:59.950 1313-1822/system_process W/InputDispatcher﹕ Attempted to unregister already unregistered input channel '27028e74 com.oskar.ratingapp/com.oskar.ratingapp.MainActivity (server)'
04-19 18:37:59.950 1313-4593/system_process E/ActivityManager﹕ Invalid thumbnail dimensions: 360x360
04-19 18:37:59.950 1313-4593/system_process W/ActivityManager﹕ Exception thrown during pause
android.os.DeadObjectException
at android.os.BinderProxy.transactNative(Native Method)
at android.os.BinderProxy.transact(Binder.java:479)
at android.app.ApplicationThreadProxy.schedulePauseActivity(ApplicationThreadNative.java:701)
at com.android.server.am.ActivityStack.startPausingLocked(ActivityStack.java:852)
at com.android.server.am.ActivityStack.finishActivityLocked(ActivityStack.java:2754)
at com.android.server.am.ActivityStack.finishTopRunningActivityLocked(ActivityStack.java:2611)
at com.android.server.am.ActivityStackSupervisor.finishTopRunningActivityLocked(ActivityStackSupervisor.java:2448)
at com.android.server.am.ActivityManagerService.handleAppCrashLocked(ActivityManagerService.java:11507)
at com.android.server.am.ActivityManagerService.makeAppCrashingLocked(ActivityManagerService.java:11404)
at com.android.server.am.ActivityManagerService.crashApplication(ActivityManagerService.java:12083)
at com.android.server.am.ActivityManagerService.handleApplicationCrashInner(ActivityManagerService.java:11599)
at com.android.server.am.NativeCrashListener$NativeCrashReporter.run(NativeCrashListener.java:86)
04-19 18:37:59.950 946-946/? E/lowmemorykiller﹕ Error opening /proc/4569/oom_score_adj; errno=2
04-19 18:37:59.960 1313-1329/system_process I/ActivityManager﹕ Process com.oskar.ratingapp (pid 4569) has died
04-19 18:38:00.000 1313-2329/system_process I/OpenGLRenderer﹕ Initialized EGL, version 1.4
04-19 18:38:00.010 1903-1968/com.android.launcher W/EGL_emulation﹕ eglSurfaceAttrib not implemented
04-19 18:38:00.010 1903-1968/com.android.launcher W/OpenGLRenderer﹕ Failed to set EGL_SWAP_BEHAVIOR on surface 0x7fb32dde2980, error=EGL_SUCCESS
04-19 18:38:00.010 1313-2329/system_process W/EGL_emulation﹕ eglSurfaceAttrib not implemented
04-19 18:38:00.010 1313-2329/system_process W/OpenGLRenderer﹕ Failed to set EGL_SWAP_BEHAVIOR on surface 0x7fb328cf1780, error=EGL_SUCCESS
04-19 18:38:03.090 1313-1426/system_process D/TaskPersister﹕ removeObsoleteFile: deleting file=44_task.xml
04-19 18:38:03.200 1313-1414/system_process W/AudioTrack﹕ AUDIO_OUTPUT_FLAG_FAST denied by client
04-19 18:38:03.220 1313-1463/system_process W/InputMethodManagerService﹕ Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy#12273a0d attribute=null, token = android.os.BinderProxy#133a0350
04-19 18:38:03.740 1903-1968/com.android.launcher W/OpenGLRenderer﹕ Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
complete shot in the dark. This has worked for me however.
try this
ExecutorService es = Executors.newCachedThreadPool();
es.execute(new Runnable() {
#Override
public void run() {
//Run Mail Here
}
});
es.shutdown();
//This part is so that you know when the ES has finished so that you can persay say success.
try {
boolean finshed = es.awaitTermination(1, TimeUnit.MINUTES);
} catch (InterruptedException e) {
e.printStackTrace();
}
I had an issue with AsyncTasks earlier. Hope it helps!
The code is not the problem, the emulator is.
I just tried this on a device instead of the emulator and it works flawlessly.
I am using eclipse lollipop version.
I am getting this error :
VM Aborting
Fatal signal 6 (SIGABRT) at 0x00001247 (code=-6)
Below I have posted the full stacktrace:
StackTrace:
01-30 04:11:43.053: E/dalvikvm(4679): VM aborting
01-30 04:11:43.053: A/libc(4679): Fatal signal 6 (SIGABRT) at 0x00001247 (code=-6), thread 4679 (e.quranmadeeasy)
01-30 04:11:43.541: D/dalvikvm(4749): GC_FOR_ALLOC freed 124K, 6% free 3345K/3528K, paused 2ms, total 2ms
01-30 04:11:43.541: I/dalvikvm-heap(4749): Grow heap (frag case) to 4.395MB for 1127532-byte allocation
01-30 04:11:43.541: D/dalvikvm(4749): GC_FOR_ALLOC freed 0K, 4% free 4446K/4632K, paused 1ms, total 1ms
Logcat didn't pointed out the error line.So I didn't know how to solve this error.I tried this Answer.But It doesn't helpful to me.Any help is mostly appreciated.Thank you.
Are you app use native method ? Can you get the DEBUG stack ? It will output on logcat, or you can found it on /data/tombstones. If you found, you can get information like this
backtrace:
#00 pc 0000d1a0 /system/lib/libc.so (write+12)
#01 pc 0001aac1 /system/lib/libc.so (__sflush+48)
#02 pc 0001bad7 /system/lib/libc.so (_fwalk+30)
#03 pc 0001f0d9 /system/lib/libc.so (__cxa_finalize+132)
#04 pc 0001f40b /system/lib/libc.so (exit+6)
#05 pc 00016f9d /system/lib/libc.so (__libc_init+40)
#06 pc 000040a4 /system/bin/toolbox
Then you can found the problem, use addr2line get position on code. More info about addr2line in here : How to use addr2line in Android
Texview contents exceeds the gridview table size and throws fatal exception.I reduce the textview contents in Database and solved this error.
I get "Native crash at /system/lib/libwebviewchromium.so" errors many times for android 4.4+. There was no such problem before 4.4.
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'samsung/ja3gxx/ja3g:4.4.2/KOT49H/I9500XXUFNB4:user/release-keys'
Revision: '10'
pid: 32504, tid: 32595, name: xxx.yyy >>> com.xxx.yyy <<<
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000001
r0 83c80e70 r1 00000000 r2 00000001 r3 00000000
r4 7ea6d230 r5 7a806d20 r6 7ea6d234 r7 00000000
r8 7ea6d264 r9 7ea6d274 sl 00000000 fp 83c80e70
ip 00000001 sp 7a806d00 lr 75e63a97 pc 75e63a9c cpsr 68030030
d0 3f8000003f800000 d1 3e80000000000001
d2 42a20000430c8000 d3 0000005142a30000
d4 0000008cfffffffb d5 0000005142a20000
d6 0000000700000000 d7 000000013f800000
d8 0000000000000000 d9 0000000000000000
d10 0000000000000000 d11 0000000000000000
d12 0000000000000000 d13 0000000000000000
d14 0000000000000000 d15 0000000000000000
d16 4016800000000000 d17 0000000000000000
d18 402e000000000000 d19 0000000000000000
d20 3fd8000000000000 d21 0000000000000000
d22 0000000000000000 d23 0000000000000000
d24 402e000000000000 d25 0000000000000000
d26 3fd8000000000000 d27 0000000000000000
d28 4016800000000000 d29 0000000000000000
d30 09800261096d825c d31 09a4c26a09924265
scr 88000010
backtrace:
#00 pc 00b53a9c /system/lib/libwebviewchromium.so
#01 pc 001dbc1b /system/lib/libwebviewchromium.so
#02 pc 001dbe67 /system/lib/libwebviewchromium.so
#03 pc 001da09f /system/lib/libwebviewchromium.so
#04 pc 0000d280 /system/lib/libc.so (__thread_entry+72)
#05 pc 0000d418 /system/lib/libc.so (pthread_create+240)
code around pc:
75e63a7c f7fd4628 a807ff92 ff8ff7fd 0008f104
75e63a8c db9ef691 f6854630 9806dca4 68024639
75e63a9c 47986813 f6714630 9806d843 aa092101
75e63aac 46497241 46289009 ff54f7ff 46289a08
75e63abc a020f8cd f7fd9207 9b07ff70 f104bb23
75e63acc a9060060 fd34f7fe f7fda807 a806ff66
75e63adc da61f671 f855e789 93093b04 1e50695a
75e63aec b9186158 a9094640 fcf4f7ff 68819807
75e63afc d1f0428d f691e7e3 a805db63 db92f649
75e63b0c f691e004 e770db23 e7ef685d e8bdb00b
75e63b1c b5708ff0 4604b09e 460da810 d801f67f
75e63b2c f67ea817 2300dffe a8104629 93099308
75e63b3c f7ff930a 1d20fc83 f6709003 6e25dff1
75e63b4c f855e01f aa063b04 a910a80c f7ff9306
75e63b5c 9e0cff01 900c2000 9607a80c ff1df7fd
75e63b6c 2a009a07 809df040 f7fda807 e008ff16
code around lr:
75e63a74 462b4649 fefaf7fe f7fd4628 a807ff92
75e63a84 ff8ff7fd 0008f104 db9ef691 f6854630
75e63a94 9806dca4 68024639 47986813 f6714630
75e63aa4 9806d843 aa092101 46497241 46289009
75e63ab4 ff54f7ff 46289a08 a020f8cd f7fd9207
75e63ac4 9b07ff70 f104bb23 a9060060 fd34f7fe
75e63ad4 f7fda807 a806ff66 da61f671 f855e789
75e63ae4 93093b04 1e50695a b9186158 a9094640
75e63af4 fcf4f7ff 68819807 d1f0428d f691e7e3
75e63b04 a805db63 db92f649 f691e004 e770db23
75e63b14 e7ef685d e8bdb00b b5708ff0 4604b09e
75e63b24 460da810 d801f67f f67ea817 2300dffe
75e63b34 a8104629 93099308 f7ff930a 1d20fc83
75e63b44 f6709003 6e25dff1 f855e01f aa063b04
75e63b54 a910a80c f7ff9306 9e0cff01 900c2000
75e63b64 9607a80c ff1df7fd 2a009a07 809df040
I could only created the situation on genymotion emulator(Samsung Galaxy S4) when I tried to play mp4 video:
06-25 08:31:19.647: I/chromium(2652): [INFO:async_pixel_transfer_manager_android.cc(56)] Async pixel transfers not supported
06-25 08:31:19.715: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:19.751: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:19.779: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:19.803: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:19.827: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:19.851: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:19.871: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:19.919: E/chromium(2652): [ERROR:gles2_cmd_decoder_autogen.h(69)] [GroupMarkerNotSet(crbug.com/242999)!:C0EBA4B9]GL ERROR :GL_INVALID_ENUM : glBindTexture: target was GL_TEXTURE_EXTERNAL_OES
06-25 08:31:19.919: E/chromium(2652): [ERROR:gles2_cmd_decoder_autogen.h(3142)] [GroupMarkerNotSet(crbug.com/242999)!:C0EBA4B9]GL ERROR :GL_INVALID_ENUM : glProduceTextureCHROMIUM: target was GL_TEXTURE_EXTERNAL_OES
06-25 08:31:19.919: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:19.991: I/qtaguid(191): Tagging socket 37 with tag 3f500000000(1013) for uid 10059 failed errno=-13
06-25 08:31:20.167: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:20.247: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:20.323: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:20.371: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:20.435: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:20.491: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:20.895: V/FFmpegExtractor(191): SniffFFMPEG
06-25 08:31:20.895: I/FFmpegExtractor(191): android-source:0xb8b91830
06-25 08:31:20.895: D/FFMPEG(191): android source begin open
06-25 08:31:20.895: D/FFMPEG(191): android open, url: android-source:0xb8b91830
06-25 08:31:20.895: D/FFMPEG(191): ffmpeg open android data source success, source ptr: 0xb8b91830
06-25 08:31:20.895: D/FFMPEG(191): android source open success
06-25 08:31:21.563: I/NuCachedSource2(191): new range: offset= 3406048
06-25 08:31:21.567: I/qtaguid(191): Tagging socket 39 with tag 3f500000000(1013) for uid 10059 failed errno=-13
06-25 08:31:21.579: I/qtaguid(191): Untagging socket 37 failed errno=-13
06-25 08:31:24.979: I/NuCachedSource2(191): ERROR_END_OF_STREAM
06-25 08:31:25.031: I/NuCachedSource2(191): new range: offset= 0
06-25 08:31:25.079: I/ChromiumHTTPDataSource(191): Reconnecting...
06-25 08:31:25.231: I/NuCachedSource2(191): retrying a previously failed read succeeded.
06-25 08:31:25.271: I/FFMPEG(191): Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'android-source:0xb8b91830':
06-25 08:31:25.275: I/FFMPEG(191): Metadata:
06-25 08:31:25.275: I/FFMPEG(191): major_brand : mp42
06-25 08:31:25.275: I/FFMPEG(191): minor_version : 1
06-25 08:31:25.275: I/FFMPEG(191): compatible_brands: mp42avc1
06-25 08:31:25.275: I/FFMPEG(191): creation_time : 2014-06-24 11:20:49
06-25 08:31:25.275: I/FFMPEG(191): Duration: 00:01:14.48, start: 0.000000, bitrate: 397 kb/s
06-25 08:31:25.275: I/FFMPEG(191): Stream #0:0(eng): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p(tv, smpte170m), 640x360, 334 kb/s, 25 fps, 25 tbr, 2500 tbn, 5k tbc (default)
06-25 08:31:25.275: I/FFMPEG(191): Metadata:
06-25 08:31:25.275: I/FFMPEG(191): creation_time : 2014-06-24 11:20:50
06-25 08:31:25.275: I/FFMPEG(191): handler_name : Apple Video Media Handler
06-25 08:31:25.275: I/FFMPEG(191): Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 44100 Hz, mono, fltp, 59 kb/s (default)
06-25 08:31:25.275: I/FFMPEG(191): Metadata:
06-25 08:31:25.275: I/FFMPEG(191): creation_time : 2014-06-24 11:20:50
06-25 08:31:25.275: I/FFMPEG(191): handler_name : Apple Sound Media Handler
06-25 08:31:25.275: I/FFmpegExtractor(191): FFmpegExtrator, url: android-source:0xb8b91830, format_name: mov,mp4,m4a,3gp,3g2,mj2, format_long_name: QuickTime / MOV
06-25 08:31:25.275: I/FFmpegExtractor(191): list the formats suppoted by ffmpeg:
06-25 08:31:25.275: I/FFmpegExtractor(191): ========================================
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[00]: mpeg
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[01]: mpegts
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[02]: mov,mp4,m4a,3gp,3g2,mj2
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[03]: matroska,webm
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[04]: asf
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[05]: rm
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[06]: flv
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[07]: swf
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[08]: avi
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[09]: ape
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[10]: dts
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[11]: flac
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[12]: ac3
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[13]: wav
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[14]: ogg
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[15]: vc1
06-25 08:31:25.275: V/FFmpegExtractor(191): format_names[16]: hevc
06-25 08:31:25.275: I/FFmpegExtractor(191): ========================================
06-25 08:31:25.275: V/FFmpegExtractor(191): major_brand tag is:mp42
06-25 08:31:25.275: D/FFmpegExtractor(191): suppoted codec(h264) by official Stagefright
06-25 08:31:25.275: D/FFmpegExtractor(191): suppoted codec(aac) by official Stagefright
06-25 08:31:25.275: D/FFMPEG(191): android source close
06-25 08:31:25.275: I/FFmpegExtractor(191): sniff through BetterSniffFFMPEG success
06-25 08:31:25.275: D/FFmpegExtractor(191): ffmpeg detected media content as 'video/mp4' with confidence 0.08
06-25 08:31:25.275: I/FFmpegExtractor(191): support container: video/mp4, but it is caching data source, Don't use ffmpegextractor
06-25 08:31:26.211: I/NuCachedSource2(191): new range: offset= 3406048
06-25 08:31:26.211: I/qtaguid(191): Tagging socket 37 with tag 3f500000000(1013) for uid 10059 failed errno=-13
06-25 08:31:26.227: I/qtaguid(191): Untagging socket 39 failed errno=-13
06-25 08:31:26.951: I/NuCachedSource2(191): ERROR_END_OF_STREAM
06-25 08:31:26.987: I/MediaFocusControl(577): AudioFocus requestAudioFocus() from android.media.AudioManager#52b19560com.android.org.chromium.media.MediaPlayerListener#52824660
06-25 08:31:26.987: D/MediaPlayer(2652): Couldn't open file on client side, trying server side
06-25 08:31:26.991: I/AwesomePlayer(191): setDataSource_l(URL suppressed)
06-25 08:31:27.039: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:27.107: E/eglCodecCommon(2652): **** ERROR unknown type 0x0 (glSizeof,73)
06-25 08:31:27.191: A/libc(2652): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 2652 (isefe.gazeteler)
06-25 08:31:27.295: I/DEBUG(106): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
06-25 08:31:27.295: I/DEBUG(106): Build fingerprint: 'generic/vbox86p/vbox86p:4.4.2/KOT49H/eng.buildbot.20140524.041238:userdebug/test-keys'
06-25 08:31:27.295: I/DEBUG(106): Revision: '0'
06-25 08:31:27.295: I/DEBUG(106): pid: 2652, tid: 2652, name: isefe.gazeteler >>> com.barisefe.gazeteler <<<
06-25 08:31:27.295: I/DEBUG(106): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
06-25 08:31:27.519: I/DEBUG(106): backtrace:
06-25 08:31:27.519: I/DEBUG(106): #00 pc 011cc329 /system/lib/libwebviewchromium.so (cc::GLRenderer::DrawStreamVideoQuad(cc::DirectRenderer::DrawingFrame const*, cc::StreamVideoDrawQuad const*)+111)
06-25 08:31:27.519: I/DEBUG(106): stack:
06-25 08:31:27.519: I/DEBUG(106): bf8bfd18 00000438
06-25 08:31:27.519: I/DEBUG(106): bf8bfd1c 0000025e
06-25 08:31:27.519: I/DEBUG(106): bf8bfd20 43858000
06-25 08:31:27.519: I/DEBUG(106): bf8bfd24 b97ba3b0 [heap]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd28 b97ba3c0 [heap]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd2c 984aa285 /system/lib/libwebviewchromium.so (cc::GLRenderer::SetBlendEnabled(bool)+47)
06-25 08:31:27.519: I/DEBUG(106): bf8bfd30 b970d8a8 [heap]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd34 00000be2
06-25 08:31:27.519: I/DEBUG(106): bf8bfd38 984ac03d /system/lib/libwebviewchromium.so (cc::GLRenderer::GetVideoStreamTextureProgram(cc::TexCoordPrecision)+9)
06-25 08:31:27.519: I/DEBUG(106): bf8bfd3c 98d9eeb8 /system/lib/libwebviewchromium.so
06-25 08:31:27.519: I/DEBUG(106): bf8bfd40 b934d998 [heap]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd44 b97ba398 [heap]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd48 00000001
06-25 08:31:27.519: I/DEBUG(106): bf8bfd4c 984ac325 /system/lib/libwebviewchromium.so (cc::GLRenderer::DrawStreamVideoQuad(cc::DirectRenderer::DrawingFrame const*, cc::StreamVideoDrawQuad const*)+107)
06-25 08:31:27.519: I/DEBUG(106): bf8bfd50 b934d998 [heap]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd54 00000001
06-25 08:31:27.519: I/DEBUG(106): #00 bf8bfd58 000000ca
06-25 08:31:27.519: I/DEBUG(106): bf8bfd5c bf8bfd80 [stack]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd60 3f800000
06-25 08:31:27.519: I/DEBUG(106): bf8bfd64 00000002
06-25 08:31:27.519: I/DEBUG(106): bf8bfd68 bf8bfd90 [stack]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd6c b934d998 [heap]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd70 00000000
06-25 08:31:27.519: I/DEBUG(106): bf8bfd74 0000010b
06-25 08:31:27.519: I/DEBUG(106): bf8bfd78 00000438
06-25 08:31:27.519: I/DEBUG(106): bf8bfd7c 984b4008 /system/lib/libwebviewchromium.so (cc::GLRenderer::DoDrawQuad(cc::DirectRenderer::DrawingFrame*, cc::DrawQuad const*)+286)
06-25 08:31:27.519: I/DEBUG(106): bf8bfd80 00000168
06-25 08:31:27.519: I/DEBUG(106): bf8bfd84 000000ca
06-25 08:31:27.519: I/DEBUG(106): bf8bfd88 44870000
06-25 08:31:27.519: I/DEBUG(106): bf8bfd8c 44178000
06-25 08:31:27.519: I/DEBUG(106): bf8bfd90 b934d998 [heap]
06-25 08:31:27.519: I/DEBUG(106): bf8bfd94 bf8bfea8 [stack]
06-25 08:31:27.675: I/BootReceiver(577): Copying /data/tombstones/tombstone_00 to DropBox (SYSTEM_TOMBSTONE)
06-25 08:31:27.695: D/dalvikvm(577): GC_FOR_ALLOC freed 1712K, 21% free 14837K/18732K, paused 20ms, total 20ms
06-25 08:31:27.703: W/ActivityManager(577): Force finishing activity com.barisefe.gazeteler/.NewsBrowserActivity
06-25 08:31:27.723: W/MediaFocusControl(577): AudioFocus audio focus client died
06-25 08:31:27.723: I/MediaFocusControl(577): AudioFocus removeFocusStackEntry(): removing entry for android.os.BinderProxy#529ab19c
06-25 08:31:27.723: I/ActivityManager(577): Process com.barisefe.gazeteler (pid 2652) has died.
06-25 08:31:27.727: I/AwesomePlayer(191): Prepare cancelled while waiting for initial cache fill.
06-25 08:31:27.727: W/MediaPlayerService(191): native_window_api_disconnect returned an error: Broken pipe (-32)
06-25 08:31:27.727: W/InputDispatcher(577): channel '52a12384 com.barisefe.gazeteler/com.barisefe.gazeteler.MainActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x9
06-25 08:31:27.727: E/InputDispatcher(577): channel '52a12384 com.barisefe.gazeteler/com.barisefe.gazeteler.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
06-25 08:31:27.731: W/InputDispatcher(577): Attempted to unregister already unregistered input channel '52a12384 com.barisefe.gazeteler/com.barisefe.gazeteler.MainActivity (server)'
06-25 08:31:27.731: I/WindowState(577): WIN DEATH: Window{52a12384 u0 com.barisefe.gazeteler/com.barisefe.gazeteler.MainActivity}
06-25 08:31:27.735: I/WindowState(577): WIN DEATH: Window{5295de8c u0 com.barisefe.gazeteler/com.barisefe.gazeteler.NewsBrowserActivity}
06-25 08:31:27.743: D/dalvikvm(2749): Late-enabling CheckJNI
06-25 08:31:27.755: I/ActivityManager(577): Start proc com.barisefe.gazeteler for activity com.barisefe.gazeteler/.MainActivity: pid=2749 uid=10059 gids={50059, 3003}
06-25 08:31:27.827: I/qtaguid(191): Untagging socket 37 failed errno=-13
06-25 08:31:27.843: D/dalvikvm(2749): GC_CONCURRENT freed 58K, 4% free 3497K/3636K, paused 2ms+0ms, total 12ms
06-25 08:31:27.879: D/dalvikvm(2749): GC_FOR_ALLOC freed 9K, 4% free 3676K/3796K, paused 3ms, total 3ms
06-25 08:31:27.887: I/dalvikvm-heap(2749): Grow heap (frag case) to 8.660MB for 5241612-byte allocation
06-25 08:31:27.895: D/dalvikvm(2749): GC_FOR_ALLOC freed <1K, 2% free 8795K/8916K, paused 9ms, total 10ms
06-25 08:31:27.899: D/dalvikvm(2749): GC_CONCURRENT freed 0K, 2% free 8795K/8916K, paused 2ms+1ms, total 4ms
06-25 08:31:27.967: W/GooglePlayServicesUtil(2749): Google Play services is missing.
06-25 08:31:27.975: D/dalvikvm(2749): DexOpt: --- BEGIN 'ads695412881.jar' (bootstrap=0) ---
06-25 08:31:27.975: D/Zygote(190): Process 2652 terminated by signal (11)
06-25 08:31:27.979: W/linker(2763): libdvm.so has text relocations. This is wasting memory and is a security risk. Please fix.
06-25 08:31:27.995: D/dalvikvm(2763): DexOpt: load 2ms, verify+opt 1ms, 158252 bytes
06-25 08:31:28.003: D/dalvikvm(2749): DexOpt: --- END 'ads695412881.jar' (success) ---
06-25 08:31:28.003: D/dalvikvm(2749): DEX prep '/data/data/com.barisefe.gazeteler/cache/ads695412881.jar': unzip in 0ms, rewrite 26ms
06-25 08:31:28.007: I/Ads(2749): Use AdRequest.Builder.addTestDevice("82E22535BB949544CBEEF894029F0CE9") to get test ads on this device.
06-25 08:31:28.011: I/Ads(2749): Starting ad request.
06-25 08:31:28.015: V/WebViewChromium(2749): Binding Chromium to the background looper Looper (main, tid 1) {52828044}
06-25 08:31:28.015: I/chromium(2749): [INFO:library_loader_hooks.cc(112)] Chromium logging enabled: level = 0, default verbosity = 0
06-25 08:31:28.019: I/BrowserProcessMain(2749): Initializing chromium process, renderers=0
06-25 08:31:28.031: D/libEGL(2749): loaded /system/lib/egl/libEGL_genymotion.so
06-25 08:31:28.031: D/(2749): HostConnection::get() New Host Connection established 0xb9301bc0, tid 2749
06-25 08:31:28.031: W/chromium(2749): [WARNING:proxy_service.cc(888)] PAC support disabled because there is no system implementation
06-25 08:31:28.047: D/libEGL(2749): loaded /system/lib/egl/libGLESv1_CM_genymotion.so
06-25 08:31:28.047: D/libEGL(2749): loaded /system/lib/egl/libGLESv2_genymotion.so
06-25 08:31:28.099: D/dalvikvm(2749): GC_FOR_ALLOC freed 229K, 4% free 9191K/9500K, paused 5ms, total 5ms
06-25 08:31:28.103: I/dalvikvm-heap(2749): Grow heap (frag case) to 11.466MB for 2536932-byte allocation
06-25 08:31:28.107: D/dalvikvm(2749): GC_CONCURRENT freed <1K, 3% free 11668K/11980K, paused 5ms+0ms, total 7ms
06-25 08:31:28.263: W/EGL_genymotion(2749): eglSurfaceAttrib not implemented
06-25 08:31:28.267: E/OpenGLRenderer(2749): Getting MAX_TEXTURE_SIZE from GradienCache
06-25 08:31:28.267: E/OpenGLRenderer(2749): MAX_TEXTURE_SIZE: 8192
06-25 08:31:28.271: E/OpenGLRenderer(2749): Getting MAX_TEXTURE_SIZE from Caches::initConstraints()
06-25 08:31:28.271: E/OpenGLRenderer(2749): MAX_TEXTURE_SIZE: 8192
06-25 08:31:28.271: D/OpenGLRenderer(2749): Enabling debug mode 0
06-25 08:31:32.755: I/Choreographer(2749): Skipped 267 frames! The application may be doing too much work on its main thread.
06-25 08:31:32.791: W/WindowManager(577): Rebuild removed 3 windows but added 2
06-25 08:31:32.791: W/WindowManager(577): java.lang.RuntimeException: here
06-25 08:31:32.791: W/WindowManager(577): at com.android.server.wm.WindowManagerService.rebuildAppWindowListLocked(WindowManagerService.java:8011)
06-25 08:31:32.791: W/WindowManager(577): at com.android.server.wm.WindowManagerService.rebuildAppWindowListLocked(WindowManagerService.java:7947)
06-25 08:31:32.791: W/WindowManager(577): at com.android.server.wm.WindowManagerService.handleAnimatingStoppedAndTransitionLocked(WindowManagerService.java:8691)
06-25 08:31:32.791: W/WindowManager(577): at com.android.server.wm.WindowManagerService.performLayoutAndPlaceSurfacesLockedInner(WindowManagerService.java:9205)
06-25 08:31:32.791: W/WindowManager(577): at com.android.server.wm.WindowManagerService.performLayoutAndPlaceSurfacesLockedLoop(WindowManagerService.java:8163)
06-25 08:31:32.791: W/WindowManager(577): at com.android.server.wm.WindowManagerService.performLayoutAndPlaceSurfacesLocked(WindowManagerService.java:8105)
06-25 08:31:32.791: W/WindowManager(577): at com.android.server.wm.WindowManagerService.access$300(WindowManagerService.java:157)
06-25 08:31:32.791: W/WindowManager(577): at com.android.server.wm.WindowManagerService$H.handleMessage(WindowManagerService.java:7139)
06-25 08:31:32.791: W/WindowManager(577): at android.os.Handler.dispatchMessage(Handler.java:102)
06-25 08:31:32.791: W/WindowManager(577): at android.os.Looper.loop(Looper.java:136)
06-25 08:31:32.791: W/WindowManager(577): at android.os.HandlerThread.run(HandlerThread.java:61)
06-25 08:31:32.791: W/WindowManager(577): This window was lost: Window{5295de8c u0 com.barisefe.gazeteler/com.barisefe.gazeteler.NewsBrowserActivity}
06-25 08:31:32.791: W/WindowManager(577): mDisplayId=0 mSession=Session{52b692b4 2652:u0a10059} mClient=android.os.BinderProxy#529978b4
06-25 08:31:32.791: W/WindowManager(577): mOwnerUid=10059 mShowToOwnerOnly=true package=com.barisefe.gazeteler appop=NONE
06-25 08:31:32.791: W/WindowManager(577): mAttrs=WM.LayoutParams{(0,0)(fillxfill) sim=#10 ty=1 fl=#1810180 pfl=0x8 wanim=0x10302a1}
06-25 08:31:32.791: W/WindowManager(577): Requested w=1080 h=1776 mLayoutSeq=520
06-25 08:31:32.791: W/WindowManager(577): mBaseLayer=21000 mSubLayer=0 mAnimLayer=21005+0=21005 mLastLayer=21015
06-25 08:31:32.791: W/WindowManager(577): mToken=AppWindowToken{5299aeb4 token=Token{5292a720 ActivityRecord{5298fec8 u0 com.barisefe.gazeteler/.NewsBrowserActivity t7}}}
06-25 08:31:32.791: W/WindowManager(577): mRootToken=AppWindowToken{5299aeb4 token=Token{5292a720 ActivityRecord{5298fec8 u0 com.barisefe.gazeteler/.NewsBrowserActivity t7}}}
06-25 08:31:32.791: W/WindowManager(577): mAppToken=AppWindowToken{5299aeb4 token=Token{5292a720 ActivityRecord{5298fec8 u0 com.barisefe.gazeteler/.NewsBrowserActivity t7}}}
06-25 08:31:32.791: W/WindowManager(577): mViewVisibility=0x0 mHaveFrame=true mObscured=false
06-25 08:31:32.791: W/WindowManager(577): mSeq=0 mSystemUiVisibility=0x0
06-25 08:31:32.791: W/WindowManager(577): mGivenContentInsets=[0,0][0,0] mGivenVisibleInsets=[0,0][0,0]
06-25 08:31:32.791: W/WindowManager(577): mConfiguration={1.0 ?mcc?mnc en_US ldltr sw360dp w360dp h567dp 480dpi nrml port finger qwerty/v/v dpad/v s.5}
06-25 08:31:32.791: W/WindowManager(577): mHasSurface=true mShownFrame=[0.0,0.0][1080.0,1776.0] isReadyForDisplay()=false
06-25 08:31:32.791: W/WindowManager(577): mFrame=[0,0][1080,1776] last=[0,0][1080,1776]
06-25 08:31:32.791: W/WindowManager(577): mSystemDecorRect=[0,75][1080,1776] last=[0,75][1080,1776]
06-25 08:31:32.791: W/WindowManager(577): Frames: containing=[0,0][1080,1776] parent=[0,0][1080,1776]
06-25 08:31:32.791: W/WindowManager(577): display=[0,0][1080,1776] overscan=[0,0][1080,1920]
06-25 08:31:32.791: W/WindowManager(577): content=[0,75][1080,1776] visible=[0,75][1080,1776]
06-25 08:31:32.791: W/WindowManager(577): decor=[0,75][1080,1776]
06-25 08:31:32.791: W/WindowManager(577): Cur insets: overscan=[0,0][0,0] content=[0,75][0,0] visible=[0,75][0,0]
06-25 08:31:32.791: W/WindowManager(577): Lst insets: overscan=[0,0][0,0] content=[0,75][0,0] visible=[0,75][0,0]
06-25 08:31:32.791: W/WindowManager(577): WindowStateAnimator{52b684d0 com.xxx.yyy/com.xxx.yyy.HedeBrowserActivity}:
06-25 08:31:32.791: W/WindowManager(577): mSurface=Surface(name=com.xxx.yyy/com.xxx.yyy.HedeBrowserActivity)
06-25 08:31:32.791: W/WindowManager(577): mDrawState=HAS_DRAWN mLastHidden=true
06-25 08:31:32.791: W/WindowManager(577): Surface: shown=false layer=21015 alpha=1.0 rect=(0.0,0.0) 1080.0 x 1776.0
06-25 08:31:32.791: W/WindowManager(577): mGlobalScale=1.0 mDsDx=1.0 mDtDx=0.0 mDsDy=0.0 mDtDy=1.0
06-25 08:31:32.791: W/WindowManager(577): mExiting=false mRemoveOnExit=false mDestroying=true mRemoved=false
06-25 08:31:32.791: W/WindowManager(577): Current app token list:
06-25 08:31:32.791: V/WindowManager(577): Display 0
06-25 08:31:32.791: V/WindowManager(577): #1: Token{52a0cb88 ActivityRecord{52a0cad8 u0 com.xxx.yyy/.MainActivity t7}}
06-25 08:31:32.791: V/WindowManager(577): #0: Token{529b44ec ActivityRecord{52991f2c u0 com.android.launcher/com.android.launcher2.Launcher t1}}
06-25 08:31:32.791: W/WindowManager(577): Final window list:
06-25 08:31:32.791: V/WindowManager(577): #0: Window{529c3590 u0 SearchPanel}
06-25 08:31:32.791: V/WindowManager(577): #1: Window{52990efc u0 NavigationBar}
06-25 08:31:32.791: V/WindowManager(577): #2: Window{52980744 u0 StatusBar}
06-25 08:31:32.791: V/WindowManager(577): #3: Window{529cf5d8 u0 Keyguard}
06-25 08:31:32.791: V/WindowManager(577): #4: Window{5290d2a8 u0 KeyguardScrim}
06-25 08:31:32.791: V/WindowManager(577): #5: Window{5296d0cc u0 Application Error: com.xxx.yyy}
06-25 08:31:32.791: V/WindowManager(577): #6: Window{529a7b38 u0 com.xxx.yyy/com.xxx.yyy.MainActivity}
06-25 08:31:32.791: V/WindowManager(577): #7: Window{52964704 u0 com.android.launcher/com.android.launcher2.Launcher}
06-25 08:31:32.791: V/WindowManager(577): #8: Window{52919a38 u0 com.android.systemui.ImageWallpaper}
06-25 08:31:32.803: I/ActivityManager(577): Displayed com.xxx.yyy/.MainActivity: +5s72ms
06-25 08:31:32.939: I/chromium(2749): [INFO:simple_index_file.cc(397)] Simple Cache Index is being restored from disk.
06-25 08:31:32.943: I/Ads(2749): JS: Document was loaded from Application Cache with manifest http://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40.appcache (http://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40.html:0)
06-25 08:31:32.943: I/chromium(2749): [INFO:CONSOLE(0)] "Document was loaded from Application Cache with manifest http://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40.appcache", source: http://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40.html (0)
06-25 08:31:32.943: I/Ads(2749): JS: Application Cache Checking event (http://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40.html:0)
06-25 08:31:32.943: I/chromium(2749): [INFO:CONSOLE(0)] "Application Cache Checking event", source: http://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40.html (0)
06-25 08:31:33.143: I/Ads(2749): JS: Application Cache NoUpdate event (http://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40.html:0)
06-25 08:31:33.143: I/chromium(2749): [INFO:CONSOLE(0)] "Application Cache NoUpdate event", source: http://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40.html (0)
06-25 08:31:33.199: W/ContextImpl(2749): Implicit intents with startService are not safe: Intent { act=com.google.android.gms.analytics.service.START (has extras) } android.content.ContextWrapper.bindService:517 com.google.analytics.tracking.android.AnalyticsGmsCoreClient.connect:82 com.google.analytics.tracking.android.GAServiceProxy.connectToService:330
06-25 08:31:33.199: W/GAV3(2749): Thread[GAThread,5,main]: Service unavailable (code=1), will retry.
06-25 08:31:33.199: I/GAV3(2749): Thread[GAThread,5,main]: No campaign data found.
06-25 08:31:33.199: W/ActivityManager(577): Unable to start service Intent { act=com.google.android.gms.analytics.service.START (has extras) } U=0: not found
06-25 08:31:35.007: W/InputMethodManagerService(577): Got RemoteException sending setActive(false) notification to pid 2652 uid 10059
06-25 08:31:35.011: W/Binder(763): Caught a RuntimeException from the binder stub implementation.
06-25 08:31:35.011: W/Binder(763): java.lang.NullPointerException
06-25 08:31:35.011: W/Binder(763): at android.inputmethodservice.IInputMethodWrapper.setSessionEnabled(IInputMethodWrapper.java:280)
06-25 08:31:35.011: W/Binder(763): at com.android.internal.view.IInputMethod$Stub.onTransact(IInputMethod.java:129)
06-25 08:31:35.011: W/Binder(763): at android.os.Binder.execTransact(Binder.java:404)
06-25 08:31:35.011: W/Binder(763): at dalvik.system.NativeStart.run(Native Method)
I couldn't control the html coming from url so I need a solution that works on application site.
Thanks.
I'm experiencing a very similar issue with my app on Android 4.4.2.
I found this thread on Chromium support forum that identifies the issue I think is 100% relevant to me, and may be relevant to you.
https://code.google.com/p/chromium/issues/detail?id=334992
334992 - WebView on Nexus 10 with stock KitKat 4.4.2 crashes when scrolling up or down
Basically, when attempting to scroll (up-down, or left-right) on long content that has not fully loaded, you can reliably make the webview control crash.
It only happens on some devices (like it happens on Galaxy S5 for me, but not Galaxy Mega), but always seems to affect Android 4.4.2.
Check out that Chromium thread, and I hope that helps.
There's a chromium bug link on this line:
06-25 08:31:19.919: E/chromium(2652): [ERROR:gles2_cmd_decoder_autogen.h(69)] [GroupMarkerNotSet(crbug.com/242999)!:C0EBA4B9]GL ERROR :GL_INVALID_ENUM : glBindTexture: target was GL_TEXTURE_EXTERNAL_OES
which is pointing to : https://code.google.com/p/chromium/issues/detail?id=242999
Most probably, the GLES implementation on genymotion is missing OES_EGL_image_external*
*http://www.khronos.org/registry/gles/extensions/OES/OES_EGL_image_external.txt
This could be caused from a graphic memory bug, so you can try to disable some CSS using any -CSS webkit-transform like " -webkit-transform: rotate(0deg) scaleX(1) scaleY(1); ". (I saw this same bug on iOS if you load too many data in GPU memory).
I am using the android emulator with eclipse but the problem that is when i start the emulator it freeze and still display the word ANDROID with no change
can anyone help me to fix this problem ???
and this is the
logCat
10-21 14:55:18.623: I/DEBUG(33): debuggerd: Mar 27 2012 23:11:09
10-21 14:55:18.658: I/qemu-props(31): connected to 'boot-properties' qemud service.
10-21 14:55:18.713: I/qemu-props(31): receiving..
10-21 14:55:18.713: I/qemu-props(31): received: dalvik.vm.heapsize=32m
10-21 14:55:18.934: I/qemu-props(31): receiving..
10-21 14:55:18.934: I/qemu-props(31): received: qemu.sf.lcd_density=240
10-21 14:55:18.993: I/qemu-props(31): receiving..
10-21 14:55:18.993: I/qemu-props(31): received: qemu.hw.mainkeys=1
10-21 14:55:19.070: I/qemu-props(31): receiving..
10-21 14:55:19.070: I/qemu-props(31): received: qemu.sf.fake_camera=none
10-21 14:55:19.073: I/qemu-props(31): receiving..
10-21 14:55:19.073: I/qemu-props(31): exiting (4 properties set).
10-21 14:55:19.233: I/Vold(30): Vold 2.1 (the revenge) firing up
10-21 14:55:19.385: D/Vold(30): Volume sdcard state changing -1 (Initializing) -> 0 (No-Media)
10-21 14:55:19.475: I/Netd(32): Netd 1.0 starting
10-21 14:55:20.065: E/Netd(32): Unable to bind netlink socket: No such file or directory
10-21 14:55:20.065: E/Netd(32): Unable to open quota2 logging socket
10-21 14:55:24.582: D/AndroidRuntime(36): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
10-21 14:55:24.622: D/AndroidRuntime(36): CheckJNI is ON
10-21 14:55:25.436: I/SurfaceFlinger(35): SurfaceFlinger is starting
10-21 14:55:25.492: I/SurfaceFlinger(35): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
10-21 14:55:25.596: D/gralloc_goldfish(35): Emulator without GPU emulation detected.
10-21 14:55:25.602: I/gralloc(35): using (fd=10)
10-21 14:55:25.602: I/gralloc(35): id =
10-21 14:55:25.602: I/gralloc(35): xres = 480 px
10-21 14:55:25.602: I/gralloc(35): yres = 800 px
10-21 14:55:25.602: I/gralloc(35): xres_virtual = 480 px
10-21 14:55:25.602: I/gralloc(35): yres_virtual = 1600 px
10-21 14:55:25.602: I/gralloc(35): bpp = 16
10-21 14:55:25.602: I/gralloc(35): r = 11:5
10-21 14:55:25.602: I/gralloc(35): g = 5:6
10-21 14:55:25.602: I/gralloc(35): b = 0:5
10-21 14:55:25.602: I/gralloc(35): width = 74 mm (164.756760 dpi)
10-21 14:55:25.602: I/gralloc(35): height = 123 mm (165.203247 dpi)
10-21 14:55:25.602: I/gralloc(35): refresh rate = 260.42 Hz
10-21 14:55:25.673: D/libEGL(35): Emulator without GPU support detected. Fallback to software renderer.
10-21 14:55:25.692: D/libEGL(35): loaded /system/lib/egl/libGLES_android.so
10-21 14:55:25.826: I/SurfaceFlinger(35): EGL informations:
10-21 14:55:25.826: I/SurfaceFlinger(35): # of configs : 8
10-21 14:55:25.826: I/SurfaceFlinger(35): vendor : Android
10-21 14:55:25.826: I/SurfaceFlinger(35): version : 1.4 Android META-EGL
10-21 14:55:25.826: I/SurfaceFlinger(35): extensions: EGL_KHR_image_base EGL_ANDROID_image_native_buffer
10-21 14:55:25.826: I/SurfaceFlinger(35): Client API: OpenGL ES
10-21 14:55:25.826: I/SurfaceFlinger(35): EGLSurface: 5-6-5-0, config=0x0
10-21 14:55:25.826: I/SurfaceFlinger(35): OpenGL informations:
10-21 14:55:25.826: I/SurfaceFlinger(35): vendor : Android
10-21 14:55:25.826: I/SurfaceFlinger(35): renderer : Android PixelFlinger 1.4
10-21 14:55:25.826: I/SurfaceFlinger(35): version : OpenGL ES-CM 1.0
10-21 14:55:25.826: I/SurfaceFlinger(35): extensions: GL_OES_byte_coordinates GL_OES_fixed_point GL_OES_single_precision GL_OES_read_format GL_OES_compressed_paletted_texture GL_OES_draw_texture GL_OES_matrix_get GL_OES_query_matrix GL_OES_EGL_image GL_OES_compressed_ETC1_RGB8_texture GL_ARB_texture_compression GL_ARB_texture_non_power_of_two GL_ANDROID_user_clip_plane GL_ANDROID_vertex_buffer_object GL_ANDROID_generate_mipmap
10-21 14:55:25.826: I/SurfaceFlinger(35): GL_MAX_TEXTURE_SIZE = 4096
10-21 14:55:25.826: I/SurfaceFlinger(35): GL_MAX_VIEWPORT_DIMS = 4096 x 4096
10-21 14:55:25.826: I/SurfaceFlinger(35): flags = 00040000
10-21 14:55:25.852: W/SurfaceFlinger(35): hwcomposer module not found
10-21 14:55:27.292: D/libEGL(65): Emulator without GPU support detected. Fallback to software renderer.
10-21 14:55:27.362: D/libEGL(65): loaded /system/lib/egl/libGLES_android.so
10-21 14:55:27.587: D/gralloc_goldfish(65): Emulator without GPU emulation detected.
10-21 14:55:28.164: I/(37): ServiceManager: 0xf958
10-21 14:55:28.263: I/AudioFlinger(37): Loaded primary audio interface from LEGACY Audio HW HAL (audio)
10-21 14:55:28.263: I/AudioFlinger(37): Using 'LEGACY Audio HW HAL' (audio.primary) as the primary audio interface
10-21 14:55:28.263: D/AudioHardwareInterface(37): setMode(NORMAL)
10-21 14:55:28.447: I/CameraService(37): CameraService started (pid=37)
10-21 14:55:28.699: D/EmulatedCamera_QemuClient(37): Emulated camera list:
10-21 14:55:28.746: D/EmulatedCamera_FakeCamera(37): Initialize: Fake camera is facing none
10-21 14:55:28.793: V/EmulatedCamera_Factory(37): 1 cameras are being emulated. Fake camera ID is 0
10-21 14:55:28.838: I/ARMAssembler(65): generated scanline__00000077:03010102_00000A01_00000000 [ 9 ipp] (30 ins) at [0x409a51e8:0x409a5260] in 36130839 ns
10-21 14:55:28.873: I/ARMAssembler(65): generated scanline__00000077:03545402_00000A01_00000000 [ 31 ipp] (52 ins) at [0x409a5268:0x409a5338] in 6793919 ns
10-21 14:55:29.068: I/AudioFlinger(37): AudioFlinger's thread 0x10fe0 ready to run
10-21 14:55:29.073: W/AudioFlinger(37): Thread AudioOut_1 cannot connect to the power manager service
10-21 14:55:29.123: W/AudioFlinger(37): Thread AudioOut_1 cannot connect to the power manager service
10-21 14:55:29.243: I/AudioPolicyService(37): Loaded audio policy from LEGACY Audio Policy HAL (audio_policy)
10-21 14:55:47.112: I/SamplingProfilerIntegration(36): Profiling disabled.
10-21 14:55:48.342: I/Zygote(36): Preloading classes...
10-21 14:55:48.779: D/dalvikvm(36): GC_EXPLICIT freed 36K, 81% free 408K/2048K, paused 69ms+44ms
10-21 14:55:50.192: D/dalvikvm(36): GC_EXPLICIT freed 4K, 77% free 472K/2048K, paused 58ms+3ms
10-21 14:55:52.003: D/dalvikvm(36): GC_EXPLICIT freed 20K, 76% free 508K/2048K, paused 61ms+59ms
10-21 14:55:53.773: D/dalvikvm(36): GC_EXPLICIT freed 27K, 74% free 535K/2048K, paused 59ms+69ms
10-21 14:55:54.858: D/dalvikvm(36): GC_EXPLICIT freed 15K, 72% free 575K/2048K, paused 68ms+4ms
10-21 14:55:57.183: D/dalvikvm(36): GC_EXPLICIT freed 27K, 71% free 601K/2048K, paused 42ms+4ms
10-21 14:56:02.243: D/dalvikvm(36): GC_EXPLICIT freed 30K, 69% free 634K/2048K, paused 208ms+68ms
10-21 14:56:03.483: D/TextLayoutCache(36): Using debug level: 0 - Debug Enabled: 0
10-21 14:56:04.083: W/Zygote(36): Class not found for preloading: android.media.AudioManager$2
10-21 14:56:06.523: I/dalvikvm(36): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
10-21 14:56:06.573: D/MtpDeviceJNI(36): register_android_mtp_MtpDevice
10-21 14:56:06.693: I/dalvikvm(36): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
10-21 14:56:06.752: I/dalvikvm(36): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
10-21 14:56:06.764: W/MediaProfiles(36): could not find media config xml file
10-21 14:56:07.003: W/Zygote(36): Class not found for preloading: android.media.IRemoteControlClientDispatcher
10-21 14:56:07.052: W/Zygote(36): Class not found for preloading: android.media.IRemoteControlClientDispatcher$Stub
10-21 14:56:07.723: D/dalvikvm(36): GC_EXPLICIT freed 19K, 68% free 674K/2048K, paused 49ms+11ms
10-21 14:56:17.053: D/dalvikvm(36): GC_FOR_ALLOC freed 216K, 53% free 970K/2048K, paused 600ms
10-21 14:56:19.553: D/dalvikvm(36): GC_EXPLICIT freed 44K, 50% free 1025K/2048K, paused 59ms+7ms
10-21 14:56:22.693: D/dalvikvm(36): GC_EXPLICIT freed 27K, 49% free 1054K/2048K, paused 6ms+60ms
10-21 14:56:26.273: D/dalvikvm(36): GC_EXPLICIT freed 8K, 47% free 1102K/2048K, paused 8ms+60ms
10-21 14:56:28.338: D/dalvikvm(36): GC_EXPLICIT freed 23K, 43% free 1169K/2048K, paused 41ms+114ms
10-21 14:56:31.913: D/dalvikvm(36): GC_EXPLICIT freed 48K, 30% free 1447K/2048K, paused 44ms+93ms
10-21 14:56:32.263: W/Zygote(36): Class not found for preloading: android.text.TextDirectionHeuristics$CharCount
10-21 14:56:32.732: W/Zygote(36): Class not found for preloading: android.text.method.WordIterator$1
10-21 14:56:34.956: D/dalvikvm(36): GC_EXPLICIT freed 35K, 28% free 1482K/2048K, paused 68ms+63ms
10-21 14:56:37.202: D/dalvikvm(36): GC_EXPLICIT freed 32K, 27% free 1504K/2048K, paused 109ms+81ms
10-21 14:56:43.169: I/dalvikvm(36): threadid=1: recursive native library load attempt (/system/lib/libwebcore.so)
10-21 14:56:43.267: D/dalvikvm(36): No JNI_OnLoad found in /system/lib/libchromium_net.so 0x0, skipping init
10-21 14:56:46.233: D/dalvikvm(36): GC_EXPLICIT freed 26K, 25% free 1553K/2048K, paused 65ms+50ms
10-21 14:56:49.036: W/Zygote(36): Class not found for preloading: android.widget.EdgeGlow
10-21 14:56:52.633: D/dalvikvm(36): GC_EXPLICIT freed 25K, 23% free 1582K/2048K, paused 109ms+18ms
10-21 14:56:59.212: D/dalvikvm(36): GC_EXPLICIT freed 71K, 21% free 1627K/2048K, paused 94ms+21ms
10-21 14:56:59.982: E/PhonePolicy(36): Could not preload class for phone policy: com.android.internal.policy.impl.PhoneWindow$ContextMenuCallback
10-21 14:57:01.882: D/dalvikvm(36): GC_EXPLICIT freed 33K, 20% free 1649K/2048K, paused 63ms+215ms
10-21 14:57:04.853: D/dalvikvm(36): GC_EXPLICIT freed 28K, 19% free 1677K/2048K, paused 129ms+31ms
10-21 14:57:06.868: D/dalvikvm(36): GC_EXPLICIT freed 26K, 17% free 1708K/2048K, paused 10ms+50ms
10-21 14:57:10.253: D/dalvikvm(36): GC_EXPLICIT freed 32K, 16% free 1734K/2048K, paused 470ms+30ms
10-21 14:57:12.463: D/dalvikvm(36): GC_EXPLICIT freed 31K, 14% free 1762K/2048K, paused 68ms+64ms
10-21 14:57:14.973: D/dalvikvm(36): GC_EXPLICIT freed 71K, 12% free 1817K/2048K, paused 67ms+112ms
10-21 14:57:17.073: D/dalvikvm(36): GC_EXPLICIT freed 39K, 11% free 1833K/2048K, paused 79ms+45ms
10-21 14:58:06.766: I/System(36): Loaded time zone names for in 47518ms (47180ms in ICU)
10-21 14:58:43.909: I/System(36): Loaded time zone names for en_US in 37082ms (36678ms in ICU)
10-21 14:58:45.473: D/dalvikvm(36): GC_EXPLICIT freed 324K, 16% free 1950K/2307K, paused 58ms+162ms
10-21 14:58:47.273: D/dalvikvm(36): GC_EXPLICIT freed 15K, 13% free 2011K/2307K, paused 64ms+67ms
10-21 14:58:50.708: D/dalvikvm(36): GC_EXPLICIT freed 51K, 12% free 2043K/2307K, paused 67ms+69ms
10-21 14:58:53.003: D/dalvikvm(36): GC_EXPLICIT freed 28K, 11% free 2074K/2307K, paused 13ms+54ms
10-21 14:58:55.225: D/dalvikvm(36): GC_EXPLICIT freed 37K, 10% free 2091K/2307K, paused 52ms+174ms
10-21 14:58:57.722: D/dalvikvm(36): GC_EXPLICIT freed 32K, 9% free 2113K/2307K, paused 158ms+136ms
10-21 14:58:58.116: I/Zygote(36): ...preloaded 2297 classes in 189775ms.
10-21 14:58:59.318: D/dalvikvm(36): GC_EXPLICIT freed 23K, 9% free 2117K/2307K, paused 84ms+29ms
10-21 14:58:59.318: I/Zygote(36): Preloading resources...
10-21 14:58:59.982: W/Zygote(36): Preloaded drawable resource #0x10804d7 (res/drawable-hdpi/spinner_black_16.png) that varies with configuration!!
10-21 14:59:00.269: W/Zygote(36): Preloaded drawable resource #0x10804d8 (res/drawable-hdpi/spinner_black_20.png) that varies with configuration!!
10-21 14:59:00.544: W/Zygote(36): Preloaded drawable resource #0x10804d9 (res/drawable-hdpi/spinner_black_48.png) that varies with configuration!!
10-21 14:59:00.932: W/Zygote(36): Preloaded drawable resource #0x10804da (res/drawable-hdpi/spinner_black_76.png) that varies with configuration!!
10-21 14:59:02.246: D/dalvikvm(36): GC_EXPLICIT freed 4K, 8% free 2202K/2371K, paused 139ms+55ms
10-21 14:59:02.358: W/Zygote(36): Preloaded drawable resource #0x10804e8 (res/drawable-hdpi/spinner_white_16.png) that varies with configuration!!
10-21 14:59:02.595: W/Zygote(36): Preloaded drawable resource #0x10804e9 (res/drawable-hdpi/spinner_white_48.png) that varies with configuration!!
10-21 14:59:02.842: W/Zygote(36): Preloaded drawable resource #0x10804ea (res/drawable-hdpi/spinner_white_76.png) that varies with configuration!!
10-21 14:59:04.143: D/dalvikvm(36): GC_EXPLICIT freed 4K, 7% free 2270K/2435K, paused 102ms+64ms
10-21 14:59:04.483: W/Zygote(36): Preloaded drawable resource #0x1080096 (res/drawable-hdpi/toast_frame.9.png) that varies with configuration!!
10-21 14:59:04.673: W/Zygote(36): Preloaded drawable resource #0x10805d0 (res/drawable-hdpi/toast_frame_holo.9.png) that varies with configuration!!
10-21 14:59:06.137: D/dalvikvm(36): GC_EXPLICIT freed 2K, 7% free 2339K/2499K, paused 98ms+115ms
10-21 14:59:06.333: W/Zygote(36): Preloaded drawable resource #0x1080106 (res/drawable-hdpi/btn_check_on_selected.png) that varies with configuration!!
10-21 14:59:06.583: W/Zygote(36): Preloaded drawable resource #0x1080105 (res/drawable-hdpi/btn_check_on_pressed_holo_light.png) that varies with configuration!!
10-21 14:59:06.793: W/Zygote(36): Preloaded drawable resource #0x1080104 (res/drawable-hdpi/btn_check_on_pressed_holo_dark.png) that varies with configuration!!
10-21 14:59:07.053: W/Zygote(36): Preloaded drawable resource #0x1080103 (res/drawable-hdpi/btn_check_on_pressed.png) that varies with configuration!!
10-21 14:59:08.583: D/dalvikvm(36): GC_EXPLICIT freed 5K, 7% free 2391K/2563K, paused 89ms+116ms
10-21 14:59:08.755: W/Zygote(36): Preloaded drawable resource #0x1080102 (res/drawable-hdpi/btn_check_on_holo_light.png) that varies with configuration!!
10-21 14:59:09.013: W/Zygote(36): Preloaded drawable resource #0x1080101 (res/drawable-hdpi/btn_check_on_holo_dark.png) that varies with configuration!!
10-21 14:59:09.283: W/Zygote(36): Preloaded drawable resource #0x10800ff (res/drawable-hdpi/btn_check_on_focused_holo_light.png) that varies with configuration!!
10-21 14:59:09.373: W/Zygote(36): Preloaded drawable resource #0x10800fe (res/drawable-hdpi/btn_check_on_focused_holo_dark.png) that varies with configuration!!
10-21 14:59:09.533: W/Zygote(36): Preloaded drawable resource #0x10800fd (res/drawable-hdpi/btn_check_on_disabled_holo_light.png) that varies with configuration!!
10-21 14:59:11.163: D/dalvikvm(36): GC_EXPLICIT freed 6K, 8% free 2438K/2627K, paused 74ms+105ms
10-21 14:59:11.343: W/Zygote(36): Preloaded drawable resource #0x10800fc (res/drawable-hdpi/btn_check_on_disabled_holo_dark.png) that varies with configuration!!
10-21 14:59:11.565: W/Zygote(36): Preloaded drawable resource #0x10800fb (res/drawable-hdpi/btn_check_on_disabled_focused_holo_light.png) that varies with configuration!!
10-21 14:59:11.673: W/Zygote(36): Preloaded drawable resource #0x10800fa (res/drawable-hdpi/btn_check_on_disabled_focused_holo_dark.png) that varies with configuration!!
10-21 14:59:11.745: W/Zygote(36): Preloaded drawable resource #0x10800f6 (res/drawable-hdpi/btn_check_on_disable_focused.png) that varies with configuration!!
You can use Virtual Android Machine, VirtualBox for example, and connect it to Eclipse like this:
[path_to_adb.exe] connect [device_ip]
in my case, i do this commands to connect:
D:
cd android\sdk-d\platform-tools
adb.exe connect 192.168.56.101
To download "ready to use" .ova file, you can visit this page.
I recently installed (with Odin) the latest stock ROM for my SGS2 without wiping data.
After that I put a rooted kernel and started using.
I found out that:
- if I boot the phone, let it get to the lock screen (the first to appear after Samsung logo) and then turn off screen with power button, all goes fine
- if I don't turn screen off, the boot proccess goes wrong and all freeze; I can only force boot it again.
I took logcat of both boots and found these errors in the faulty one.
NB: I cut some parts of the SIGSEGV to remain within 30000 characters limit.
Can anybody help fix the problem?
Thank you!!!
E/UsimServiceTable: isActive for service 51 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 51 fails, max service is 80
E/UsimServiceTable: isActive for service 51 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 51 fails, max service is 80
E/UsimServiceTable: isActive for service 52 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 52 fails, max service is 80
E/UsimServiceTable: isActive for service 52 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 52 fails, max service is 80
E/UsimServiceTable: isActive for service 53 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 53 fails, max service is 80
E/UsimServiceTable: isActive for service 53 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 53 fails, max service is 80
E/UsimServiceTable: isActive for service 54 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 54 fails, max service is 80
E/UsimServiceTable: isActive for service 54 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 54 fails, max service is 80
E/UsimServiceTable: isActive for service 55 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 55 fails, max service is 80
E/UsimServiceTable: isActive for service 55 fails, max service is 40
E/UsimServiceTable: isSSTAvailable for service 55 fails, max service is 80
E/android.os.Debug: !#Dumpstate > dumpstate -k -t -z -d -o /data/log/dumpstate_sys_watchdog
E/Watchdog: WATCHDOG caused by com.android.server.am.ActivityManagerService
E/AndroidRuntime: Error reporting crash
E/AndroidRuntime: android.os.DeadObjectException
E/AndroidRuntime: at android.os.BinderProxy.transact(Native Method)
E/AndroidRuntime: at android.app.ActivityManagerProxy.handleApplicationCrash(ActivityManagerNative.java:3305)
E/AndroidRuntime: at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java:121)
E/AndroidRuntime: at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
E/AndroidRuntime: at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
E/AndroidRuntime: at dalvik.system.NativeStart.main(Native Method)
W/Sensors : sensorservice died [0x4c38d570]
E/AndroidRuntime: java.lang.SecurityException: Neither user 10012 nor current process has android.permission.ACCESS_COARSE_LOCATION.
E/AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1425)
E/AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1379)
E/AndroidRuntime: at com.android.internal.telephony.ITelephony$Stub$Proxy.getCellLocation(ITelephony.java:1261)
E/AndroidRuntime: at android.telephony.TelephonyManager.getCellLocation(TelephonyManager.java:267)
E/AndroidRuntime: at ekv.a(SourceFile:53)
E/AndroidRuntime: at com.google.android.location.os.real.SdkSpecific8.a(SourceFile:62)
E/AndroidRuntime: at ekl.handleMessage(SourceFile:187)
E/AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime: at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime: at eko.run(SourceFile:804)
E/AndroidRuntime: at java.lang.Thread.run(Thread.java:856)
E/BootAnimation: sequence and loop RBG type's are different. seqeunce:7,loop:6
E/BootAnimation: /sys/class/sec/led/led_pattern: open error, fd = -1
E/SECHWC_LOG: int hwc_device_open(const hw_module_t*, char const*, hw_device_t**)::window_set_pos is failed : Bad address
E/SECHWC_LOG: int destroyMem(s3c_mem_t*)::invalied fd(0) fail
E/SECHWC_LOG: int hwc_device_open(const hw_module_t*, char const*, hw_device_t**)::destroyMem() fail
E/SurfaceFlinger: composer device failed to initialize (Invalid argument)
D/SurfaceFlinger: About to give-up screen, flinger = 0x4193cd78
F/libc : Fatal signal 11 (SIGSEGV) at 0x00002900 (code=1), thread 4408 (SurfaceFlinger)
I/SurfaceFlinger: EventThread ready to run.
I/BootAnimation: ret=2, fps:12, interval:83333
E/BootAnimation: sequence and loop RBG type's are different. seqeunce:7,loop:6
I/BootAnimation: createSurface BGRA8888
I/ServiceManager: service 'nfc' died
I/ServiceManager: service 'iphonesubinfo' died
I/ServiceManager: service 'com.orange.authentication.simcard' died
I/ServiceManager: service 'isms' died
I/ServiceManager: service 'phoneext' died
I/ServiceManager: service 'phone' died
I/ServiceManager: service 'sip' died
I/ServiceManager: service 'simphonebook' died
V/AudioPolicyManagerBase: releaseOutput() 2
I/DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG : Build fingerprint: 'samsung/GT-I9100P/GT-I9100P:4.1.2/JZO54K/I9100PXXLSK:user/release-keys'
I/DEBUG : pid: 4403, tid: 4408, name: SurfaceFlinger >>> /system/bin/surfaceflinger <<<
I/DEBUG : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00002900
D/dalvikvm: Note: class Landroid/app/ActivityManagerNative; has 155 unimplemented (abstract) methods
I/DEBUG : r0 41953580 r1 00000001 r2 419442e8 r3 00000000
I/DEBUG : r4 419531c0 r5 00002901 r6 00000001 r7 4193d730
I/DEBUG : r8 4105ecac r9 00000001 sl 4193d72c fp 0000000d
I/DEBUG : ip 401d0168 sp 4105ec60 lr 400c33bf pc 00002900 cpsr 20000030
I/DEBUG : d0 3f00000000000000 d1 00000000437f0000
I/DEBUG : d2 437f00003f000000 d3 437f8000000000ff
I/DEBUG : d4 c0000000437f0000 d5 3f800000bf800000
I/DEBUG : d6 3f8000003f800000 d7 00ffffff3f800000
I/DEBUG : d8 0000000000000000 d9 0000000000000000
I/DEBUG : d10 0000000000000000 d11 0000000000000000
I/DEBUG : d12 0000000000000000 d13 0000000000000000
I/DEBUG : d14 0000000000000000 d15 0000000000000000
I/DEBUG : d16 7fffffffffffffff d17 7fffffffffffffff
I/DEBUG : d18 0000000000000000 d19 3fe0000000000000
I/DEBUG : d20 3fe000000000946f d21 0000000000000000
I/DEBUG : d22 0000000000000000 d23 0000000000000000
I/DEBUG : d24 0000000000000000 d25 0000000000000000
I/DEBUG : d26 0000000000000000 d27 0000000000000000
I/DEBUG : d28 0000000000000000 d29 0000000000000000
I/DEBUG : d30 0000000000000000 d31 0000000000000000
I/DEBUG : scr 60000010
I/DEBUG :
I/DEBUG : backtrace:
I/DEBUG : #00 pc 00002900 <unknown>
I/DEBUG : #01 pc 000203bd /system/lib/libsurfaceflinger.so (android::HWComposer::commit() const+14)
I/DEBUG : #02 pc 0001fd05 /system/lib/libsurfaceflinger.so (android::DisplayHardware::flip(android::Region const&) const+60)
I/DEBUG : #03 pc 00022f8f /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::onScreenReleased()+70)
I/DEBUG : #04 pc 00022fb9 /system/lib/libsurfaceflinger.so
I/DEBUG : #05 pc 00020d4b /system/lib/libsurfaceflinger.so (android::MessageBase::handleMessage(android::Message const&)+12)
I/DEBUG : #06 pc 000149e3 /system/lib/libutils.so (android::Looper::pollInner(int)+426)
I/DEBUG : #07 pc 00014b01 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+104)
I/DEBUG : #08 pc 000210d9 /system/lib/libsurfaceflinger.so (android::MessageQueue::waitMessage()+40)
I/DEBUG : #09 pc 00021991 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::threadLoop()+4)
I/DEBUG : #10 pc 0001104f /system/lib/libutils.so (android::Thread::_threadLoop(void*)+114)
I/DEBUG : #11 pc 00010bb5 /system/lib/libutils.so
I/DEBUG : #12 pc 00012e00 /system/lib/libc.so (__thread_entry+48)
I/DEBUG : #13 pc 00012558 /system/lib/libc.so (pthread_create+172)
I/DEBUG :
I/DEBUG : stack:
I/DEBUG : 4105ec20 41944370 [heap]
I/DEBUG : 4105ec24 410942d0 /system/lib/egl/libGLESv1_CM_mali.so (_gles_clear+1148)
I/DEBUG : 4105ec28 00000001
I/DEBUG : 4105ec2c 00000001
I/DEBUG : 4105ec30 00000001
I/DEBUG : 4105ec34 41943a10 [heap]
I/DEBUG : 4105ec38 0000ff00
I/DEBUG : 4105ec3c 00000000
I/DEBUG : 4105ec40 00000000
I/DEBUG : 4105ec44 00000000
I/DEBUG : 4105ec48 00000000
I/DEBUG : 4105ec4c ff000000
I/DEBUG : 4105ec50 00000000
I/DEBUG : 4105ec54 00000000
I/DEBUG : 4105ec58 df0027ad
I/DEBUG : 4105ec5c 00000000
I/DEBUG : #00 4105ec60 41953580 [heap]
I/DEBUG : ........ ........
I/DEBUG : #01 4105ec60 41953580 [heap]
I/DEBUG : 4105ec64 4193db00 [heap]
I/DEBUG : 4105ec68 419442e8 [heap]
I/DEBUG : 4105ec6c 400c2d09 /system/lib/libsurfaceflinger.so (android::DisplayHardware::flip(android::Region const&) const+64)
I/DEBUG : #02 4105ec70 4193db00 [heap]
I/DEBUG : 4105ec74 4105ecac
I/DEBUG : 4105ec78 00000007
I/DEBUG : 4105ec7c 40241d00 /system/lib/libui.so
I/DEBUG : 4105ec80 4193db00 [heap]
I/DEBUG : 4105ec84 4193cd78 [heap]
I/DEBUG : 4105ec88 400c3d3f /system/lib/libsurfaceflinger.so (android::MessageBase::handleMessage(android::Message const&))
I/DEBUG : 4105ec8c 4193d730 [heap]
I/DEBUG : 4105ec90 40193ebe /system/lib/libutils.so
I/DEBUG : 4105ec94 400c5f93 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::onScreenReleased()+74)
I/DEBUG :
I/DEBUG : memory near r0:
[.........................]
I/DEBUG :
I/DEBUG : memory map around fault addr 00002900:
I/DEBUG : (no map below)
I/DEBUG : (no map for address)
I/DEBUG : 4000e000-4000f000 /system/lib/libstdc++.so
I/SamplingProfilerIntegration: Profiling disabled.
I/Zygote : !#beginofpreloadClasses()
I/Zygote : Preloading classes...
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 0ms
I/Zygote : !#beginofpreloadResources()
D/dalvikvm: GC_EXPLICIT freed 40K, 80% free 528K/2560K, paused 0ms+0ms, total 3ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 2ms
D/dalvikvm: GC_EXPLICIT freed <1K, 80% free 527K/2560K, paused 10ms+0ms, total 13ms
E/installd: eof
E/installd: failed to read size
I/installd: closing connection
I/Zygote : Preloading resources...
I/Zygote : Number of total Classes to prelaod: 2309
I/Zygote : Classes to load for thread1 0~830
I/Zygote : Classes to load for thread2 831~2308
W/Zygote : Class not found for preloading: android.view.InputQueue$FinishedCallback
I/DEBUG : !#dumpstate -k -t -z -d -o /data/log/dumpstate_app_native -m 4403
I/dumpstate: begin
D/dalvikvm: GC_FOR_ALLOC freed 83K, 63% free 956K/2560K, paused 14ms, total 14ms
W/Zygote : Class not found for preloading: android.animation.ValueAnimator$2
W/Zygote : Class not found for preloading: android.animation.ValueAnimator$3
W/Zygote : Class not found for preloading: android.animation.ValueAnimator$4
W/Zygote : Class not found for preloading: android.animation.ValueAnimator$5
D/dalvikvm: GC_FOR_ALLOC freed 28K, 44% free 1439K/2560K, paused 14ms, total 14ms
D/dalvikvm: GC_FOR_ALLOC freed 74K, 27% free 1870K/2560K, paused 14ms, total 14ms
W/Zygote : Class not found for preloading: android.view.ViewRootImpl$3
V/BluetoothAudioGateway.cpp: classInitNative
V/BT HSHFP: classInitNative
D/dalvikvm: GC_FOR_ALLOC freed 40K, 10% free 2312K/2560K, paused 18ms, total 18ms
D/dalvikvm: GC_FOR_ALLOC freed 8K, 8% free 2361K/2560K, paused 15ms, total 15ms
D/dalvikvm: GC_FOR_ALLOC freed <1K, 7% free 2982K/3203K, paused 8ms, total 8ms
W/Zygote : Class not found for preloading: android.content.res.Resources$1
D/dalvikvm: GC_FOR_ALLOC freed 15K, 2% free 3659K/3715K, paused 15ms, total 15ms
D/dalvikvm: GC_FOR_ALLOC freed 6K, 2% free 4027K/4099K, paused 15ms, total 15ms
D/dalvikvm: GC_FOR_ALLOC freed 1K, 3% free 5049K/5187K, paused 5ms, total 6ms
I/dalvikvm: threadid=1: recursive native library load attempt (/system/lib/libwebcore.so)
D/dalvikvm: No JNI_OnLoad found in /system/lib/libchromium_net.so 0x0, skipping init
D/dalvikvm: GC_FOR_ALLOC freed 14K, 1% free 6325K/6339K, paused 15ms, total 15ms
D/dalvikvm: GC_FOR_ALLOC freed 30K, 2% free 7019K/7107K, paused 17ms, total 17ms
I/Zygote : ...preloaded 279 resources in 604ms.
I/Zygote : ...preloaded 31 resources in 7ms.
I/Zygote : !#End of preloadResources()
D/TextLayoutCache: Using debug level = 0 - Debug Enabled = 0
W/Zygote : Class not found for preloading: android.widget.EdgeGlow
W/Zygote : Class not found for preloading: android.database.sqlite.SQLiteCompiledSql
W/Zygote : Class not found for preloading: android.database.sqlite.SQLiteDatabase$DatabaseReentrantLock
W/Zygote : Class not found for preloading: android.media.AudioManager$2
I/dalvikvm: threadid=6: recursive native library load attempt (/system/lib/libmedia_jni.so)
D/MtpDeviceJNI: register_android_mtp_MtpDevice
I/dalvikvm: threadid=6: recursive native library load attempt (/system/lib/libmedia_jni.so)
I/dalvikvm: threadid=6: recursive native library load attempt (/system/lib/libmedia_jni.so)
W/Zygote : Class not found for preloading: android.media.IRemoteControlClientDispatcher
W/Zygote : Class not found for preloading: android.media.IRemoteControlClientDispatcher$Stub
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 lsof using binary lsof : lsof
W/Zygote : Class not found for preloading: android.widget.TextView$Blink
W/Zygote : Class not found for preloading: android.widget.TextView$EasyEditSpanController
W/Zygote : Class not found for preloading: android.widget.TextView$InputContentType
W/Zygote : Class not found for preloading: android.widget.TextView$InputMethodState
W/Zygote : Class not found for preloading: android.widget.TextView$TextAlign
E/PhonePolicy: Could not preload class for phone policy: com.android.internal.policy.impl.PhoneWindow$ContextMenuCallback
D/dalvikvm: GC_FOR_ALLOC freed 308K, 4% free 8526K/8835K, paused 10ms, total 10ms
W/Zygote : Class not found for preloading: android.os.Power
V/BluetoothEventLoop.cpp: classInitNative
V/BluetoothService.cpp: classInitNative
W/Zygote : Class not found for preloading: android.text.TextDirectionHeuristics$CharCount
W/Zygote : Class not found for preloading: android.text.method.WordIterator$1
W/Zygote : Class not found for preloading: android.view.InputHandler
I/Zygote : ...preloaded 831 classes in 1146ms.
I/System : Loaded time zone names for in 312ms (309ms in ICU)
I/System : Loaded time zone names for en_US in 93ms (89ms in ICU)
I/System : Loaded time zone names for it_IT in 101ms (97ms in ICU)
D/dalvikvm: GC_FOR_ALLOC freed 977K, 10% free 9650K/10627K, paused 24ms, total 25ms
I/Zygote : ...preloaded 1478 classes in 1495ms.
I/Zygote : !#EndofpreloadClasses()
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 0ms
D/dalvikvm: GC_EXPLICIT freed 327K, 12% free 9360K/10627K, paused 1ms+2ms, total 21ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 0ms
D/dalvikvm: GC_EXPLICIT freed 21K, 13% free 9339K/10627K, paused 1ms+2ms, total 18ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 0ms
D/dalvikvm: GC_EXPLICIT freed <1K, 13% free 9339K/10627K, paused 1ms+2ms, total 17ms
I/dalvikvm: System server process 4440 has been created
I/Zygote : Accepting command socket connections
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 0ms
W/ResourceType: Failure getting entry for 0x7f020003 (t=1 e=3) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020000 (t=1 e=0) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020001 (t=1 e=1) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020001 (t=1 e=1) in package 0 (error -75)
D/dalvikvm: GC_CONCURRENT freed 109K, 13% free 9750K/11143K, paused 12ms+12ms, total 84ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 21ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 21ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 21ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 20ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 7ms
I/sysproc : !#beginofsystem_init1()
W/ResourceType: Failure getting entry for 0x7f020005 (t=1 e=5) in package 0 (error -75)
I/sysproc : Entered system_init()
I/sysproc : ServiceManager: 0x4c24d3c8
D/SensorService: nuSensorService starting...
W/ResourceType: Failure getting entry for 0x7f0201f5 (t=1 e=501) in package 0 (error -75)
I/AKMD2 : open_accelerometer
W/ResourceType: Failure getting entry for 0x7f0201f5 (t=1 e=501) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f0201f4 (t=1 e=500) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020001 (t=1 e=1) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020004 (t=1 e=4) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020007 (t=1 e=7) in package 0 (error -75)
I/PackageParser: com.orange.authentication.simcard.permission: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
W/ResourceType: Failure getting entry for 0x7f02001b (t=1 e=27) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f02001b (t=1 e=27) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f040001 (t=3 e=1) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f02001d (t=1 e=29) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f040000 (t=3 e=0) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020007 (t=1 e=7) in package 0 (error -75)
D/dalvikvm: GC_CONCURRENT freed 168K, 13% free 10138K/11591K, paused 23ms+3ms, total 60ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 15ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 16ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 16ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 17ms
W/ResourceType: Failure getting entry for 0x7f02025f (t=1 e=607) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f02032c (t=1 e=812) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f02032f (t=1 e=815) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f02022c (t=1 e=556) in package 0 (error -75)
D/dalvikvm: GC_CONCURRENT freed 215K, 13% free 10473K/11975K, paused 37ms+2ms, total 55ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 32ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 35ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 23ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 26ms
W/ResourceType: Failure getting entry for 0x7f02022c (t=1 e=556) in package 0 (error -75)
I/SensorService: K3DH Acceleration Sensor
I/SensorService: AK8975 Magnetic field Sensor
I/SensorService: AK8975 Orientation Sensor
I/SensorService: CM3663 Light Sensor
I/SensorService: CM3663 Proximity Sensor
I/SensorService: K3G Gyroscope Sensor
W/ResourceType: Failure getting entry for 0x7f0204f6 (t=1 e=1270) in package 0 (error -75)
I/RemoteDesktopService: RemoteDesktopService started (pid=4440)
W/ResourceType: Failure getting entry for 0x7f0204f6 (t=1 e=1270) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f0204f6 (t=1 e=1270) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f110062 (t=16 e=98) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020000 (t=1 e=0) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f110062 (t=16 e=98) in package 0 (error -75)
D/dalvikvm: GC_FOR_ALLOC freed 259K, 13% free 10749K/12295K, paused 30ms, total 31ms
D/SensorService: nuSensorService thread starting...
W/ResourceType: Failure getting entry for 0x7f02000c (t=1 e=12) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f02001a (t=1 e=26) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f0203c1 (t=1 e=961) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f0203c1 (t=1 e=961) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f03003b (t=2 e=59) in package 0 (error -75)
I/PackageParser: com.monotype.android.font.helvneuelt: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
D/dalvikvm: GC_CONCURRENT freed 252K, 13% free 11009K/12551K, paused 11ms+2ms, total 43ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 14ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 15ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 14ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 15ms
W/ResourceType: Failure getting entry for 0x7f020000 (t=1 e=0) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020000 (t=1 e=0) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020000 (t=1 e=0) in package 0 (error -75)
D/su : su invoked.
W/ResourceType: Failure getting entry for 0x7f020004 (t=1 e=4) in package 0 (error -75)
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 sqlite3 using binary sqlite3 : sqlite3 /data/data/com.android.providers.settings/databases/settings.db pragma user_version; select * from system; select * from secure;
E/su : exec failed with 2: No such file or directory
D/dalvikvm: GC_CONCURRENT freed 241K, 12% free 11274K/12807K, paused 1ms+4ms, total 26ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 2ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 3ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 3ms
W/ResourceType: Failure getting entry for 0x7f020332 (t=1 e=818) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020334 (t=1 e=820) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020334 (t=1 e=820) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020334 (t=1 e=820) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020333 (t=1 e=819) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020333 (t=1 e=819) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020333 (t=1 e=819) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020009 (t=1 e=9) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f02001d (t=1 e=29) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020333 (t=1 e=819) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f10004b (t=15 e=75) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f02035d (t=1 e=861) in package 0 (error -75)
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 netcfg using binary netcfg : netcfg
W/ResourceType: Failure getting entry for 0x7f020319 (t=1 e=793) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020319 (t=1 e=793) in package 0 (error -75)
D/dalvikvm: GC_CONCURRENT freed 294K, 13% free 11541K/13127K, paused 12ms+3ms, total 53ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 17ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 18ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 18ms
W/ResourceType: Failure getting entry for 0x7f020331 (t=1 e=817) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020328 (t=1 e=808) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020328 (t=1 e=808) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f020328 (t=1 e=808) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f02014e (t=1 e=334) in package 0 (error -75)
D/dalvikvm: GC_CONCURRENT freed 280K, 12% free 11809K/13383K, paused 11ms+3ms, total 45ms
D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 18ms
W/ResourceType: Failure getting entry for 0x7f0e004d (t=13 e=77) in package 0 (error -75)
W/ResourceType: Failure getting entry for 0x7f0e004e (t=13 e=78) in package 0 (error -75)
I/BootTime: Prefetch Time Taken:1050
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 iptables using binary iptables : iptables -L -nvx
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 ip6tables using binary ip6tables : ip6tables -L -nvx
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 iptables using binary iptables : iptables -t nat -L -nvx
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 iptables using binary iptables : iptables -t raw -L -nvx
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 ip6tables using binary ip6tables : ip6tables -t raw -L -nvx
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 wpa_cli using binary wpa_cli : wpa_cli list_networks
E/su : exec failed with 2: No such file or directory
D/VoldCmdListener: asec list
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 cat using binary cat : cat /data/system/packages.xml
D/su : su invoked.
D/su : Allowing shell.
D/su : 2000 /system/bin/dumpstate executing 0 cat using binary cat : cat /proc/4403/maps
I/dumpstate: done
I/ServiceManager: service 'SurfaceFlinger' died
I/ServiceManager: service 'SecTVOutService' died
F/libc : Fatal signal 11 (SIGSEGV) at 0x00000010 (code=1), thread 4423 (BootAnimation)
D/BootAnimation: SurfaceFlinger died, exiting...
F/libc : Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 4440 (system_server)
I/ServiceManager: service 'sensorservice' died
I/DEBUG : unexpected waitpid response: n=4440, status=00000009
I/DEBUG : ptrace detach from 4440 failed: No such process
I/DEBUG : debuggerd committing suicide to free the zombie!
I/DEBUG : debuggerd: Mar 7 2013 21:50:41