android - App can't be opened with the error in opening trace file -
i installed application , application running already. after sometime, app can't opened , error "error opening trace file: no such file or directory". problem? installed same app samsung note2 android version 4.1.2. don't have problem. installed device android version 4.1.1, , device has problem. logcat message shown below.
10-07 20:51:50.910: w/system.err(19785): invalid int: "" 10-07 20:51:51.140: w/dalvikvm(19785): threadid=1: thread exiting uncaught exception (group=0x40e97438) 10-07 20:52:09.510: e/trace(19817): error opening trace file: no such file or directory (2) 10-07 20:52:09.530: w/dalvikvm(19817): refusing reopen boot dex '/system/framework/hwframework.jar' 10-07 20:52:09.750: w/system.err(19817): invalid int: "" 10-07 20:52:09.910: i/adreno200-egl(19817): <qegldrvapi_eglinitialize:299>: egl 1.4 qualcomm build: au_linux_android_jb_rel_2.0.3.04.01.01.21.010_msm8625_jb_rel_2.0.3_merge_release_au (merge) 10-07 20:52:09.910: i/adreno200-egl(19817): build date: 10/26/12 fri 10-07 20:52:09.910: i/adreno200-egl(19817): local branch: 10-07 20:52:09.910: i/adreno200-egl(19817): remote branch: quic/jb_rel_2.0.3 10-07 20:52:09.910: i/adreno200-egl(19817): local patches: none 10-07 20:52:09.910: i/adreno200-egl(19817): reconstruct branch: au_linux_android_jb_rel_2.0.3.04.01.01.21.010 + nothing 10-07 20:52:09.970: w/dalvikvm(19817): threadid=1: thread exiting uncaught exception (group=0x40e97438)
the "error opening trace file" message red herring -- means device doesn't support systrace.
the "invalid int" message might have problem, what's happening throwing exception isn't caught.
normally when thread exits uncaught exception see exception in log, seems preventing here. if run app in debugger, , set exception breakpoint on uncaught exceptions, should able see it's coming from. (alternatively, try track down source of "invalid int" message , put breakpoint there.)
Comments
Post a Comment