Hi, Im getting this error caused by VM( logcat below from emulator, it also happens on the device)
This is a know bug filed at least 3 times with different issues http://code.google.com/p/android/issues/detail?id=4450&can=4&colspec=ID%20Type%20Status%20Owner%20Summary%20Stars#c4 http://code.google.com/p/android/issues/detail?id=4417 http://code.google.com/p/android/issues/detail?id=3531&sort=-id&colspec=ID%20Type%20Version%20Security%20Status%20Owner%20Summary I am getting it if I close my app and then open it a few times(it happens too often), you can close the app by "back button". I also have a service running in the background which updates my widget( i stop the service when it finishes), which launches an activity through a PendingIntent. Is there any workaround for this error, if I know what causes this exactly i may be able to prevent it, something must be triggering this... This is the logcat: 01-10 12:39:55.369: INFO/DEBUG(539): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 01-10 12:39:55.407: INFO/DEBUG(539): Build fingerprint: 'generic/ google_sdk/generic/:1.5/CUPCAKE/148875:eng/test-keys' 01-10 12:39:55.434: INFO/DEBUG(539): pid: 922, tid: 923 >>> com.mobile.topPlaces <<< 01-10 12:39:55.447: WARN/InputManagerService(567): Window already focused, ignoring focus gain of: com.android.internal.view.iinputmethodclient$stub$pr...@437686b0 01-10 12:39:55.458: INFO/DEBUG(539): signal 11 (SIGSEGV), fault addr 00000004 01-10 12:39:55.458: INFO/DEBUG(539): r0 00000004 r1 40021800 r2 00000004 r3 ad3296c5 01-10 12:39:55.467: INFO/DEBUG(539): r4 00000000 r5 00000000 r6 ad342da5 r7 41039fb8 01-10 12:39:55.467: INFO/DEBUG(539): r8 100ffd00 r9 41039fb0 10 41039fa0 fp 00000001 01-10 12:39:55.467: INFO/DEBUG(539): ip ad35b874 sp 100ffce8 lr ad3296cf pc afb045a8 cpsr 00000010 01-10 12:39:55.758: INFO/DEBUG(539): #00 pc 000045a8 / system/lib/libcutils.so 01-10 12:39:55.778: INFO/DEBUG(539): #01 lr ad3296cf / system/lib/libandroid_runtime.so 01-10 12:39:55.797: INFO/DEBUG(539): stack: 01-10 12:39:55.818: INFO/DEBUG(539): 100ffca8 00002bb0 01-10 12:39:55.818: INFO/DEBUG(539): 100ffcac 00000003 01-10 12:39:55.837: INFO/DEBUG(539): 100ffcb0 000000da 01-10 12:39:55.837: INFO/DEBUG(539): 100ffcb4 000001b8 01-10 12:39:55.837: INFO/DEBUG(539): 100ffcb8 100ffd00 01-10 12:39:55.837: INFO/DEBUG(539): 100ffcbc 41f846e8 01-10 12:39:55.837: INFO/DEBUG(539): 100ffcc0 00000001 01-10 12:39:55.837: INFO/DEBUG(539): 100ffcc4 41f846e8 01-10 12:39:55.837: INFO/DEBUG(539): 100ffcc8 00000001 01-10 12:39:55.837: INFO/DEBUG(539): 100ffccc afe39dd0 01-10 12:39:55.873: INFO/DEBUG(539): 100ffcd0 0000a000 [heap] 01-10 12:39:55.877: INFO/DEBUG(539): 100ffcd4 410a79d0 01-10 12:39:55.877: INFO/DEBUG(539): 100ffcd8 100ffd30 01-10 12:39:55.877: INFO/DEBUG(539): 100ffcdc 0000000a 01-10 12:39:55.887: INFO/DEBUG(539): 100ffce0 df002777 01-10 12:39:55.887: INFO/DEBUG(539): 100ffce4 e3a070ad 01-10 12:39:55.908: INFO/DEBUG(539): #00 100ffce8 00000000 01-10 12:39:55.908: INFO/DEBUG(539): 100ffcec ad3296cf /system/ lib/libandroid_runtime.so 01-10 12:39:55.918: INFO/DEBUG(539): 100ffcf0 100ffd20 01-10 12:39:55.928: INFO/DEBUG(539): 100ffcf4 ad342db5 /system/ lib/libandroid_runtime.so 01-10 12:39:55.928: INFO/DEBUG(539): 100ffcf8 40021800 01-10 12:39:55.948: INFO/DEBUG(539): 100ffcfc ad00e3b8 /system/ lib/libdvm.so 01-10 12:39:55.957: INFO/DEBUG(539): 100ffd00 410a79d0 01-10 12:39:55.967: INFO/DEBUG(539): 100ffd04 00141858 [heap] 01-10 12:39:55.976: INFO/DEBUG(539): 100ffd08 ad342da5 /system/ lib/libandroid_runtime.so 01-10 12:39:55.990: INFO/DEBUG(539): 100ffd0c 40021800 01-10 12:39:55.997: INFO/DEBUG(539): 100ffd10 00001071 01-10 12:39:56.007: INFO/DEBUG(539): 100ffd14 00141858 [heap] 01-10 12:39:56.007: INFO/DEBUG(539): 100ffd18 100ffd20 01-10 12:39:56.034: INFO/DEBUG(539): 100ffd1c ad040a8d /system/ lib/libdvm.so 01-10 12:39:56.038: INFO/DEBUG(539): 100ffd20 41039fb0 01-10 12:39:56.038: INFO/DEBUG(539): 100ffd24 420000b8 01-10 12:39:56.038: INFO/DEBUG(539): 100ffd28 ad342da5 /system/ lib/libandroid_runtime.so 01-10 12:39:56.038: INFO/DEBUG(539): 100ffd2c 100ffd98 01-10 12:39:59.188: INFO/ActivityManager(567): Process com.mobile.topPlaces (pid 922) has died. 01-10 12:39:59.288: DEBUG/Zygote(541): Process 922 terminated by signal (11) 01-10 12:39:59.408: INFO/WindowManager(567): WIN DEATH: Window {4374ca68 com.mobile.topPlaces/com.mobile.topPlaces.TopImage paused=false} 01-10 12:40:00.078: WARN/InputManagerService(567): Got RemoteException sending setActive(false) notification to pid 922 uid 10022 Thanks in advance, Alberto PD: Does anyone know if this is fixed in 2.0???
-- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

