Closed zedman2000 closed 9 years ago
Currently, BlockLauncher is configured to have a big heap space (https://github.com/zhuowei/MCPELauncher-app/blob/master/AndroidManifest.xml), but I am not sure how to increase the allocated memory footprint even more.
@sliceofcode , thanks for the link. I looked at that file and am not sure I understand where the memory is being allocated / requested in that file?
Not having looked at the source code, I could be speaking out of turn, but without more testing I'm kind of guessing. Please correct me if you are in the know!
I don't think is it BlockLauncher that needs more space. I think that it is the Texture Pack Memory. Decompressed and assuming "perfect" alignment in memory (i.e. no waste), I'm only looking at 185.77KB (large K, large B) for all the PNG files for the "most" mods that I've been able to add that works. I can re-do the same test using a "bad case" if it is of value. I think it has more to do with the struct / variable / pointer / whatever that these are in. Again, without more testing, or looking up in the code, it seems that there is a 256 limit, which seems to me that there is an INT that points to the textures in memory. If I go over that INT, it causes the crash. I've tried to capture the error being displayed, but it flashes too fast. Maybe I need to route around for a crashlog? There must be one somewhere!
@zedman2000
<application
android:name="net.zhuoweizhang.mcpelauncher.BlockLauncher"
android:allowBackup="false"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true" >
Notice largeHeap
.
Also, if you look in logcat if a native crash occurs you can get debug information, like this:
I/DEBUG ( 249): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 249): Build fingerprint: 'ATT/PantechP8010/oscar:4.1.2/JZO54K/oscar_0603:user/release-keys'
I/DEBUG ( 249): pid: 24694, tid: 24711, name: Main Thread >>> net.zhuoweizhang.mcpelauncher <<<
I/DEBUG ( 249): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
V/AudioFlinger( 256): getNextBuffer() no more data for track 4099 on thread 0x41c51008
V/AudioFlinger( 256): presentationComplete() reset: mPresentationCompleteFrames 501248 audioHalFrames 4608
V/AudioFlinger( 256): getNextBuffer() no more data for track 4098 on thread 0x41c51008
V/AudioFlinger( 256): getNextBuffer() no more data for track 4096 on thread 0x41c51008
I/DEBUG ( 249): r0 610ffe60 r1 5f89ba88 r2 00000000 r3 00000000
I/DEBUG ( 249): r4 610ffe60 r5 00000000 r6 60e61730 r7 5f89bab0
I/DEBUG ( 249): r8 5f89ba6c r9 5f89ba88 sl 60d35b54 fp 5f89ba60
I/DEBUG ( 249): ip 5e694245 sp 5f89ba30 lr 56d37d0b pc 00000000 cpsr 88000010
I/DEBUG ( 249): d0 bde383083f800000 d1 bd3cfc0000000000
I/DEBUG ( 249): d2 3c7ef14f00000000 d3 428757c5c2600000
I/DEBUG ( 249): d4 00000000428404f8 d5 428957c5c259d6f8
I/DEBUG ( 249): d6 c26523f2429446ce d7 42825dcf428404f8
I/DEBUG ( 249): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 249): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 249): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 249): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 249): d16 bec1fffd54004728 d17 3d7afff7fc01c888
I/DEBUG ( 249): d18 3ec1fffd54004728 d19 3d943ff9fd0156ab
I/DEBUG ( 249): d20 3fa97b4b24760deb d21 bfadde2d52defd9a
I/DEBUG ( 249): d22 3fb10d66a0d03d51 d23 bfb3b0f2af749a6d
I/DEBUG ( 249): d24 3fb745cdc54c206e d25 bfbc71c6fe231671
I/DEBUG ( 249): d26 3fc24924920083ff d27 bfc999999998ebc4
I/DEBUG ( 249): d28 3fd555555555550d d29 00a1009f009e009c
I/DEBUG ( 249): d30 0001000100010001 d31 0001000100010001
I/DEBUG ( 249): scr 2000001f
I/DEBUG ( 249):
I/DEBUG ( 249): backtrace:
I/DEBUG ( 249): #00 pc 00000000 <unknown>
I/DEBUG ( 249): #01 pc 00000d09 /data/data/me.cheesy.addons.ensb/lib/libme.cheesy.addons.ensb.so
I/DEBUG ( 249):
I/DEBUG ( 249): stack:
I/DEBUG ( 249): 5f89b9f0 610ffe60
I/DEBUG ( 249): 5f89b9f4 5e6e95bd /data/data/net.zhuoweizhang.mcpelauncher/app_patched/libminecraftpe_text_section (deleted)
I/DEBUG ( 249): 5f89b9f8 428957c5 /dev/ashmem/dalvik-heap (deleted)
I/DEBUG ( 249): 5f89b9fc 429446ce /dev/ashmem/dalvik-heap (deleted)
I/DEBUG ( 249): 5f89ba00 c259d6f8
I/DEBUG ( 249): 5f89ba04 00000000
I/DEBUG ( 249): 5f89ba08 00000000
I/DEBUG ( 249): 5f89ba0c 00000005
I/DEBUG ( 249): 5f89ba10 5f89bab0 [stack:24711]
I/DEBUG ( 249): 5f89ba14 00000000
I/DEBUG ( 249): 5f89ba18 60e61730
I/DEBUG ( 249): 5f89ba1c 610ffe60
I/DEBUG ( 249): 5f89ba20 00000000
I/DEBUG ( 249): 5f89ba24 60e61730
I/DEBUG ( 249): 5f89ba28 df0027ad
I/DEBUG ( 249): 5f89ba2c 00000000
I/DEBUG ( 249): #00 5f89ba30 5f89ba88 [stack:24711]
I/DEBUG ( 249): ........ ........
I/DEBUG ( 249): #01 5f89ba30 5f89ba88 [stack:24711]
I/DEBUG ( 249): 5f89ba34 60d35b54
I/DEBUG ( 249): 5f89ba38 610ffe60
I/DEBUG ( 249): 5f89ba3c 5e6348ff /data/data/net.zhuoweizhang.mcpelauncher/app_patched/libminecraftpe_text_section (deleted)
I/DEBUG ( 249): 5f89ba40 bf133e73
I/DEBUG ( 249): 5f89ba44 00000000
I/DEBUG ( 249): 5f89ba48 5f89ba54 [stack:24711]
I/DEBUG ( 249): 5f89ba4c 42ab9490 /dev/ashmem/dalvik-heap (deleted)
I/DEBUG ( 249): 5f89ba50 42914ccd /dev/ashmem/dalvik-heap (deleted)
I/DEBUG ( 249): 5f89ba54 428644f8 /dev/ashmem/dalvik-heap (deleted)
I/DEBUG ( 249): 5f89ba58 4291c6ce /dev/ashmem/dalvik-heap (deleted)
I/DEBUG ( 249): 5f89ba5c c25e56f8
I/DEBUG ( 249): 5f89ba60 4286cc2f /dev/ashmem/dalvik-heap (deleted)
I/DEBUG ( 249): 5f89ba64 42900000 /dev/ashmem/dalvik-heap (deleted)
I/DEBUG ( 249): 5f89ba68 c25fd0c1
I/DEBUG ( 249): 5f89ba6c 5e6cb200 /data/data/net.zhuoweizhang.mcpelauncher/app_patched/libminecraftpe_text_section (deleted)
I/DEBUG ( 249):
I/DEBUG ( 249): memory near r0:
I/DEBUG ( 249): 610ffe40 3ebff7d2 3dffbe77 44000000 43800000 ...>w..=...D...C
I/DEBUG ( 249): 610ffe50 0000002b 00000000 00000000 00000183 +...............
I/DEBUG ( 249): 610ffe60 5e826ab0 610ffe00 65324aa8 65324ae8 .j.^...a.J2e.J2e
I/DEBUG ( 249): 610ffe70 65324ae8 000000ff 428644f8 4291c6ce .J2e.....D.B...B
I/DEBUG ( 249): 610ffe80 c25e56f8 00000004 fffffffc 3f800000 .V^............?
I/DEBUG ( 249):
I/DEBUG ( 249): memory near r1:
I/DEBUG ( 249): 5f89ba68 c25fd0c1 5e6cb200 428604f8 428f01c1 .._...l^...B...B
I/DEBUG ( 249): 5f89ba78 c26123f2 428757c5 429246ce c25dd6f8 .#a..W.B.F.B..].
I/DEBUG ( 249): 5f89ba88 00000000 00000001 00000043 00000047 ........C...G...
I/DEBUG ( 249): 5f89ba98 ffffffc8 4286cc2f 42900000 c25fd0c1 ..../..B...B.._.
I/DEBUG ( 249): 5f89baa8 00000000 5f89ba00 60e61700 428404f8 ......._...`...B
I/DEBUG ( 249):
I/DEBUG ( 249): memory near r4:
I/DEBUG ( 249): 610ffe40 3ebff7d2 3dffbe77 44000000 43800000 ...>w..=...D...C
I/DEBUG ( 249): 610ffe50 0000002b 00000000 00000000 00000183 +...............
I/DEBUG ( 249): 610ffe60 5e826ab0 610ffe00 65324aa8 65324ae8 .j.^...a.J2e.J2e
I/DEBUG ( 249): 610ffe70 65324ae8 000000ff 428644f8 4291c6ce .J2e.....D.B...B
I/DEBUG ( 249): 610ffe80 c25e56f8 00000004 fffffffc 3f800000 .V^............?
I/DEBUG ( 249):
I/DEBUG ( 249): memory near r6:
I/DEBUG ( 249): 60e61710 00000001 40ab52fc 00000000 65332408 .....R.@.....$3e
I/DEBUG ( 249): 60e61720 00000001 00000000 00000028 0000004b ........(...K...
I/DEBUG ( 249): 60e61730 5e83c1a8 56d33110 01010100 5a88e0f8 ...^.1.V.......Z
I/DEBUG ( 249): 60e61740 60dd1448 60f8c0c0 60f8c0cc 60f8c0d0 H..`...`...`...`
I/DEBUG ( 249): 60e61750 63976008 00000000 60f255d8 60f255d8 .`.c.....U.`.U.`
I/DEBUG ( 249):
I/DEBUG ( 249): memory near r7:
I/DEBUG ( 249): 5f89ba90 00000043 00000047 ffffffc8 4286cc2f C...G......./..B
I/DEBUG ( 249): 5f89baa0 42900000 c25fd0c1 00000000 5f89ba00 ...B.._........_
I/DEBUG ( 249): 5f89bab0 60e61700 428404f8 428d01c1 c26523f2 ...`...B...B.#e.
I/DEBUG ( 249): 5f89bac0 428957c5 429446ce c259d6f8 5e6cb393 .W.B.F.B..Y...l^
I/DEBUG ( 249): 5f89bad0 00000000 5e5ac231 610ffe60 00000000 ....1.Z^`..a....
I/DEBUG ( 249):
I/DEBUG ( 249): memory near r8:
I/DEBUG ( 249): 5f89ba4c 42ab9490 42914ccd 428644f8 4291c6ce ...B.L.B.D.B...B
I/DEBUG ( 249): 5f89ba5c c25e56f8 4286cc2f 42900000 c25fd0c1 .V^./..B...B.._.
I/DEBUG ( 249): 5f89ba6c 5e6cb200 428604f8 428f01c1 c26123f2 ..l^...B...B.#a.
I/DEBUG ( 249): 5f89ba7c 428757c5 429246ce c25dd6f8 00000000 .W.B.F.B..].....
I/DEBUG ( 249): 5f89ba8c 00000001 00000043 00000047 ffffffc8 ....C...G.......
I/DEBUG ( 249):
I/DEBUG ( 249): memory near r9:
I/DEBUG ( 249): 5f89ba68 c25fd0c1 5e6cb200 428604f8 428f01c1 .._...l^...B...B
I/DEBUG ( 249): 5f89ba78 c26123f2 428757c5 429246ce c25dd6f8 .#a..W.B.F.B..].
I/DEBUG ( 249): 5f89ba88 00000000 00000001 00000043 00000047 ........C...G...
I/DEBUG ( 249): 5f89ba98 ffffffc8 4286cc2f 42900000 c25fd0c1 ..../..B...B.._.
I/DEBUG ( 249): 5f89baa8 00000000 5f89ba00 60e61700 428404f8 ......._...`...B
I/DEBUG ( 249):
I/DEBUG ( 249): memory near sl:
I/DEBUG ( 249): 60d35b34 00000032 00000001 00000013 5e827a78 2...........xz.^
I/DEBUG ( 249): 60d35b44 00000f00 00000000 0000001b 610ffe60 ............`..a
I/DEBUG ( 249): 60d35b54 00000011 42480000 00010200 00000018 ......HB........
I/DEBUG ( 249): 60d35b64 0000009b 00000065 00000001 00000001 ....e...........
I/DEBUG ( 249): 60d35b74 00000001 00000000 00000000 00000002 ................
I/DEBUG ( 249):
I/DEBUG ( 249): memory near fp:
I/DEBUG ( 249): 5f89ba40 bf133e73 00000000 5f89ba54 42ab9490 s>......T.._...B
I/DEBUG ( 249): 5f89ba50 42914ccd 428644f8 4291c6ce c25e56f8 .L.B.D.B...B.V^.
I/DEBUG ( 249): 5f89ba60 4286cc2f 42900000 c25fd0c1 5e6cb200 /..B...B.._...l^
I/DEBUG ( 249): 5f89ba70 428604f8 428f01c1 c26123f2 428757c5 ...B...B.#a..W.B
I/DEBUG ( 249): 5f89ba80 429246ce c25dd6f8 00000000 00000001 .F.B..].........
I/DEBUG ( 249):
I/DEBUG ( 249): memory near ip:
I/DEBUG ( 249): 5e694224 ee495a09 ee767ac9 edc45aa5 edc47a12 .ZI..zv..Z...z..
I/DEBUG ( 249): 5e694234 ecbd5a14 bd108b06 3c23d70a 001ec728 .Z........#<(...
I/DEBUG ( 249): 5e694244 b08db5f0 ac054605 9f139812 90009e14 .....F..........
I/DEBUG ( 249): 5e694254 97014620 f02d9602 f105ff0d 4621008c F....-.......!F
I/DEBUG ( 249): 5e694264 ff0ef02e bdf0b00d ed2db510 46048b02 ..........-....F
I/DEBUG ( 249):
I/DEBUG ( 249): memory near sp:
I/DEBUG ( 249): 5f89ba10 5f89bab0 00000000 60e61730 610ffe60 ..._....0..``..a
I/DEBUG ( 249): 5f89ba20 00000000 60e61730 df0027ad 00000000 ....0..`.'......
I/DEBUG ( 249): 5f89ba30 5f89ba88 60d35b54 610ffe60 5e6348ff ..._T[.``..a.Hc^
I/DEBUG ( 249): 5f89ba40 bf133e73 00000000 5f89ba54 42ab9490 s>......T.._...B
I/DEBUG ( 249): 5f89ba50 42914ccd 428644f8 4291c6ce c25e56f8 .L.B.D.B...B.V^.
I/DEBUG ( 249):
I/DEBUG ( 249): code around pc:
I/DEBUG ( 249): 00000000 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 249): 00000010 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 249): 00000020 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 249): 00000030 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 249): 00000040 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 249):
I/DEBUG ( 249): code around lr:
I/DEBUG ( 249): 56d37ce8 e08f2002 e08f0000 eaffffd5 00002310 . ...........#..
I/DEBUG ( 249): 56d37cf8 ffffffd4 b5104b13 4604447b 681bb082 .....K..{D.F...h
I/DEBUG ( 249): 56d37d08 68234798 d9012b01 bd10b002 7a06edd4 .G#h.+.........z
I/DEBUG ( 249): 56d37d18 7ae7eefd 7a07ed94 4a0c490b 44792004 ...z...z.I.J. yD
I/DEBUG ( 249): 56d37d28 ee17447a edd43a90 eebd7a05 eefd7ac7 zD...:...z...z..
@sliceofcode awesome, I'll take a look next time I feel adventurous and load up more textures. I'm assuming that you are saying check logcat, so I can see if the crash is android (largeheap) or just blocklauncher itself?
@zedman2000 Yes, android dumps native crashes to LogCat, copy the whole thing and post it here for more information.
@sliceofcode Looks like around line 1292 is where you want to be?
--------- beginning of crash
--------- beginning of system
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.90}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +291ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): Killing 686:android.process.media/u0a10 (adj 15): empty #17
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 1624) has died
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Start proc 1980:android.process.media/u0a10 for content provider com.android.providers.media/.MediaProvider
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): START u0 {flg=0x10000000 cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity bnds=[325,691][833,1309]} from uid 10263 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{382fd102 token=Token{32a3f24d ActivityRecord{2637ede4 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2179}}} to stack=1 task=2179 at 0
V/WindowManager( 976): Adding window Window{10fb688b u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 13 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): Start proc 2257:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.91}
V/WindowManager( 976): Adding window Window{2f2be0f1 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 13 of 23 (before Window{10fb688b u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{14f3f862 u0 PopupWindow:c446398} at 14 of 24 (after Window{2f2be0f1 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
I/WindowManager( 976): Screen frozen for +1s912ms due to Window{10fb688b u0 Starting net.zhuoweizhang.mcpelauncher.pro}
V/WindowManager( 976): not Base app: Adding window Window{58f3e12 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 15 of 24
I/ActivityManager( 976): START u0 {cmp=net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{1a1f4fc2 token=Token{83b340d ActivityRecord{8001ea4 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity t2179}}} to stack=1 task=2179 at 1
V/WindowManager( 976): Adding window Window{214fd7c5 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity} at 15 of 24 (after Window{14f3f862 u0 PopupWindow:c446398})
I/ActivityManager( 976): START u0 {cmp=net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.TexturePacksActivity} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{1da466b1 token=Token{1c81a558 ActivityRecord{afdaa3b u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.TexturePacksActivity t2179}}} to stack=1 task=2179 at 2
V/WindowManager( 976): Adding window Window{2b09d722 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.TexturePacksActivity} at 16 of 25 (after Window{214fd7c5 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity})
I/ActivityManager( 976): Process com.joaomgcd.autoremote (pid 29978) has died
I/ActivityManager( 976): START u0 {act=android.intent.action.GET_CONTENT cat=[android.intent.category.OPENABLE] typ=application/zip cmp=net.zhuoweizhang.mcpelauncher.pro/com.ipaulpro.afilechooser.FileChooserActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{21dfeca0 token=Token{27a6e1a3 ActivityRecord{2b3a4cd2 u0 net.zhuoweizhang.mcpelauncher.pro/com.ipaulpro.afilechooser.FileChooserActivity t2179}}} to stack=1 task=2179 at 3
V/WindowManager( 976): Adding window Window{5c70f64 u0 net.zhuoweizhang.mcpelauncher.pro/com.ipaulpro.afilechooser.FileChooserActivity} at 17 of 26 (after Window{2b09d722 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.TexturePacksActivity})
I/WindowState( 976): WIN DEATH: Window{214fd7c5 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity}
I/WindowState( 976): WIN DEATH: Window{2f2be0f1 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{14f3f862 u0 PopupWindow:c446398} from container Window{2f2be0f1 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 2257) has died
W/ActivityManager( 976): Force removing ActivityRecord{8001ea4 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity t2179}: app died, no saved state
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@108c9b2d does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
V/WindowManager( 976): Adding window Window{3a9242d5 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 13 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): Start proc 2426:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{3de2e66 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 13 of 23 (before Window{3a9242d5 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{6ce5543 u0 PopupWindow:291332d1} at 14 of 24 (after Window{3de2e66 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): not Base app: Adding window Window{f41eed8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 15 of 24
I/ActivityManager( 976): START u0 {cmp=net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.ManageScriptsActivity} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{21fabe08 token=Token{149df7ab ActivityRecord{15b755fa u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.ManageScriptsActivity t2179}}} to stack=1 task=2179 at 1
V/WindowManager( 976): Adding window Window{2c76aa52 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.ManageScriptsActivity} at 15 of 24 (after Window{6ce5543 u0 PopupWindow:291332d1})
V/WindowManager( 976): not Base app: Adding window Window{8627750 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.ManageScriptsActivity} at 16 of 25
V/WindowManager( 976): not Base app: Adding window Window{19cdbefe u0 PrismaticGlass.js (disabled)} at 16 of 25
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.92}
I/WindowManager( 976): Screen frozen for +325ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.93}
I/WindowManager( 976): Screen frozen for +420ms due to Window{3eda0219 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
I/ActivityManager( 976): Killing 2426:net.zhuoweizhang.mcpelauncher.pro/u0a333 (adj 9): remove task
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL} from uid 10029 on display 0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.94}
I/WindowManager( 976): Screen frozen for +575ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {flg=0x10000000 cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity bnds=[325,691][833,1309]} from uid 10263 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{f5fa6eb token=Token{35413a3a ActivityRecord{1f90dd65 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2180}}} to stack=1 task=2180 at 0
V/WindowManager( 976): Adding window Window{187bec60 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 13 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): Start proc 2547:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.95}
V/ActivityManager( 976): Display changed displayId=0
V/WindowManager( 976): Adding window Window{32a592bc u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 13 of 23 (before Window{187bec60 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{c9f6dc1 u0 PopupWindow:c446398} at 14 of 24 (after Window{32a592bc u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
I/WindowManager( 976): Screen frozen for +1s559ms due to Window{187bec60 u0 Starting net.zhuoweizhang.mcpelauncher.pro}
V/WindowManager( 976): not Base app: Adding window Window{768cfa2 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 15 of 24
I/ActivityManager( 976): START u0 {cmp=net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{33886552 token=Token{3a8be5dd ActivityRecord{146035b4 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity t2180}}} to stack=1 task=2180 at 1
V/WindowManager( 976): Adding window Window{24b0874c u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity} at 15 of 24 (after Window{c9f6dc1 u0 PopupWindow:c446398})
I/ActivityManager( 976): START u0 {cmp=net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.TexturePacksActivity} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{f309e14 token=Token{30366067 ActivityRecord{18d93c26 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.TexturePacksActivity t2180}}} to stack=1 task=2180 at 2
V/WindowManager( 976): Adding window Window{1f49e1b9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.TexturePacksActivity} at 16 of 25 (after Window{24b0874c u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.MainMenuOptionsActivity})
I/ActivityManager( 976): START u0 {act=android.intent.action.GET_CONTENT cat=[android.intent.category.OPENABLE] typ=application/zip cmp=net.zhuoweizhang.mcpelauncher.pro/com.ipaulpro.afilechooser.FileChooserActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{2f2d866b token=Token{124e7ba ActivityRecord{3228d0e5 u0 net.zhuoweizhang.mcpelauncher.pro/com.ipaulpro.afilechooser.FileChooserActivity t2180}}} to stack=1 task=2180 at 3
V/WindowManager( 976): Adding window Window{197257e3 u0 net.zhuoweizhang.mcpelauncher.pro/com.ipaulpro.afilechooser.FileChooserActivity} at 17 of 26 (after Window{1f49e1b9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.ui.TexturePacksActivity})
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.96}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +324ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.estrongs.android.pop/.view.FileExplorerActivity bnds=[63,301][238,469]} from uid 10196 on display 0
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 2547) has died
I/ActivityManager( 976): START u0 {act=android.intent.action.VIEW dat=file:///storage/emulated/0/games/com.mojang/Textures/PrismaticGlass.zip typ=application/zip flg=0x10000000 cmp=com.estrongs.android.pop/.app.compress.CompressionProxyActivity (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{168b5945 token=Token{354135bc ActivityRecord{38616daf u0 com.estrongs.android.pop/.app.compress.CompressionProxyActivity t2098}}} to stack=1 task=2098 at 1
I/ActivityManager( 976): START u0 {act=android.intent.action.VIEW dat=file:///storage/emulated/0/games/com.mojang/Textures/PrismaticGlass.zip typ=application/zip flg=0x10000000 cmp=com.estrongs.android.pop/.app.compress.CompressionActivity (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{3c9f1a8 token=Token{2e6135cb ActivityRecord{1ee6389a u0 com.estrongs.android.pop/.app.compress.CompressionActivity t2098}}} to stack=1 task=2098 at 2
I/ActivityManager( 976): START u0 {flg=0x24000000 cmp=com.estrongs.android.pop/.view.FileExplorerActivity (has extras)} from uid 10118 on display 0
W/ActivityManager( 976): Duplicate finish request for ActivityRecord{1ee6389a u0 com.estrongs.android.pop/.app.compress.CompressionActivity t2098 f}
V/WindowManager( 976): not Base app: Adding window Window{21530f5a u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity} at 13 of 22
V/WindowManager( 976): not Base app: Adding window Window{578a114 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity} at 14 of 23
V/WindowManager( 976): not Base app: Adding window Window{90877b u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity} at 14 of 23
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL} from uid 1000 on display 0
I/ActivityManager( 976): START u0 {flg=0x10000000 cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity bnds=[325,691][833,1309]} from uid 10263 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{1238a070 token=Token{3905c2b3 ActivityRecord{22d2c822 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2181}}} to stack=1 task=2181 at 0
V/WindowManager( 976): Adding window Window{2b016321 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 13 of 23 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): Start proc 3014:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.97}
V/WindowManager( 976): Adding window Window{13b8d864 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 13 of 23 (before Window{2b016321 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{207646c9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 13 of 24 (before Window{13b8d864 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{2e352294 u0 PopupWindow:15cc2410} at 14 of 25 (after Window{207646c9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
I/WindowManager( 976): Screen frozen for +1s790ms due to Window{2b016321 u0 Starting net.zhuoweizhang.mcpelauncher.pro}
I/WindowState( 976): WIN DEATH: Window{207646c9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{2e352294 u0 PopupWindow:15cc2410} from container Window{207646c9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{13b8d864 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@132026e7 does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 3014) has died
W/ActivityManager( 976): Force removing ActivityRecord{22d2c822 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2181}: app died, no saved state
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.98}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +297ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL} from uid 1000 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN flg=0x14000000 cmp=com.abcOrganizer/.lite.shortcut.LabelShortcut bnds=[611,1337][828,1519] (has extras)} from uid 10103 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{a998354 token=Token{164a92a7 ActivityRecord{3931cf66 u0 com.abcOrganizer/.lite.shortcut.LabelShortcut t2182}}} to stack=1 task=2182 at 0
I/ActivityManager( 976): Start proc 3079:com.abcOrganizer/u0a103 for activity com.abcOrganizer/.lite.shortcut.LabelShortcut
I/ActivityManager( 976): Start proc 3111:tw.fatminmin.xposed.minminguard/u0a322 for content provider tw.fatminmin.xposed.minminguard/.MinMinProvider
V/WindowManager( 976): Adding window Window{a42de16 u0 com.abcOrganizer/com.abcOrganizer.lite.shortcut.LabelShortcut} at 13 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=jackpal.androidterm/.Term} from uid 10103 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{187f66fa token=Token{30ecc525 ActivityRecord{97651c u0 jackpal.androidterm/.Term t2183}}} to stack=1 task=2183 at 0
V/WindowManager( 976): Adding window Window{1a5470d9 u0 Starting jackpal.androidterm} at 14 of 23 (after Window{a42de16 u0 com.abcOrganizer/com.abcOrganizer.lite.shortcut.LabelShortcut})
I/ActivityManager( 976): Start proc 3145:jackpal.androidterm/u0a246 for activity jackpal.androidterm/.Term
V/WindowManager( 976): Adding window Window{29b9ed80 u0 jackpal.androidterm/jackpal.androidterm.Term} at 14 of 24 (before Window{1a5470d9 u0 Starting jackpal.androidterm})
I/ActivityManager( 976): Killing 3079:com.abcOrganizer/u0a103 (adj 9): remove task
I/ActivityManager( 976): Start proc 3184:org.pocketworkstation.pckeyboard/u0a321 for service org.pocketworkstation.pckeyboard/.LatinIME
V/WindowManager( 976): Adding window Window{22f3bdd3 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{210973c5 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{3ae8ae28 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{36f4aa27 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{73f567d u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{1bf7c1c3 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{3a6fdd79 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{2f8ab71f u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{2587d835 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{feac2b1 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{22aa769c u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{dc0ba21 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{32c24807 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{22b138d2 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{39eb8a0 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{2046101e u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{b099515 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{2d2740f7 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{5851cd u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{32a189d0 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{1aa4bcce u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{315d72fc u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{1393840b u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{ca797a6 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{18df2594 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{33a58832 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{bd8a91d u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{368e0560 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{abe178c u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{1495f6ea u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{ffb2078 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{2f5497b6 u0 PopupWindow:487e09d} at 16 of 24 (after Window{ffb2078 u0 PopupWindow:487e09d EXITING})
V/WindowManager( 976): Adding window Window{dfdcc24 u0 PopupWindow:487e09d} at 16 of 24 (after Window{2f5497b6 u0 PopupWindow:487e09d EXITING})
V/WindowManager( 976): Adding window Window{348a7942 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{394ae78e u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{3b5c2745 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{3ff1b3cb u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{109cf2c1 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{2e65c1a7 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{2bc4f9fd u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{86c38f9 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{22173e9f u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{2713324a u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{11ec6297 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{32ad5c6d u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{35505269 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{3bd30d8f u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{612ac25 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
V/WindowManager( 976): Adding window Window{67cf3ab u0 PopupWindow:487e09d} at 16 of 24 (after Window{612ac25 u0 PopupWindow:487e09d EXITING})
V/WindowManager( 976): Adding window Window{1b1a2d23 u0 PopupWindow:487e09d} at 15 of 23 (after Window{3859de5b u0 InputMethod})
I/ActivityManager( 976): Process eu.chainfire.recently (pid 30588) has died
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/WindowManager( 976): Adding window Window{3959dd26 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity} at 14 of 23 (after Window{1d2d2782 u0 com.google.android.googlequicksearchbox/com.google.android.launcher.GEL})
I/ActivityManager( 976): START u0 {flg=0x10100000 cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity} from uid 10263 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{396a857b token=Token{3be9390a ActivityRecord{3b115575 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2181}}} to stack=1 task=2181 at 0
V/WindowManager( 976): Adding window Window{26b3a9b0 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{29b9ed80 u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 3378:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.99}
V/ActivityManager( 976): Display changed displayId=0
V/WindowManager( 976): Adding window Window{289cdee0 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{26b3a9b0 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{249ab255 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{289cdee0 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
V/WindowManager( 976): Adding window Window{3b95c010 u0 PopupWindow:15cc2410} at 15 of 26 (after Window{249ab255 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/WindowManager( 976): Screen frozen for +1s740ms due to Window{26b3a9b0 u0 Starting net.zhuoweizhang.mcpelauncher.pro}
I/WindowState( 976): WIN DEATH: Window{249ab255 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{3b95c010 u0 PopupWindow:15cc2410} from container Window{249ab255 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{289cdee0 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 3378) has died
W/ActivityManager( 976): Force removing ActivityRecord{3b115575 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2181}: app died, no saved state
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@216b1cd3 does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.100}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +461ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): Start proc 3442:eu.chainfire.recently/u0a237 for broadcast eu.chainfire.recently/.RootReceiver
V/WindowManager( 976): Adding window Window{19254d9f u0 PopupWindow:1d91b371} at 15 of 23 (after Window{2659c99a u0 InputMethod})
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL} from uid 1000 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.estrongs.android.pop/.view.FileExplorerActivity bnds=[63,301][238,469]} from uid 10196 on display 0
I/ActivityManager( 976): START u0 {cmp=com.estrongs.android.pop/.app.OpenRecomm (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{3f34aae6 token=Token{19563541 ActivityRecord{8565428 u0 com.estrongs.android.pop/.app.OpenRecomm t2098}}} to stack=1 task=2098 at 1
V/WindowManager( 976): Adding window Window{9edffc3 u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm} at 14 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): START u0 {act=android.intent.action.VIEW dat=file:///storage/emulated/0/logcat.txt typ=text/plain flg=0x10000000 cmp=com.jecelyin.editor/.JecEditor (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{1dc7e6ed token=Token{34965104 ActivityRecord{3c084917 u0 com.jecelyin.editor/.JecEditor t2184}}} to stack=1 task=2184 at 0
V/WindowManager( 976): Adding window Window{3184bc9c u0 Starting com.jecelyin.editor} at 15 of 23 (after Window{9edffc3 u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm})
I/ActivityManager( 976): Start proc 3565:com.jecelyin.editor/u0a249 for activity com.jecelyin.editor/.JecEditor
V/WindowManager( 976): Adding window Window{c359b91 u0 Processing} at 15 of 24 (before Window{3184bc9c u0 Starting com.jecelyin.editor})
V/WindowManager( 976): Adding window Window{3b627082 u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor} at 15 of 25 (before Window{c359b91 u0 Processing})
W/ActivityManager( 976): Finishing task with all activities already finished
W/ActivityManager( 976): Duplicate finish request for ActivityRecord{3c084917 u0 com.jecelyin.editor/.JecEditor t2184 f}
I/WindowState( 976): WIN DEATH: Window{38347773 u0 Toast}
I/WindowState( 976): WIN DEATH: Window{3b627082 u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor}
I/ActivityManager( 976): Process com.jecelyin.editor (pid 3565) has died
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {cmp=com.estrongs.android.pop/.app.OpenRecomm (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{389df6dc token=Token{161ff4f ActivityRecord{2f95e5ae u0 com.estrongs.android.pop/.app.OpenRecomm t2098}}} to stack=1 task=2098 at 1
V/WindowManager( 976): Adding window Window{2d184961 u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm} at 14 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): START u0 {act=android.intent.action.VIEW dat=file:///storage/emulated/0/settings.xml typ=text/xml flg=0x10000000 cmp=com.jecelyin.editor/.JecEditor (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{25ff9336 token=Token{2c754cd1 ActivityRecord{54bcff8 u0 com.jecelyin.editor/.JecEditor t2185}}} to stack=1 task=2185 at 0
V/WindowManager( 976): Adding window Window{da9acc2 u0 Starting com.jecelyin.editor} at 15 of 23 (after Window{2d184961 u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm})
I/ActivityManager( 976): Start proc 3692:com.jecelyin.editor/u0a249 for activity com.jecelyin.editor/.JecEditor
V/WindowManager( 976): Adding window Window{4f71bbe u0 Processing} at 15 of 24 (before Window{da9acc2 u0 Starting com.jecelyin.editor})
V/WindowManager( 976): Adding window Window{18d7a33b u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor} at 15 of 25 (before Window{4f71bbe u0 Processing})
I/ActivityManager( 976): Killing 32480:com.joaomgcd.autoappshub/u0a142 (adj 15): empty #17
I/WindowState( 976): WIN DEATH: Window{18d7a33b u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor}
I/ActivityManager( 976): Process com.jecelyin.editor (pid 3692) has died
I/ActivityManager( 976): START u0 {cmp=com.estrongs.android.pop/.app.OpenRecomm (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{2855e6cf token=Token{3ed2bb2e ActivityRecord{3facb9a9 u0 com.estrongs.android.pop/.app.OpenRecomm t2098}}} to stack=1 task=2098 at 1
V/WindowManager( 976): Adding window Window{3bce48 u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm} at 14 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): START u0 {act=android.intent.action.VIEW dat=file:///storage/emulated/0/modpescript_dump.txt typ=text/plain flg=0x10000000 cmp=com.jecelyin.editor/.JecEditor (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{424c08c token=Token{28e421bf ActivityRecord{3e7a4bde u0 com.jecelyin.editor/.JecEditor t2186}}} to stack=1 task=2186 at 0
V/WindowManager( 976): Adding window Window{3a35978 u0 Starting com.jecelyin.editor} at 15 of 23 (after Window{3bce48 u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm})
I/ActivityManager( 976): Start proc 3787:com.jecelyin.editor/u0a249 for activity com.jecelyin.editor/.JecEditor
V/WindowManager( 976): Adding window Window{23b58f54 u0 Processing} at 15 of 24 (before Window{3a35978 u0 Starting com.jecelyin.editor})
V/WindowManager( 976): Adding window Window{20115df9 u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor} at 15 of 25 (before Window{23b58f54 u0 Processing})
I/WindowState( 976): WIN DEATH: Window{20115df9 u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor}
I/ActivityManager( 976): Process com.jecelyin.editor (pid 3787) has died
V/WindowManager( 976): not Base app: Adding window Window{1a40bcd6 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity} at 14 of 22
V/WindowManager( 976): not Base app: Adding window Window{e9bda5b u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity} at 14 of 22
I/ActivityManager( 976): START u0 {cmp=com.estrongs.android.pop/.app.OpenRecomm (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{1f2606be token=Token{31f6b979 ActivityRecord{3581e640 u0 com.estrongs.android.pop/.app.OpenRecomm t2098}}} to stack=1 task=2098 at 1
V/WindowManager( 976): Adding window Window{131da23b u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm} at 14 of 23 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): START u0 {act=android.intent.action.VIEW dat=file:///storage/emulated/0/settings.xml typ=text/xml flg=0x10000000 cmp=com.jecelyin.editor/.JecEditor (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{e4e007a token=Token{3fd7d4a5 ActivityRecord{1e0f029c u0 com.jecelyin.editor/.JecEditor t2187}}} to stack=1 task=2187 at 0
V/WindowManager( 976): Adding window Window{2aabaa46 u0 Starting com.jecelyin.editor} at 15 of 24 (after Window{131da23b u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm})
I/ActivityManager( 976): Start proc 3920:com.jecelyin.editor/u0a249 for activity com.jecelyin.editor/.JecEditor
V/WindowManager( 976): Adding window Window{1be67193 u0 Processing} at 15 of 24 (before Window{2aabaa46 u0 Starting com.jecelyin.editor})
V/WindowManager( 976): Adding window Window{21f7fefc u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor} at 15 of 25 (before Window{1be67193 u0 Processing})
I/WindowState( 976): WIN DEATH: Window{21f7fefc u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor}
I/WindowState( 976): WIN DEATH: Window{3b7fddf5 u0 Toast}
I/ActivityManager( 976): Process com.jecelyin.editor (pid 3920) has died
I/ActivityManager( 976): START u0 {cmp=com.estrongs.android.pop/.app.OpenRecomm (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{8cdc345 token=Token{1ac307bc ActivityRecord{325f47af u0 com.estrongs.android.pop/.app.OpenRecomm t2098}}} to stack=1 task=2098 at 1
V/WindowManager( 976): Adding window Window{2b028666 u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm} at 14 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): START u0 {act=android.intent.action.VIEW dat=file:///storage/emulated/0/miniclipId.txt typ=text/plain flg=0x10000000 cmp=com.jecelyin.editor/.JecEditor (has extras)} from uid 10118 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{3f1e86d8 token=Token{2b6321bb ActivityRecord{14ad9e4a u0 com.jecelyin.editor/.JecEditor t2188}}} to stack=1 task=2188 at 0
V/WindowManager( 976): Adding window Window{25613884 u0 Starting com.jecelyin.editor} at 15 of 23 (after Window{2b028666 u0 com.estrongs.android.pop/com.estrongs.android.pop.app.OpenRecomm})
I/ActivityManager( 976): Start proc 4001:com.jecelyin.editor/u0a249 for activity com.jecelyin.editor/.JecEditor
V/WindowManager( 976): Adding window Window{3bcede20 u0 Processing} at 15 of 24 (before Window{25613884 u0 Starting com.jecelyin.editor})
V/WindowManager( 976): Adding window Window{e8e8495 u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor} at 15 of 25 (before Window{3bcede20 u0 Processing})
I/WindowState( 976): WIN DEATH: Window{e8e8495 u0 com.jecelyin.editor/com.jecelyin.editor.JecEditor}
I/WindowState( 976): WIN DEATH: Window{18d8315a u0 Toast}
I/ActivityManager( 976): Process com.jecelyin.editor (pid 4001) has died
V/WindowManager( 976): not Base app: Adding window Window{10b2936 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity} at 14 of 22
V/ActivityManager( 976): Display changed displayId=0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Start proc 4505:com.joaomgcd.autoremote/u0a148 for broadcast com.joaomgcd.autoremote/.broadcastreceiver.BroadcastReceiverSendMessage
I/ActivityManager( 976): Start proc 4575:com.joaomgcd.autoappshub/u0a142 for broadcast com.joaomgcd.autoappshub/.broadcastreceiver.BroadcastReceiverAutoApps
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): Killing 3111:tw.fatminmin.xposed.minminguard/u0a322 (adj 15): empty #17
W/WindowManager( 976): Attempted to add input method window with unknown token android.os.Binder@e9ebf6b. Aborting.
W/WindowManager( 976): Attempted to add input method window with unknown token android.os.Binder@e9ebf6b. Aborting.
V/WindowManager( 976): Adding window Window{3e03cebf u0 PopupWindow:e9077dc} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.101}
V/WindowManager( 976): Adding window Window{121fe98e u0 jackpal.androidterm/jackpal.androidterm.Term} at 13 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/WindowManager( 976): Screen frozen for +766ms due to Window{121fe98e u0 jackpal.androidterm/jackpal.androidterm.Term}
V/WindowManager( 976): Adding window Window{2d21866d u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2915e78f u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1a21625 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{e136dab u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{602efa1 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{35193987 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3d3de4dd u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3d760311 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{19dd9277 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1726bf4d u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{a8edf13 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2aad0349 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{efe596f u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{32398b05 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{e411d8b u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{204cd281 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2ac050b9 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{145e7c5f u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{378c3f75 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{c987f7b u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2aa59857 u0 PopupWindow:1dd143c} at 15 of 23 (after Window{6ade230 u0 InputMethod})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/WindowManager( 976): Adding window Window{29a09f99 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity} at 14 of 23 (after Window{1d2d2782 u0 com.google.android.googlequicksearchbox/com.google.android.launcher.GEL})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): Process com.google.android.gm (pid 31542) has died
I/ActivityManager( 976): START u0 {flg=0x10100000 cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity} from uid 10263 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{1359e7fc token=Token{140080ef ActivityRecord{35bce9ce u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2181}}} to stack=1 task=2181 at 0
V/WindowManager( 976): Adding window Window{3f9b393d u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): Start proc 4812:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{3aae95a9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{3f9b393d u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{25a4c83a u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{3aae95a9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{3fb6fd5 u0 PopupWindow:df97ac2} at 15 of 26 (after Window{25a4c83a u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.102}
V/ActivityManager( 976): Display changed displayId=0
I/WindowState( 976): WIN DEATH: Window{25a4c83a u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{3fb6fd5 u0 PopupWindow:df97ac2} from container Window{25a4c83a u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 4812) has died
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@35404c8c does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/WindowManager( 976): Screen frozen for +503ms due to Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14000004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{15abfd25 token=Token{707d1c ActivityRecord{1cedb68f u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2189}}} to stack=1 task=2189 at 0
V/WindowManager( 976): Adding window Window{3e0db352 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 14 of 23 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): Start proc 4865:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.103}
V/WindowManager( 976): Adding window Window{26a6464d u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{3e0db352 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{2c7bff4e u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{26a6464d u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
W/WindowManager( 976): Window freeze timeout expired.
W/WindowManager( 976): Force clearing orientation change: Window{3e0db352 u0 Starting net.zhuoweizhang.mcpelauncher.pro}
W/WindowManager( 976): Force clearing orientation change: Window{26a6464d u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force clearing orientation change: Window{2c7bff4e u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force clearing orientation change: Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
V/WindowManager( 976): Adding window Window{12e25cbd u0 PopupWindow:2f486b09} at 15 of 26 (after Window{2c7bff4e u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
I/WindowManager( 976): Screen frozen for +2s361ms due to Window{3e0db352 u0 Starting net.zhuoweizhang.mcpelauncher.pro}
I/WindowState( 976): WIN DEATH: Window{2c7bff4e u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{12e25cbd u0 PopupWindow:2f486b09} from container Window{2c7bff4e u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{26a6464d u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@357cbc14 does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 4865) has died
W/ActivityManager( 976): Force removing ActivityRecord{1cedb68f u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2189}: app died, no saved state
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.104}
I/WindowManager( 976): Screen frozen for +275ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.105}
I/WindowManager( 976): Screen frozen for +402ms due to Window{29a09f99 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
V/WindowManager( 976): Adding window Window{3345d6cc u0 PopupWindow:187616ce} at 15 of 23 (after Window{2fac0f5d u0 InputMethod})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/WindowManager( 976): not Base app: Adding window Window{20dd7219 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity} at 14 of 22
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.106}
V/ActivityManager( 976): Display changed displayId=0
V/ActivityManager( 976): Display changed displayId=0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.107}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +905ms due to Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity}
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.108}
I/WindowManager( 976): Screen frozen for +620ms due to Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/WindowManager( 976): Adding window Window{26c01928 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity} at 13 of 22 (after Window{1d2d2782 u0 com.google.android.googlequicksearchbox/com.google.android.launcher.GEL})
V/WindowManager( 976): Adding window Window{964a696 u0 jackpal.androidterm/jackpal.androidterm.Term} at 13 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.109}
V/WindowManager( 976): Adding window Window{112d387e u0 jackpal.androidterm/jackpal.androidterm.Term} at 13 of 24 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/WindowManager( 976): Screen frozen for +640ms due to Window{112d387e u0 jackpal.androidterm/jackpal.androidterm.Term}
V/WindowManager( 976): Adding window Window{25bbb165 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{12fba919 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{26e9e9ea u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{1a97cb78 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3e74bab6 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3d3a2724 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3909cc42 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{23849190 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{21ec6a8e u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3fc936bc u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{2348a19a u0 PopupWindow:1b73f0f2} at 16 of 24 (after Window{3fc936bc u0 PopupWindow:1b73f0f2 EXITING})
V/WindowManager( 976): Adding window Window{355102a8 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{2bff3d66 u0 PopupWindow:f4c2a3e} at 16 of 24 (after Window{355102a8 u0 PopupWindow:1b73f0f2})
V/WindowManager( 976): Adding window Window{11e6e843 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{1c5ca54a u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{1a47cc16 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{1e000784 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3d3817f0 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{342447ee u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{2a9ec31c u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{10f4fa u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{862f508 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{2ab659b4 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{36852952 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{15395d20 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{38a8889e u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{23272b4c u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{d1090aa u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{641b038 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{1c3f0d76 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3068b02 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3c6e4e50 u0 PopupWindow:f4c2a3e} at 16 of 24 (after Window{3068b02 u0 PopupWindow:1b73f0f2})
V/WindowManager( 976): Adding window Window{2c6785a u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{2601003 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3eca75b9 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{10c9a95f u0 PopupWindow:f4c2a3e} at 16 of 24 (after Window{3eca75b9 u0 PopupWindow:1b73f0f2})
V/WindowManager( 976): Adding window Window{9097c7b u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3dafb262 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{25173f29 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
I/ActivityManager( 976): Process com.google.android.apps.plus (pid 29050) has died
W/ActivityManager( 976): Scheduling restart of crashed service com.google.android.apps.plus/com.google.android.libraries.social.networkqueue.impl.NetworkQueueService in 1004417024ms
V/WindowManager( 976): Adding window Window{e6e7a6b u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{286aa61 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{32f85247 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3c228b9d u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{195dcbe3 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{5e7035e u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{1eb89155 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{16c6d45b u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{1ebdedd1 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{11145b37 u0 PopupWindow:1b73f0f2} at 16 of 24 (after Window{1ebdedd1 u0 PopupWindow:1b73f0f2 EXITING})
V/WindowManager( 976): Adding window Window{3ae2960d u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{174973d3 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{22f8609 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{33ad7a2f u0 PopupWindow:1b73f0f2} at 16 of 24 (after Window{22f8609 u0 PopupWindow:1b73f0f2 EXITING})
V/WindowManager( 976): Adding window Window{114179c5 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{384d9c3b u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{2f02a8b1 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{176fc117 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{9681eed u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3e2557b3 u0 PopupWindow:1b73f0f2} at 16 of 24 (after Window{9681eed u0 PopupWindow:1b73f0f2 EXITING})
V/WindowManager( 976): Adding window Window{2d34bce9 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{3593bc0f u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{9da0a2b u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
V/WindowManager( 976): Adding window Window{d9e2021 u0 PopupWindow:1b73f0f2} at 15 of 23 (after Window{376e10cd u0 InputMethod})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/WindowManager( 976): Adding window Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity} at 14 of 23 (after Window{1d2d2782 u0 com.google.android.googlequicksearchbox/com.google.android.launcher.GEL})
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14100004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{2cd5d632 token=Token{3e970e3d ActivityRecord{18374394 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2189}}} to stack=1 task=2189 at 0
V/WindowManager( 976): Adding window Window{18977bfb u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{112d387e u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 5262:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{3473a9c7 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{18977bfb u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{8210360 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{3473a9c7 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{3495a353 u0 PopupWindow:15cc2410} at 15 of 26 (after Window{8210360 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/WindowState( 976): WIN DEATH: Window{8210360 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{3495a353 u0 PopupWindow:15cc2410} from container Window{8210360 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{3473a9c7 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@9694742 does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 5262) has died
W/ActivityManager( 976): Force removing ActivityRecord{18374394 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2189}: app died, no saved state
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.110}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +368ms due to Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.111}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +472ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
V/WindowManager( 976): Adding window Window{3f45bf28 u0 PopupWindow:1119a744} at 15 of 23 (after Window{9fd3855 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3f4ca272 u0 PopupWindow:1119a744} at 15 of 23 (after Window{9fd3855 u0 InputMethod})
V/WindowManager( 976): Adding window Window{128ba79 u0 PopupWindow:1119a744} at 15 of 23 (after Window{9fd3855 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2ed5db6c u0 PopupWindow:1119a744} at 15 of 23 (after Window{9fd3855 u0 InputMethod})
V/WindowManager( 976): Adding window Window{21ea0dca u0 PopupWindow:1119a744} at 15 of 23 (after Window{9fd3855 u0 InputMethod})
V/WindowManager( 976): Adding window Window{16fb4258 u0 PopupWindow:1119a744} at 16 of 24 (after Window{21ea0dca u0 PopupWindow:1119a744 EXITING})
V/WindowManager( 976): Adding window Window{12833c96 u0 PopupWindow:1119a744} at 16 of 24 (after Window{16fb4258 u0 PopupWindow:1119a744 EXITING})
V/WindowManager( 976): Adding window Window{210e2c04 u0 PopupWindow:1119a744} at 15 of 23 (after Window{9fd3855 u0 InputMethod})
V/WindowManager( 976): Adding window Window{bae8c22 u0 PopupWindow:1119a744} at 15 of 23 (after Window{9fd3855 u0 InputMethod})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14100004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{dc6ccb8 token=Token{2acb531b ActivityRecord{2c7c392a u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2189}}} to stack=1 task=2189 at 0
V/WindowManager( 976): Adding window Window{3c21dac9 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{112d387e u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 5337:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{1249eef5 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{3c21dac9 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{23926f56 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{1249eef5 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{7357f65 u0 PopupWindow:df97ac2} at 15 of 26 (after Window{23926f56 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.112}
I/WindowState( 976): WIN DEATH: Window{23926f56 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{7357f65 u0 PopupWindow:df97ac2} from container Window{23926f56 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 5337) has died
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@2681a05c does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/WindowManager( 976): Screen frozen for +312ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14000004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{1b575fb4 token=Token{3bdea487 ActivityRecord{23e57cc6 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2190}}} to stack=1 task=2190 at 0
V/WindowManager( 976): Adding window Window{332e1595 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 14 of 22 (after Window{112d387e u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 5393:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.113}
V/ActivityManager( 976): Display changed displayId=0
V/WindowManager( 976): Adding window Window{1d408e05 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 23 (before Window{332e1595 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{1622d626 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{1d408e05 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
V/WindowManager( 976): Adding window Window{fda0275 u0 PopupWindow:2f486b09} at 15 of 25 (after Window{1622d626 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/WindowManager( 976): Screen frozen for +1s923ms due to Window{332e1595 u0 Starting net.zhuoweizhang.mcpelauncher.pro}
I/WindowState( 976): WIN DEATH: Window{1622d626 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{fda0275 u0 PopupWindow:2f486b09} from container Window{1622d626 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{1d408e05 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@2a4905ac does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 5393) has died
W/ActivityManager( 976): Force removing ActivityRecord{23e57cc6 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2190}: app died, no saved state
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.114}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +331ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.115}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +583ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
V/WindowManager( 976): Adding window Window{395ef97e u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{18919a18 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{3176ba56 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{20123fc4 u0 PopupWindow:1bb8981f} at 16 of 24 (after Window{3176ba56 u0 PopupWindow:1bb8981f EXITING})
V/WindowManager( 976): Adding window Window{17bc25e2 u0 PopupWindow:1bb8981f} at 16 of 24 (after Window{20123fc4 u0 PopupWindow:1bb8981f EXITING})
V/WindowManager( 976): Adding window Window{3bd59430 u0 PopupWindow:1bb8981f} at 16 of 24 (after Window{17bc25e2 u0 PopupWindow:1bb8981f EXITING})
V/WindowManager( 976): Adding window Window{3ffabe2e u0 PopupWindow:1bb8981f} at 16 of 24 (after Window{3bd59430 u0 PopupWindow:1bb8981f EXITING})
V/WindowManager( 976): Adding window Window{1d37c35c u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{33788f3a u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{d2bb948 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{b2707c7 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{3f7dcb92 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{14e6960 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{37290ede u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{b20bb8c u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{2b1b70b7 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{5b9678d u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{166c6153 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{3561ef89 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{9d1bfaf u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
V/WindowManager( 976): Adding window Window{32f0fb45 u0 PopupWindow:1bb8981f} at 15 of 23 (after Window{bf8542a u0 InputMethod})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14100004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{364d0533 token=Token{87b84a2 ActivityRecord{2d05b06d u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2190}}} to stack=1 task=2190 at 0
V/WindowManager( 976): Adding window Window{55fee08 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{112d387e u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 5493:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{3f4560e4 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{55fee08 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{1fd6cd49 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{3f4560e4 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{3434cb14 u0 PopupWindow:15cc2410} at 15 of 26 (after Window{1fd6cd49 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/WindowState( 976): WIN DEATH: Window{1fd6cd49 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{3434cb14 u0 PopupWindow:15cc2410} from container Window{1fd6cd49 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{3f4560e4 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@252b2167 does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 5493) has died
W/ActivityManager( 976): Force removing ActivityRecord{2d05b06d u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2190}: app died, no saved state
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.116}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +289ms due to Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.117}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +461ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
I/ActivityManager( 976): Start proc 5560:org.mozilla.fennec_fdroid/u0a305 for service org.mozilla.fennec_fdroid/org.mozilla.gecko.background.healthreport.upload.HealthReportUploadService
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.118}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +349ms due to Window{28e5537b u0 StatusBar}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.119}
I/WindowManager( 976): Screen frozen for +413ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14100004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{36a56395 token=Token{1aceb74c ActivityRecord{3034bb7f u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2190}}} to stack=1 task=2190 at 0
V/WindowManager( 976): Adding window Window{21187702 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 11 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): Start proc 5606:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{3b7551b9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 13 of 22 (before Window{21187702 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{2ff4180a u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 13 of 23 (before Window{3b7551b9 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{311b29 u0 PopupWindow:df97ac2} at 14 of 24 (after Window{2ff4180a u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.120}
I/WindowState( 976): WIN DEATH: Window{2ff4180a u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{311b29 u0 PopupWindow:df97ac2} from container Window{2ff4180a u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 5606) has died
I/WindowManager( 976): Screen frozen for +293ms due to Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14000004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{36a3387d token=Token{280caed4 ActivityRecord{1d293c27 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2191}}} to stack=1 task=2191 at 0
V/WindowManager( 976): Adding window Window{305deca u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 13 of 21 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): Start proc 5653:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.121}
V/ActivityManager( 976): Display changed displayId=0
V/WindowManager( 976): Adding window Window{27eadaa5 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 13 of 22 (before Window{305deca u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{16e41846 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 13 of 23 (before Window{27eadaa5 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{1880b715 u0 PopupWindow:2f486b09} at 14 of 24 (after Window{16e41846 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
I/WindowManager( 976): Screen frozen for +1s923ms due to Window{305deca u0 Starting net.zhuoweizhang.mcpelauncher.pro}
I/WindowState( 976): WIN DEATH: Window{16e41846 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{1880b715 u0 PopupWindow:2f486b09} from container Window{16e41846 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{27eadaa5 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@237d28cc does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 5653) has died
W/ActivityManager( 976): Force removing ActivityRecord{1d293c27 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2191}: app died, no saved state
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.122}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +302ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.123}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +441ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10100000 cmp=jackpal.androidterm/.Term bnds=[91,1172][1348,2429]} from uid 10103 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{3746758d token=Token{2117624 ActivityRecord{2cd24eb7 u0 jackpal.androidterm/.Term t2183}}} to stack=1 task=2183 at 0
V/WindowManager( 976): Adding window Window{205b65bc u0 jackpal.androidterm/jackpal.androidterm.Term} at 11 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
V/WindowManager( 976): Adding window Window{20e49408 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3ccadf23 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{772a9d9 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
I/ActivityManager( 976): Start proc 5720:com.android.providers.calendar/u0a5 for content provider com.android.providers.calendar/.CalendarProvider2
I/ActivityManager( 976): Killing 709:com.radiusnetworks.locate/u0a270 (adj 15): empty #17
I/ActivityManager( 976): Start proc 5747:com.google.android.calendar/u0a43 for broadcast com.google.android.calendar/com.android.calendar.alerts.AlertReceiver
V/WindowManager( 976): Adding window Window{45ab668 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2c9b7726 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{bb7dfb2 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
I/ActivityManager( 976): Killing 735:com.staircase3.opensignal/u0a180 (adj 15): empty #17
V/WindowManager( 976): Adding window Window{317bea80 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{fc044fe u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{17f52eac u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{fdc8998 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{245f5d6 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{15dca744 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{29039962 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{249ef3b0 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{d05e9ae u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{35f79adc u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{20caf2ba u0 PopupWindow:58008bc} at 16 of 24 (after Window{35f79adc u0 PopupWindow:19124390})
V/WindowManager( 976): Adding window Window{ea58086 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{24eea8e0 u0 PopupWindow:19124390} at 15 of 23 (after Window{1340d6f0 u0 InputMethod})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14100004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{c5a6b27 token=Token{dafb9e6 ActivityRecord{1da82041 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2191}}} to stack=1 task=2191 at 0
V/WindowManager( 976): Adding window Window{94f676c u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{205b65bc u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 5795:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{25213d88 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{94f676c u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{146eaea3 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{25213d88 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{1b08af82 u0 PopupWindow:15cc2410} at 15 of 26 (after Window{146eaea3 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/WindowState( 976): WIN DEATH: Window{146eaea3 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{1b08af82 u0 PopupWindow:15cc2410} from container Window{146eaea3 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{25213d88 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@10f33acd does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 5795) has died
W/ActivityManager( 976): Force removing ActivityRecord{1da82041 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2191}: app died, no saved state
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.124}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +427ms due to Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.125}
I/WindowManager( 976): Screen frozen for +424ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
V/WindowManager( 976): Adding window Window{134cd414 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{211c2ffe u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{14576a44 u0 PopupWindow:1f656181} at 15 of 24 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{382e6b0 u0 PopupWindow:1f656181} at 15 of 24 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1eb294ae u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{aa7bddc u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{38174dba u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3de0dbc8 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1ddc8b86 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{160bec74 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1465da12 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1a355be0 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{10c3855e u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{33c4560c u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{36be996a u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1966c6f8 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2ba4e236 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3cbd5aa4 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{9d4ebc2 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{26c77d10 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{10a020e u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3d6fe3c5 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3995de28 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3f4844e6 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{277eb4d4 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{267c4a40 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{24aba71f u0 PopupWindow:4e84f1c} at 14 of 23 (after Window{205b65bc u0 jackpal.androidterm/jackpal.androidterm.Term})
V/WindowManager( 976): Adding window Window{170a475d u0 PopupWindow:4e84f1c} at 14 of 23 (after Window{205b65bc u0 jackpal.androidterm/jackpal.androidterm.Term})
V/WindowManager( 976): Adding window Window{c187da u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3ae9f2e8 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{c047a6 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{30df5594 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{8993832 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3a263700 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{389ea57e u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3237c32c u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{11fb9b8a u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{10f3e618 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{b7fe656 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2a4d4bc4 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{272c11e2 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3cb56030 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{147d6a2e u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3a484f5c u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2b79fb3a u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{38b90548 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{c7c9106 u0 PopupWindow:9601ab2} at 16 of 24 (after Window{38b90548 u0 PopupWindow:1f656181})
V/WindowManager( 976): Adding window Window{fb93560 u0 PopupWindow:1f656181} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.126}
V/ActivityManager( 976): Display changed displayId=0
V/WindowManager( 976): Adding window Window{4b88133 u0 jackpal.androidterm/jackpal.androidterm.Term} at 13 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
W/WindowManager( 976): App freeze timeout expired.
V/ActivityManager( 976): Display changed displayId=0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.127}
V/WindowManager( 976): Adding window Window{4028ed1 u0 jackpal.androidterm/jackpal.androidterm.Term} at 13 of 23 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +521ms due to Window{2cd3d211 u0 InputMethod}
V/WindowManager( 976): Adding window Window{2333c99c u0 PopupWindow:19160abe} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2c23eca3 u0 PopupWindow:19160abe} at 16 of 24 (after Window{2333c99c u0 PopupWindow:19160abe EXITING})
V/WindowManager( 976): Adding window Window{2cfeafff u0 PopupWindow:19160abe} at 15 of 23 (after Window{2cd3d211 u0 InputMethod})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14100004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{35596a00 token=Token{370c7883 ActivityRecord{7ae7332 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2191}}} to stack=1 task=2191 at 0
V/WindowManager( 976): Adding window Window{261b0f71 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{4028ed1 u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 6159:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{3d0f7292 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{261b0f71 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{663f3bf u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{3d0f7292 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{1655a442 u0 PopupWindow:df97ac2} at 15 of 26 (after Window{663f3bf u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.128}
V/ActivityManager( 976): Display changed displayId=0
I/WindowState( 976): WIN DEATH: Window{1655a442 u0 PopupWindow:df97ac2}
I/WindowState( 976): WIN DEATH: Window{663f3bf u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 6159) has died
I/WindowManager( 976): Screen frozen for +379ms due to Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14000004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{94d505a token=Token{1dc4f805 ActivityRecord{2c77177c u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2192}}} to stack=1 task=2192 at 0
V/WindowManager( 976): Adding window Window{2de10803 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 14 of 22 (after Window{4028ed1 u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 6215:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.129}
V/WindowManager( 976): Adding window Window{31fc204f u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 23 (before Window{2de10803 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{368381c8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{31fc204f u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{1c061c0c u0 PopupWindow:2f486b09} at 15 of 25 (after Window{368381c8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
W/WindowManager( 976): Window freeze timeout expired.
W/WindowManager( 976): Force clearing orientation change: Window{2de10803 u0 Starting net.zhuoweizhang.mcpelauncher.pro}
W/WindowManager( 976): Force clearing orientation change: Window{1c061c0c u0 PopupWindow:2f486b09}
W/WindowManager( 976): Force clearing orientation change: Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
I/WindowManager( 976): Screen frozen for +2s94ms due to Window{2de10803 u0 Starting net.zhuoweizhang.mcpelauncher.pro}
I/WindowState( 976): WIN DEATH: Window{368381c8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{1c061c0c u0 PopupWindow:2f486b09} from container Window{368381c8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{31fc204f u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@134bbb3f does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 6215) has died
W/ActivityManager( 976): Force removing ActivityRecord{2c77177c u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2192}: app died, no saved state
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.130}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +310ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.131}
I/WindowManager( 976): Screen frozen for +439ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
V/WindowManager( 976): Adding window Window{3d72a71d u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{15a82bf u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{36be8bdb u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{1ebb3151 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{3430918d u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{28909b53 u0 PopupWindow:302547ef} at 16 of 24 (after Window{3430918d u0 PopupWindow:9422a82})
V/WindowManager( 976): Adding window Window{12ff99af u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{295a10c1 u0 PopupWindow:9422a82} at 16 of 24 (after Window{12ff99af u0 PopupWindow:9422a82 EXITING})
V/WindowManager( 976): Adding window Window{18504c9f u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{158129b5 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{277713bb u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{17e7ac31 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{18793097 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{3259da6d u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{1b163f33 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{3646b069 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{116b9b8f u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{310ea25 u0 PopupWindow:9422a82} at 16 of 24 (after Window{116b9b8f u0 PopupWindow:9422a82 EXITING})
V/WindowManager( 976): Adding window Window{381061ab u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{118b03a1 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{33f16d87 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{1709a695 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{29510b9b u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{152b1711 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{292ac677 u0 PopupWindow:9422a82} at 16 of 24 (after Window{152b1711 u0 PopupWindow:9422a82 EXITING})
V/WindowManager( 976): Adding window Window{3719134d u0 PopupWindow:9422a82} at 16 of 24 (after Window{292ac677 u0 PopupWindow:9422a82 EXITING})
V/WindowManager( 976): Adding window Window{137b5313 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{39709749 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{2c3e0d6f u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{2ba25f05 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{11c8118b u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{296ee681 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{28a43b67 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{302269bd u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{292f2703 u0 PopupWindow:302547ef} at 16 of 24 (after Window{302269bd u0 PopupWindow:9422a82})
V/WindowManager( 976): Adding window Window{2af3305f u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{cbd71f1 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{32494b5b u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{139c4336 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{1739550d u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{3c3cad3 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{26b33509 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{22f6412f u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{18372727 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{4b69b7d u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{258e340 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{1185cbbe u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{2a88f36c u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{acee5ca u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{2faef7b1 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{1a0b9c70 u0 PopupWindow:302547ef} at 16 of 24 (after Window{2faef7b1 u0 PopupWindow:9422a82})
V/WindowManager( 976): Adding window Window{1e660f9c u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{c24f46 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{17cb9c5d u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{1a3701a0 u0 PopupWindow:9422a82} at 16 of 24 (after Window{17cb9c5d u0 PopupWindow:9422a82 EXITING})
V/WindowManager( 976): Adding window Window{32a6011e u0 PopupWindow:9422a82} at 16 of 24 (after Window{1a3701a0 u0 PopupWindow:9422a82 EXITING})
V/WindowManager( 976): Adding window Window{38ad112a u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{286315f6 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{26e834ef u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{34dae8a6 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{21b28d3d u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{10c3d000 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{1f4c667e u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{3795ec2c u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{1c446c8a u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{4c756 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{62794c4 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{159e02e2 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{166b3930 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{169d6b2e u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
V/WindowManager( 976): Adding window Window{3c02b85c u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
I/ActivityManager( 976): Start proc 6452:com.android.cellbroadcastreceiver/u0a6 for broadcast com.android.cellbroadcastreceiver/.CellBroadcastReceiver
I/ActivityManager( 976): Start proc 6487:com.qualcomm.timeservice/1000 for broadcast com.qualcomm.timeservice/.TimeServiceBroadcastReceiver
V/WindowManager( 976): Adding window Window{194010eb u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
I/ActivityManager( 976): Start proc 6506:com.google.android.keep/u0a86 for broadcast com.google.android.keep/.notification.AlertReceiver
I/ActivityManager( 976): Killing 760:ind.fem.black.xposed.mods/u0a347 (adj 15): empty #17
V/WindowManager( 976): Adding window Window{40664e1 u0 PopupWindow:302547ef} at 16 of 24 (after Window{194010eb u0 PopupWindow:9422a82})
I/ActivityManager( 976): Start proc 6529:ch.bitspin.timely/u0a101 for broadcast ch.bitspin.timely/.alarm.AlarmBroadcastReceiver
I/ActivityManager( 976): Killing 1980:android.process.media/u0a10 (adj 15): empty #17
V/WindowManager( 976): Adding window Window{1ee14851 u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
I/ActivityManager( 976): Killing 5560:org.mozilla.fennec_fdroid/u0a305 (adj 15): empty #17
I/ActivityManager( 976): Killing 5720:com.android.providers.calendar/u0a5 (adj 15): empty #17
I/ActivityManager( 976): Start proc 6579:com.pandora.android/u0a172 for broadcast com.pandora.android/.util.AlarmInitReceiver
V/WindowManager( 976): Adding window Window{228bc13e u0 PopupWindow:9422a82} at 15 of 23 (after Window{25af73fb u0 InputMethod})
I/ActivityManager( 976): Killing 9306:com.lsdroid.cerberus/u0a158 (adj 15): empty #17
I/ActivityManager( 976): Start proc 6641:com.android.providers.calendar/u0a5 for broadcast com.android.providers.calendar/.CalendarProviderBroadcastReceiver
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14100004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{ebdba0a token=Token{34533a75 ActivityRecord{c841dac u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2192}}} to stack=1 task=2192 at 0
V/WindowManager( 976): Adding window Window{10a7b5f3 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{4028ed1 u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 6668:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{3e70d93f u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{10a7b5f3 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{214712f8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{3e70d93f u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{1f98902f u0 PopupWindow:15cc2410} at 15 of 26 (after Window{214712f8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/ActivityManager( 976): Killing 29773:eu.chainfire.supersu/u0a95 (adj 15): empty #17
I/WindowState( 976): WIN DEATH: Window{214712f8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{1f98902f u0 PopupWindow:15cc2410} from container Window{214712f8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{3e70d93f u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@23faae0e does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 6668) has died
W/ActivityManager( 976): Force removing ActivityRecord{c841dac u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2192}: app died, no saved state
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.132}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +278ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.133}
I/WindowManager( 976): Screen frozen for +438ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
V/WindowManager( 976): Adding window Window{31e684f9 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{238311bb u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{10e3fd33 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{7f59e69 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2957398f u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{bc0b825 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2617dfab u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3069b1a1 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2df2cb87 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{144ec6dd u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1da69923 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2375f3d9 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{153fa47f u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2a48f495 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3f34099b u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{18114511 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2d3fa477 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2d34214d u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{27001113 u0 PopupWindow:1bd5c143} at 16 of 24 (after Window{2d34214d u0 PopupWindow:1bd5c143 EXITING})
V/WindowManager( 976): Adding window Window{112e8549 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{650ab6f u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{c512d05 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3d668f8b u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{213c9481 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{22ac9967 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{21cf7bd u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1e5f6503 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1da652b9 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{15e94e5f u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3fd06175 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{30fe717b u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2529ff1 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1478aa57 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{8e04a2d u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2ef394f3 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{5245c29 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{33288d4f u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3e7d91e5 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1c0aaf6b u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{197a6761 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{16a2d747 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1b15189d u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2daba0e3 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{23afa199 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{12ed683f u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1dcfbe55 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{225a495b u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1c9aead1 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3aea2037 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2612630d u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{93688d3 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{250f2309 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1fd6df2f u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3efde6c5 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{397c3f4b u0 PopupWindow:1bd5c143} at 16 of 24 (after Window{3efde6c5 u0 PopupWindow:1bd5c143 EXITING})
I/ActivityManager( 976): Start proc 6764:android.process.media/u0a10 for content provider com.android.providers.media/.MediaProvider
I/ActivityManager( 976): Killing 1266:lt.noframe.fieldsareameasure/u0a330 (adj 15): empty #17
I/ActivityManager( 976): Start proc 6790:com.lsdroid.cerberus/u0a158 for broadcast com.lsdroid.cerberus/o.ᔦ
I/ActivityManager( 976): Killing 32245:com.vzw.hss.myverizonged/u0a189 (adj 15): empty #17
V/WindowManager( 976): Adding window Window{33358270 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3025f66e u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3748559c u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{28bf0b7a u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2e532f88 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2a26546 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3bafbc34 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{70f8fd2 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3ca667a0 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{21b2d71e u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{189a5dcc u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3ab1472a u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{27f58ab8 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2574abf6 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1dd49a64 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{30379182 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2072f8d0 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{205143ce u0 PopupWindow:1bd5c143} at 16 of 24 (after Window{2072f8d0 u0 PopupWindow:1bd5c143 EXITING})
V/WindowManager( 976): Adding window Window{3c56d1fc u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2741ceda u0 PopupWindow:1a177bec} at 16 of 24 (after Window{3c56d1fc u0 PopupWindow:1bd5c143})
V/WindowManager( 976): Adding window Window{1c7dfea6 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{32de3600 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{accc518 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{19995d56 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{12551ac4 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2e5f8e2 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1eeb1f30 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{f6ec12e u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{239afe5c u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{19a9c23a u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1607a448 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3b61c806 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2116bcf4 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
V/WindowManager( 976): Adding window Window{e425e92 u0 PopupWindow:1a177bec} at 16 of 24 (after Window{2116bcf4 u0 PopupWindow:1bd5c143})
V/WindowManager( 976): Adding window Window{2923d1de u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
I/ActivityManager( 976): Start proc 6919:com.google.android.gm/u0a85 for service com.google.android.gm/.provider.MailSyncAdapterService
I/ActivityManager( 976): Start proc 6944:com.google.android.gm.exchange/u0a84 for service com.google.android.gm.exchange/com.android.exchange.service.EasService
W/ActivityManager( 976): Unable to start service Intent { cmp=com.google.android.gm/com.android.email.service.AttachmentService } U=0: not found
I/ActivityManager( 976): Killing 32305:net.flixster.android/u0a210 (adj 15): empty #17
I/ActivityManager( 976): Process com.google.android.apps.googlevoice (pid 31682) has died
W/ActivityManager( 976): Scheduling restart of crashed service com.google.android.apps.googlevoice/.VoicemailPrefetchService in 1000ms
W/ActivityManager( 976): Scheduling restart of crashed service com.google.android.apps.googlevoice/.UpdateService in 11000ms
I/ActivityManager( 976): Start proc 6997:com.google.android.apps.googlevoice/u0a230 for service com.google.android.apps.googlevoice/.VoicemailPrefetchService
I/ActivityManager( 976): Killing 4575:com.joaomgcd.autoappshub/u0a142 (adj 15): empty #17
V/WindowManager( 976): Adding window Window{11db8ea9 u0 PopupWindow:1bd5c143} at 15 of 23 (after Window{29f81542 u0 InputMethod})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14100004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{180dc6b7 token=Token{1b9009b6 ActivityRecord{dbb8d51 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2192}}} to stack=1 task=2192 at 0
V/WindowManager( 976): Adding window Window{3e687dbc u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{4028ed1 u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 7085:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
V/WindowManager( 976): Adding window Window{906dcd8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{3e687dbc u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{e41f66d u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{906dcd8 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{25d72c08 u0 PopupWindow:df97ac2} at 15 of 26 (after Window{e41f66d u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/ActivityManager( 976): Process com.joaomgcd.autoremote (pid 4505) has died
I/ActivityManager( 976): Process com.cyo.comicrack.viewer:wifisync (pid 31787) has died
W/ActivityManager( 976): Scheduling restart of crashed service com.cyo.comicrack.viewer/.WifiSyncService in 1000ms
I/ActivityManager( 976): Process com.t3hh4xx0r.beacontasker (pid 1313) has died
W/ActivityManager( 976): Scheduling restart of crashed service com.t3hh4xx0r.beacontasker/.receiver.BackgroundService in 10965ms
I/ActivityManager( 976): Process ch.bitspin.timely (pid 6529) has died
I/ActivityManager( 976): Process com.google.android.keep (pid 6506) has died
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.134}
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Start proc 7125:com.cyo.comicrack.viewer:wifisync/u0a113 for service com.cyo.comicrack.viewer/.WifiSyncService
I/WindowState( 976): WIN DEATH: Window{e41f66d u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{25d72c08 u0 PopupWindow:df97ac2} from container Window{e41f66d u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 7085) has died
I/WindowManager( 976): Screen frozen for +495ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14000004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{3e7cfe37 token=Token{38e36f36 ActivityRecord{74f18d1 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2193}}} to stack=1 task=2193 at 0
V/WindowManager( 976): Adding window Window{294ecf3c u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 14 of 22 (after Window{4028ed1 u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 7160:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.135}
V/ActivityManager( 976): Display changed displayId=0
V/WindowManager( 976): Adding window Window{a978f3b u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 23 (before Window{294ecf3c u0 Starting net.zhuoweizhang.mcpelauncher.pro})
V/WindowManager( 976): Adding window Window{312b5004 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{a978f3b u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
W/WindowManager( 976): Window freeze timeout expired.
W/WindowManager( 976): Force clearing orientation change: Window{294ecf3c u0 Starting net.zhuoweizhang.mcpelauncher.pro}
W/WindowManager( 976): Force clearing orientation change: Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
V/WindowManager( 976): Adding window Window{1806bd2b u0 PopupWindow:2f486b09} at 15 of 25 (after Window{312b5004 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 4, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: On entry to LockedInner, mPendingLayoutChanges = 0x1
V/WindowManager( 976): Layouts looping: loop number 5, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: after finishPostLayoutPolicyLw, mPendingLayoutChanges = 0x0
V/WindowManager( 976): Layouts looping: mLayoutNeeded, mPendingLayoutChanges = 0x1
E/WindowManager( 976): Performed 6 layouts in a row. Skipping
I/WindowManager( 976): Screen frozen for +2s543ms due to Window{294ecf3c u0 Starting net.zhuoweizhang.mcpelauncher.pro}
I/WindowState( 976): WIN DEATH: Window{312b5004 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Force-removing child win Window{1806bd2b u0 PopupWindow:2f486b09} from container Window{312b5004 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{a978f3b u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@14d9c17a does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 7160) has died
W/ActivityManager( 976): Force removing ActivityRecord{74f18d1 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2193}: app died, no saved state
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.136}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +291ms due to Window{27a00326 u0 GestureAnywhereView}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.137}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +564ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
I/ActivityManager( 976): Start proc 7260:com.t3hh4xx0r.beacontasker/u0a271 for service com.t3hh4xx0r.beacontasker/.receiver.BackgroundService
V/WindowManager( 976): Adding window Window{17b464f1 u0 PopupWindow:14149686} at 15 of 23 (after Window{79a1bdd u0 InputMethod})
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.estrongs.android.pop/.view.FileExplorerActivity bnds=[541,301][719,469]} from uid 10196 on display 0
V/WindowManager( 976): not Base app: Adding window Window{2c3cd317 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity} at 14 of 22
V/ActivityManager( 976): Display changed displayId=0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.138}
I/ActivityManager( 976): Start proc 7368:com.google.android.apps.plus/u0a81 for broadcast com.google.android.apps.plus/.service.PhotosAppTransitionMonitor
I/ActivityManager( 976): Start proc 7406:com.vzw.hss.myverizonged/u0a189 for broadcast com.vzw.hss.myverizonged/com.vzw.hss.myverizon.rdd.analytics.receiver.RDDAnalyticsPlugInReceiver
I/ActivityManager( 976): Start proc 7426:com.radiusnetworks.locate/u0a270 for broadcast com.radiusnetworks.locate/org.altbeacon.beacon.startup.StartupBroadcastReceiver
I/ActivityManager( 976): Start proc 7450:com.staircase3.opensignal/u0a180 for broadcast com.staircase3.opensignal/.library.PowerConnectionReceiver
I/ActivityManager( 976): Start proc 7472:ind.fem.black.xposed.mods/u0a347 for broadcast ind.fem.black.xposed.mods/.DrivingMode.IntentReceiver
I/ActivityManager( 976): Killing 6487:com.qualcomm.timeservice/1000 (adj 15): empty #17
I/ActivityManager( 976): Start proc 7546:org.fdroid.fdroid/u0a216 for broadcast org.fdroid.fdroid/.receiver.WifiStateChangeReceiver
I/ActivityManager( 976): Waited long enough for: ServiceRecord{3ee0e219 u0 org.fdroid.fdroid/.net.WifiStateChangeService}
I/ActivityManager( 976): Killing 6579:com.pandora.android/u0a172 (adj 15): empty #17
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Process com.android.providers.calendar (pid 6641) has died
I/ActivityManager( 976): Process com.google.android.calendar (pid 5747) has died
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Start proc 7681:eu.chainfire.supersu/u0a95 for broadcast eu.chainfire.supersu/.UserPresentReceiver
I/ActivityManager( 976): Start proc 7709:lt.noframe.fieldsareameasure/u0a330 for broadcast lt.noframe.fieldsareameasure/com.parse.ParseBroadcastReceiver
I/ActivityManager( 976): Start proc 7736:net.flixster.android/u0a210 for broadcast net.flixster.android/com.parse.ParseBroadcastReceiver
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL} from uid 1000 on display 0
I/ActivityManager( 976): Killing 6452:com.android.cellbroadcastreceiver/u0a6 (adj 15): empty #17
I/ActivityManager( 976): Start proc 7800:com.joaomgcd.autoremote/u0a148 for broadcast com.joaomgcd.autoremote/.broadcastreceiver.BroadcastReceiverSendMessage
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN flg=0x14000000 cmp=com.abcOrganizer/.lite.shortcut.LabelShortcut bnds=[611,1337][828,1519] (has extras)} from uid 10103 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{3262465d token=Token{2309c834 ActivityRecord{faf5f07 u0 com.abcOrganizer/.lite.shortcut.LabelShortcut t2194}}} to stack=1 task=2194 at 0
I/ActivityManager( 976): Start proc 7856:com.abcOrganizer/u0a103 for activity com.abcOrganizer/.lite.shortcut.LabelShortcut
I/ActivityManager( 976): Process org.simalliance.openmobileapi.service:remote (pid 30890) has died
W/ActivityManager( 976): Scheduling restart of crashed service org.simalliance.openmobileapi.service/.SmartcardService in 1000ms
I/ActivityManager( 976): Process com.google.android.gm.exchange (pid 6944) has died
I/ActivityManager( 976): Start proc 7922:com.joaomgcd.autoappshub/u0a142 for broadcast com.joaomgcd.autoappshub/.broadcastreceiver.BroadcastReceiverAutoApps
I/ActivityManager( 976): Start proc 7940:tw.fatminmin.xposed.minminguard/u0a322 for content provider tw.fatminmin.xposed.minminguard/.MinMinProvider
I/ActivityManager( 976): Start proc 7979:org.simalliance.openmobileapi.service:remote/u0a28 for service org.simalliance.openmobileapi.service/.SmartcardService
V/WindowManager( 976): Adding window Window{34840a39 u0 com.abcOrganizer/com.abcOrganizer.lite.shortcut.LabelShortcut} at 14 of 22 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/ActivityManager( 976): Killing 6919:com.google.android.gm/u0a85 (adj 15): empty #17
I/ActivityManager( 976): Killing 6764:android.process.media/u0a10 (adj 15): empty #17
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=ind.fem.black.rayyan.xposed.gesturenavigation/.GNSettings} from uid 10103 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{3f286bbf token=Token{31597dde ActivityRecord{34bf1919 u0 ind.fem.black.rayyan.xposed.gesturenavigation/.GNSettings t2195}}} to stack=1 task=2195 at 0
V/WindowManager( 976): Adding window Window{26a17c42 u0 Starting ind.fem.black.rayyan.xposed.gesturenavigation} at 15 of 23 (after Window{34840a39 u0 com.abcOrganizer/com.abcOrganizer.lite.shortcut.LabelShortcut})
I/ActivityManager( 976): Start proc 8066:ind.fem.black.rayyan.xposed.gesturenavigation/u0a250 for activity ind.fem.black.rayyan.xposed.gesturenavigation/.GNSettings
I/ActivityManager( 976): Process eu.chainfire.recently (pid 3442) has died
W/ActivityManager( 976): Launch timeout has expired, giving up wake lock!
V/WindowManager( 976): Adding window Window{354006d9 u0 ind.fem.black.rayyan.xposed.gesturenavigation/ind.fem.black.rayyan.xposed.gesturenavigation.GNSettings} at 15 of 24 (before Window{26a17c42 u0 Starting ind.fem.black.rayyan.xposed.gesturenavigation})
I/ActivityManager( 976): Killing 7856:com.abcOrganizer/u0a103 (adj 9): remove task
V/WindowManager( 976): not Base app: Adding window Window{1b0d1b80 u0 ind.fem.black.rayyan.xposed.gesturenavigation/ind.fem.black.rayyan.xposed.gesturenavigation.GNSettings} at 15 of 23
I/ActivityManager( 976): Start proc 8258:com.qualcomm.timeservice/1000 for broadcast com.qualcomm.timeservice/.TimeServiceBroadcastReceiver
I/ActivityManager( 976): Start proc 8281:com.google.android.calendar/u0a43 for broadcast com.google.android.calendar/com.android.calendar.widget.CalendarAppWidgetProvider
I/ActivityManager( 976): Start proc 8302:com.android.providers.calendar/u0a5 for content provider com.android.providers.calendar/.CalendarProvider2
I/ActivityManager( 976): Start proc 8322:com.google.android.keep/u0a86 for broadcast com.google.android.keep/.notification.AlertReceiver
I/ActivityManager( 976): Killing 7426:com.radiusnetworks.locate/u0a270 (adj 15): empty #17
I/ActivityManager( 976): Killing 7546:org.fdroid.fdroid/u0a216 (adj 15): empty #18
I/ActivityManager( 976): Start proc 8346:ch.bitspin.timely/u0a101 for broadcast ch.bitspin.timely/.alarm.AlarmBroadcastReceiver
I/ActivityManager( 976): Killing 6790:com.lsdroid.cerberus/u0a158 (adj 15): empty #17
I/ActivityManager( 976): Killing 7450:com.staircase3.opensignal/u0a180 (adj 15): empty #17
I/ActivityManager( 976): Start proc 8400:com.pandora.android/u0a172 for broadcast com.pandora.android/.util.AlarmInitReceiver
I/ActivityManager( 976): Killing 7472:ind.fem.black.xposed.mods/u0a347 (adj 15): empty #17
I/ActivityManager( 976): Killing 7681:eu.chainfire.supersu/u0a95 (adj 15): empty #17
I/ActivityManager( 976): START u0 {flg=0x10000000 cmp=jackpal.androidterm/.Term} from uid 10246 on display 0
V/WindowManager( 976): Adding window Window{1e833490 u0 jackpal.androidterm/jackpal.androidterm.Term} at 13 of 21 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
W/WindowManager( 976): Attempted to add input method window with unknown token android.os.Binder@15c31510. Aborting.
W/WindowManager( 976): Attempted to add input method window with unknown token android.os.Binder@15c31510. Aborting.
V/WindowManager( 976): Adding window Window{b4170dd u0 PopupWindow:3b94c9b1} at 15 of 24 (after Window{26443af0 u0 InputMethod})
--------- beginning of main
V/WindowManager( 976): Adding window Window{23a6de95 u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{197d039b u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3a63cf11 u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3c1e3e77 u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{23254b4d u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2e2e4b13 u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{15fd9705 u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{e2098b u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{a459e81 u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3b65b367 u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{33aca1bd u0 PopupWindow:3b94c9b1} at 16 of 24 (after Window{3b65b367 u0 PopupWindow:3b94c9b1 EXITING})
V/WindowManager( 976): Adding window Window{32901f03 u0 PopupWindow:3b94c9b1} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.139}
V/WindowManager( 976): Adding window Window{286b6d98 u0 jackpal.androidterm/jackpal.androidterm.Term} at 13 of 23 (after Window{23c9ea91 u0 com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity})
I/WindowManager( 976): Screen frozen for +564ms due to Window{286b6d98 u0 jackpal.androidterm/jackpal.androidterm.Term}
V/WindowManager( 976): Adding window Window{6e16cc8 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2339e312 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2e970ce0 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{334f1e5e u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2b10170c u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{18eac26a u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{202d97f8 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{eea9b36 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{37a03ba4 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{e3d34c2 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{23776e10 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3e2ddb0e u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{254d5b3c u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{1d709a1a u0 PopupWindow:22b67ff6} at 16 of 24 (after Window{254d5b3c u0 PopupWindow:22b67ff6 EXITING})
V/WindowManager( 976): Adding window Window{1c32ef28 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{2fee3de6 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{55bd5d4 u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
V/WindowManager( 976): Adding window Window{3d505272 u0 PopupWindow:22b67ff6} at 16 of 24 (after Window{55bd5d4 u0 PopupWindow:22b67ff6 EXITING})
V/WindowManager( 976): Adding window Window{2c4d23be u0 PopupWindow:22b67ff6} at 15 of 23 (after Window{26443af0 u0 InputMethod})
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
I/ActivityManager( 976): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x14100004 pkg=net.zhuoweizhang.mcpelauncher.pro cmp=net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity (has extras)} from uid 10333 on display 0
V/WindowManager( 976): addAppToken: AppWindowToken{703431b token=Token{17dde92a ActivityRecord{27683215 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2193}}} to stack=1 task=2193 at 0
V/WindowManager( 976): Adding window Window{18d1aad0 u0 Starting net.zhuoweizhang.mcpelauncher.pro} at 12 of 24 (after Window{286b6d98 u0 jackpal.androidterm/jackpal.androidterm.Term})
I/ActivityManager( 976): Start proc 8576:net.zhuoweizhang.mcpelauncher.pro/u0a333 for activity net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity
W/System.err( 8576): java.lang.RuntimeException: No more space in texture atlas; can't add glass_pane_top_gray_0 :(
W/System.err( 8576): at net.zhuoweizhang.mcpelauncher.texture.AtlasMeta.getOrAddIcon(AtlasMeta.java:75)
W/System.err( 8576): at net.zhuoweizhang.mcpelauncher.texture.AtlasProvider.addAllToMeta(AtlasProvider.java:114)
W/System.err( 8576): at net.zhuoweizhang.mcpelauncher.texture.AtlasProvider.initAtlas(AtlasProvider.java:75)
W/System.err( 8576): at com.mojang.minecraftpe.MainActivity.initAtlasMeta(MainActivity.java:2203)
W/System.err( 8576): at com.mojang.minecraftpe.MainActivity.onCreate(MainActivity.java:368)
W/System.err( 8576): at net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity.onCreate(LauncherProActivity.java:35)
W/System.err( 8576): at android.app.Activity.performCreate(Activity.java:5990)
W/System.err( 8576): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
W/System.err( 8576): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278)
W/System.err( 8576): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
W/System.err( 8576): at android.app.ActivityThread.access$800(ActivityThread.java:151)
W/System.err( 8576): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
W/System.err( 8576): at android.os.Handler.dispatchMessage(Handler.java:102)
W/System.err( 8576): at android.os.Looper.loop(Looper.java:135)
W/System.err( 8576): at android.app.ActivityThread.main(ActivityThread.java:5254)
W/System.err( 8576): at java.lang.reflect.Method.invoke(Native Method)
W/System.err( 8576): at java.lang.reflect.Method.invoke(Method.java:372)
W/System.err( 8576): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
W/System.err( 8576): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
W/System.err( 8576): at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:115)
V/WindowManager( 976): Adding window Window{321042c u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 24 (before Window{18d1aad0 u0 Starting net.zhuoweizhang.mcpelauncher.pro})
I/BlockLauncher( 8576): 2: _ZN15MinecraftClientD2Ev
I/BlockLauncher( 8576): 3: _ZN15MinecraftClientD0Ev
I/BlockLauncher( 8576): 4: _ZN15MinecraftClient11onLowMemoryEv
I/BlockLauncher( 8576): 5: _ZN15MinecraftClient14onAppSuspendedEv
I/BlockLauncher( 8576): 6: _ZN15MinecraftClient12onAppResumedEv
I/BlockLauncher( 8576): 7: _ZN15MinecraftClient14onAppFocusLostEv
I/BlockLauncher( 8576): 8: _ZN15MinecraftClient16onAppFocusGainedEv
I/BlockLauncher( 8576): 9: _ZN19AppPlatformListener15onAppTerminatedEv
I/BlockLauncher( 8576): 10: _ZN3App8platformEv
I/BlockLauncher( 8576): 11: _ZN15MinecraftClient13audioEngineOnEv
I/BlockLauncher( 8576): 12: _ZN15MinecraftClient14audioEngineOffEv
I/BlockLauncher( 8576): 13: _ZN15MinecraftClient9muteAudioEv
I/BlockLauncher( 8576): 14: _ZN15MinecraftClient11unMuteAudioEv
I/BlockLauncher( 8576): 15: _ZN3App7destroyEv
I/BlockLauncher( 8576): 16: _ZN3App9loadStateEPvi
I/BlockLauncher( 8576): 17: _ZN3App9saveStateEPPvPi
I/BlockLauncher( 8576): 18: _ZN15MinecraftClient14useTouchscreenEv
I/BlockLauncher( 8576): 19: _ZN15MinecraftClient14setTextboxTextERKSs
I/BlockLauncher( 8576): 20: _ZN3App4drawEv
I/BlockLauncher( 8576): 21: _ZN9Minecraft6updateEv
I/BlockLauncher( 8576): 22: _ZN15MinecraftClient7setSizeEiif
I/BlockLauncher( 8576): 23: (null)
I/BlockLauncher( 8576): 24: _ZN3App10wantToQuitEv
I/BlockLauncher( 8576): 25: _ZN15MinecraftClient10handleBackEb
I/BlockLauncher( 8576): 26: _ZN15MinecraftClient10handleBackEv
I/BlockLauncher( 8576): 27: _ZN15MinecraftClient4initEv
I/BlockLauncher( 8576): 28: _ZN15MinecraftClient8teardownEv
I/BlockLauncher( 8576): 29: _ZN15MinecraftClient11selectLevelERKSsS1_RK13LevelSettings
I/BlockLauncher( 8576): 30: _ZN15MinecraftClient8setLevelESt10unique_ptrI5LevelSt14default_deleteIS1_EERKSsP6Player
I/BlockLauncher( 8576): 31: _ZN15MinecraftClient10startFrameEv
I/BlockLauncher( 8576): 32: _ZN15MinecraftClient14updateGraphicsERK5Timer
I/BlockLauncher( 8576): 33: _ZN15MinecraftClient8endFrameEv
I/BlockLauncher( 8576): 34: _ZN15MinecraftClient4tickEii
I/BlockLauncher( 8576): 35: _ZN15MinecraftClient9leaveGameEb
I/BlockLauncher( 8576): 36: _ZN15MinecraftClient4playERKSsfffff
I/BlockLauncher( 8576): 37: _ZN15MinecraftClient6playUIERKSsff
I/BlockLauncher( 8576): 38: _ZN9Minecraft19updateSoundLocationEP3Mobf
I/BlockLauncher( 8576): 39: _ZN15MinecraftClient15isServerVisibleEv
I/BlockLauncher( 8576): 40: _ZN15MinecraftClient16sendLocalMessageERKSsS1_
I/BlockLauncher( 8576): 41: _ZN15MinecraftClient9getPlayerEv
I/BlockLauncher( 8576): 42: _ZN15MinecraftClient16onInternetUpdateEv
I/BlockLauncher( 8576): 43: _ZN15MinecraftClient31createLocalClientNetworkHandlerEv
I/BlockLauncher( 8576): 44: _ZN15MinecraftClient14getSoundPlayerEv
I/BlockLauncher( 8576): 45: _ZN15MinecraftClient12getVibrationEv
I/BlockLauncher( 8576): 46: _ZN15MinecraftClient14getLocalPlayerEv
I/BlockLauncher( 8576): 47: _ZN15MinecraftClient7vibrateEi
I/BlockLauncher( 8576): 50: _ZThn248_N15MinecraftClientD1Ev
I/BlockLauncher( 8576): 51: _ZThn248_N15MinecraftClientD0Ev
I/BlockLauncher( 8576): 52: _ZThn248_N15MinecraftClient7vibrateEi
I/BlockLauncher( 8576): 56: _ZN12OptionsGroupD2Ev
I/BlockLauncher( 8576): 57: _ZN12OptionsGroupD0Ev
I/BlockLauncher( 8576): 58: _ZN19GuiElementContainer4tickEP15MinecraftClient
I/BlockLauncher( 8576): 59: _ZN12OptionsGroup6renderEP15MinecraftClientii
I/BlockLauncher( 8576): 60: _ZN19GuiElementContainer9topRenderEP15MinecraftClientii
I/BlockLauncher( 8576): 61: _ZN12OptionsGroup14setupPositionsEv
I/BlockLauncher( 8576): 62: _ZN19GuiElementContainer12mouseClickedEP15MinecraftClientiii
I/BlockLauncher( 8576): 63: _ZN19GuiElementContainer13mouseReleasedEP15MinecraftClientiii
I/BlockLauncher( 8576): 2: _ZN14RakNetInstanceD2Ev
I/BlockLauncher( 8576): 3: _ZN14RakNetInstanceD0Ev
I/BlockLauncher( 8576): 4: _ZN14RakNetInstance4hostERKSsii
I/BlockLauncher( 8576): 5: _ZN14RakNetInstance7connectEPKci
I/BlockLauncher( 8576): 6: _ZN14RakNetInstance13setIsLoggedInEb
I/BlockLauncher( 8576): 7: _ZN14RakNetInstance17startPingForHostsEi
I/BlockLauncher( 8576): 8: _ZN14RakNetInstance8pingHostEiRKSs
I/BlockLauncher( 8576): 9: _ZN14RakNetInstance17startPingForHostsEiRKSt6vectorISsSaISsEE
I/BlockLauncher( 8576): 10: _ZN14RakNetInstance16stopPingForHostsEv
I/BlockLauncher( 8576): 11: _ZN14RakNetInstance13getServerListEv
I/BlockLauncher( 8576): 12: _ZN14RakNetInstance15clearServerListEv
I/BlockLauncher( 8576): 13: _ZN14RakNetInstance10disconnectEv
I/BlockLauncher( 8576): 14: _ZN14RakNetInstance14announceServerERKSs
I/BlockLauncher( 8576): 15: _ZN14RakNetInstance7getPeerEv
I/BlockLauncher( 8576): 16: _ZN14RakNetInstance13isMyLocalGuidERKN6RakNet10RakNetGUIDE
I/BlockLauncher( 8576): 17: _ZN14RakNetInstance9runEventsEP16NetEventCallback
I/BlockLauncher( 8576): 18: _ZN14RakNetInstance8isServerEv
I/BlockLauncher( 8576): 19: _ZN14RakNetInstance13getServerGuidEv
I/BlockLauncher( 8576): 20: _ZN14RakNetInstance16isProbablyBrokenEv
I/BlockLauncher( 8576): 21: _ZN14RakNetInstance13resetIsBrokenEv
I/BlockLauncher( 8576): 22: _ZN14RakNetInstance13getStatisticsEPN6RakNet16RakNetStatisticsE
I/BlockLauncher( 8576): 23: _ZN14RakNetInstance17setPacketObserverEP14PacketObserver
I/BlockLauncher( 8576): 24: _ZN14RakNetInstance7sendRawERKN6RakNet9BitStreamE14PacketPriority17PacketReliabilityNS0_13AddressOrGUIDEbj
I/BlockLauncher( 8576): 28: _ZN16EmptyChunkSourceD2Ev
I/BlockLauncher( 8576): 29: _ZN16EmptyChunkSourceD0Ev
I/BlockLauncher( 8576): 30: _ZN11ChunkSource16getExistingChunkERK8ChunkPos
I/BlockLauncher( 8576): 31: _ZN16EmptyChunkSource12requestChunkERK8ChunkPosN11ChunkSource8LoadModeE
I/BlockLauncher( 8576): 32: _ZN11ChunkSource12releaseChunkER10LevelChunk
I/BlockLauncher( 8576): 33: _ZN16EmptyChunkSource11postProcessER15ChunkViewSource
I/BlockLauncher( 8576): 34: _ZN16EmptyChunkSource9loadChunkER10LevelChunk
I/BlockLauncher( 8576): 35: _ZN11ChunkSource17postProcessMobsAtEP10TileSourceiiR6Random
I/BlockLauncher( 8576): 36: _ZN11ChunkSource13saveLiveChunkER10LevelChunk
I/BlockLauncher( 8576): 37: _ZN11ChunkSource21hintDiscardBatchBeginEv
I/BlockLauncher( 8576): 38: _ZN11ChunkSource19hintDiscardBatchEndEv
I/BlockLauncher( 8576): 39: _ZN11ChunkSource16acquireDiscardedEOSt10unique_ptrI10LevelChunkSt14default_deleteIS1_EE
I/BlockLauncher( 8576): 40: _ZNK11ChunkSource15getStoredChunksEv
I/BlockLauncher( 8576): 41: _ZN11ChunkSource7compactEv
I/BlockLauncher( 8576): 42: _ZN11ChunkSource19waitDiscardFinishedEv
I/BlockLauncher( 8576): 43: _ZN11ChunkSource7getViewERK7TilePosS2_NS_8LoadModeEbRKSt8functionIFvRP10LevelChunkEESB_
I/BlockLauncher( 8576): 46: _ZN12MinecartItemD2Ev
I/BlockLauncher( 8576): 47: _ZN12MinecartItemD0Ev
I/BlockLauncher( 8576): 48: _ZN4Item15getMaxStackSizeEPK12ItemInstance
I/BlockLauncher( 8576): 49: _ZN4Item15setMaxStackSizeEh
I/BlockLauncher( 8576): 50: _ZN4Item13canBeDepletedEv
I/BlockLauncher( 8576): 51: _ZNK4Item7getIconEiib
I/BlockLauncher( 8576): 52: _ZNK4Item14getIconYOffsetEv
I/BlockLauncher( 8576): 53: _ZN4Item7setIconERKSsi
I/BlockLauncher( 8576): 54: _ZN4Item7setIconE22TextureUVCoordinateSet
I/BlockLauncher( 8576): 55: _ZNK4Item13isMirroredArtEv
I/BlockLauncher( 8576): 56: _ZN4Item3useER12ItemInstanceR6Player
I/BlockLauncher( 8576): 57: _ZN12MinecartItem5useOnEP12ItemInstanceP6Playeriiiafff
I/BlockLauncher( 8576): 58: _ZNK4Item17getMaxUseDurationEv
I/BlockLauncher( 8576): 59: _ZN4Item15useTimeDepletedEP12ItemInstanceP5LevelP6Player
I/BlockLauncher( 8576): 60: _ZNK4Item15getUseAnimationEv
I/BlockLauncher( 8576): 61: _ZN4Item12releaseUsingEP12ItemInstanceP6Playeri
I/BlockLauncher( 8576): 62: _ZN4Item15getDestroySpeedEP12ItemInstanceP4Tile
I/BlockLauncher( 8576): 63: _ZNK4Item17canDestroySpecialEPK4Tile
I/BlockLauncher( 8576): 0: _ZN4TileD2Ev
I/BlockLauncher( 8576): 1: _ZN4TileD0Ev
I/BlockLauncher( 8576): 2: _ZN4Tile12onFertilizedEP10TileSourceiii
I/BlockLauncher( 8576): 3: _ZN4Tile8getShapeEP10TileSourceiiiR4AABBb
I/BlockLauncher( 8576): 4: _ZN4Tile8getShapeEhR4AABBb
I/BlockLauncher( 8576): 5: _ZN4Tile19isObstructingChestsEP10TileSourceiii
I/BlockLauncher( 8576): 6: _ZNK4Tile16shouldRenderFaceEP10TileSourceiiiaRK4AABB
I/BlockLauncher( 8576): 7: _ZN4Tile10getTextureEa
I/BlockLauncher( 8576): 8: _ZN4Tile10getTextureEai
I/BlockLauncher( 8576): 9: _ZN4Tile10getTextureEP10TileSourceiiia
I/BlockLauncher( 8576): 10: _ZN4Tile17getTessellatedUVsEv
I/BlockLauncher( 8576): 11: _ZN4Tile17getCarriedTextureEai
I/BlockLauncher( 8576): 12: _ZN4Tile7getAABBEP10TileSourceiiiR4AABBibi
I/BlockLauncher( 8576): 13: _ZN4Tile8addAABBsEP10TileSourceiiiPK4AABBRSt6vectorIS2_SaIS2_EE
I/BlockLauncher( 8576): 14: _ZN4Tile14isPathfindableEP10TileSourceiii
I/BlockLauncher( 8576): 15: _ZN4Tile7mayPickEv
I/BlockLauncher( 8576): 16: _ZN4Tile7mayPickEib
I/BlockLauncher( 8576): 17: _ZN4Tile8mayPlaceEP10TileSourceiiia
I/BlockLauncher( 8576): 18: _ZN4Tile8mayPlaceEP10TileSourceiii
I/BlockLauncher( 8576): 19: _ZN4Tile12getTickDelayEv
I/BlockLauncher( 8576): 20: _ZN4Tile4tickEP10TileSourceiiiP6Random
I/BlockLauncher( 8576): 21: _ZN4Tile11animateTickEP10TileSourceiiiP6Random
I/BlockLauncher( 8576): 22: _ZN4Tile7destroyEP10TileSourceiiii
I/BlockLauncher( 8576): 23: _ZN4Tile17playerWillDestroyEP6Playeriiii
I/BlockLauncher( 8576): 24: _ZN4Tile15neighborChangedEP10TileSourceiiiiii
I/BlockLauncher( 8576): 25: _ZN4Tile7onPlaceEP10TileSourceiii
I/BlockLauncher( 8576): 26: _ZN4Tile8onRemoveEP10TileSourceiii
I/BlockLauncher( 8576): 27: _ZN4Tile13getSecondPartER10TileSourceRK7TilePosRS2_
I/BlockLauncher( 8576): 28: _ZN4Tile21onGraphicsModeChangedEbb
I/BlockLauncher( 8576): 29: _ZN4Tile11getResourceEiP6Random
I/BlockLauncher( 8576): 30: _ZN4Tile16getResourceCountEP6Random
I/BlockLauncher( 8576): 31: _ZN4Tile18getDestroyProgressEP6Player
I/BlockLauncher( 8576): 32: _ZN4Tile14spawnResourcesEP10TileSourceiiiif
I/BlockLauncher( 8576): 33: _ZN4Tile18spawnBurnResourcesEP10TileSourcefff
I/BlockLauncher( 8576): 34: _ZN4Tile22getExplosionResistanceEP6Entity
I/BlockLauncher( 8576): 35: _ZN4Tile4clipEP10TileSourceiiiRK4Vec3S4_bi
I/BlockLauncher( 8576): 36: _ZN4Tile11wasExplodedEP10TileSourceiii
I/BlockLauncher( 8576): 37: _ZN4Tile3useEP6Playeriii
I/BlockLauncher( 8576): 38: _ZN4Tile6stepOnEP6Entityiii
I/BlockLauncher( 8576): 39: _ZN4Tile6fallOnEP10TileSourceiiiP6Entityf
I/BlockLauncher( 8576): 40: _ZN4Tile21getPlacementDataValueEP3Mobiiiafffi
I/BlockLauncher( 8576): 41: _ZN4Tile13prepareRenderEP10TileSourceiii
I/BlockLauncher( 8576): 42: _ZN4Tile6attackEP6Playeriii
I/BlockLauncher( 8576): 43: _ZN4Tile18handleEntityInsideEP10TileSourceiiiP6EntityR4Vec3
I/BlockLauncher( 8576): 44: _ZN4Tile8getColorEi
I/BlockLauncher( 8576): 45: _ZN4Tile8getColorEP10TileSourceiii
I/BlockLauncher( 8576): 46: _ZN4Tile14isSignalSourceEv
I/BlockLauncher( 8576): 47: _ZN4Tile9getSignalEP10TileSourceiii
I/BlockLauncher( 8576): 48: _ZN4Tile9getSignalEP10TileSourceiiii
I/BlockLauncher( 8576): 49: _ZN4Tile15getDirectSignalEP10TileSourceiiii
I/BlockLauncher( 8576): 50: _ZN4Tile12entityInsideEP10TileSourceiiiP6Entity
I/BlockLauncher( 8576): 51: _ZN4Tile13playerDestroyEP6Playeriiii
I/BlockLauncher( 8576): 52: _ZN4Tile10canSurviveEP10TileSourceiii
I/BlockLauncher( 8576): 53: _ZN4Tile9setNameIdERKSs
I/BlockLauncher( 8576): 54: _ZNK4Tile7getNameEPK12ItemInstance
I/BlockLauncher( 8576): 55: _ZN4Tile12triggerEventEP10TileSourceiiiii
I/BlockLauncher( 8576): 56: _ZN4Tile13getTextureNumEi
I/BlockLauncher( 8576): 57: _ZNK4Tile13getMobToSpawnER10TileSourceRK7TilePos
I/BlockLauncher( 8576): 58: _ZNK4Tile14getIconYOffsetEv
I/BlockLauncher( 8576): 59: _ZN4Tile8setShapeEffffff
I/BlockLauncher( 8576): 60: _ZN4Tile12setSoundTypeERKNS_9SoundTypeE
I/BlockLauncher( 8576): 61: _ZN4Tile13setLightBlockE10Brightness
I/BlockLauncher( 8576): 62: _ZN4Tile16setLightEmissionEf
I/BlockLauncher( 8576): 63: _ZN4Tile14setExplodeableEf
I/ActivityManager( 976): Start proc 8608:eu.chainfire.recently/u0a237 for broadcast eu.chainfire.recently/.RootReceiver
I/ActivityManager( 976): Killing 7709:lt.noframe.fieldsareameasure/u0a330 (adj 15): empty #17
V/WindowManager( 976): Adding window Window{1f771f56 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity} at 14 of 25 (before Window{321042c u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
V/WindowManager( 976): Adding window Window{20c3ef65 u0 PopupWindow:15cc2410} at 15 of 26 (after Window{1f771f56 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity})
I/ActivityManager( 976): Displayed net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity: +2s973ms
W/System.err( 8576): java.io.FileNotFoundException: images/mob/sheep_0.tga
W/System.err( 8576): at android.content.res.AssetManager.openAsset(Native Method)
W/System.err( 8576): at android.content.res.AssetManager.open(AssetManager.java:313)
W/System.err( 8576): at android.content.res.AssetManager.open(AssetManager.java:287)
W/System.err( 8576): at com.mojang.minecraftpe.MainActivity.getLocalInputStreamForAsset(MainActivity.java:1043)
W/System.err( 8576): at com.mojang.minecraftpe.MainActivity.getInputStreamForAsset(MainActivity.java:1016)
W/System.err( 8576): at com.mojang.minecraftpe.MainActivity.getFileDataBytes(MainActivity.java:981)
W/System.err( 8576): at com.mojang.minecraftpe.MainActivity.getFileDataBytes(MainActivity.java:966)
I/BlockLauncher( 8576): setting material source to 54
I/BlockLauncher( 8576): setting opaque to false
I/BlockLauncher( 8576): setting renderType to 0
W/InputDispatcher( 976): channel '1f771f56 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x9
E/InputDispatcher( 976): channel '1f771f56 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
W/InputDispatcher( 976): channel '321042c net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x9
E/InputDispatcher( 976): channel '321042c net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
I/WindowState( 976): WIN DEATH: Window{1f771f56 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/InputDispatcher( 976): Attempted to unregister already unregistered input channel '1f771f56 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity (server)'
W/WindowManager( 976): Force-removing child win Window{20c3ef65 u0 PopupWindow:15cc2410} from container Window{1f771f56 u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
I/WindowState( 976): WIN DEATH: Window{321042c u0 net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity}
W/InputDispatcher( 976): Attempted to unregister already unregistered input channel '321042c net.zhuoweizhang.mcpelauncher.pro/net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity (server)'
I/ActivityManager( 976): Process net.zhuoweizhang.mcpelauncher.pro (pid 8576) has died
W/ActivityManager( 976): Force removing ActivityRecord{27683215 u0 net.zhuoweizhang.mcpelauncher.pro/.LauncherProActivity t2193}: app died, no saved state
W/WindowManager( 976): Failed looking up window
W/WindowManager( 976): java.lang.IllegalArgumentException: Requested window android.os.BinderProxy@2c83d05c does not exist
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8539)
W/WindowManager( 976): at com.android.server.wm.WindowManagerService.windowForClientLocked(WindowManagerService.java:8530)
W/WindowManager( 976): at com.android.server.wm.WindowState$DeathRecipient.binderDied(WindowState.java:1142)
W/WindowManager( 976): at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
I/WindowState( 976): WIN DEATH: null
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w411dp h658dp 560dpi nrml port finger -keyb/v/h -nav/h s.140}
V/ActivityManager( 976): Display changed displayId=0
I/WindowManager( 976): Screen frozen for +343ms due to Window{28e2bd67 u0 com.maxelus.planetspacklivewallpaper.WallpaperService}
I/ActivityManager( 976): START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10029 on display 0
V/ActivityManager( 976): Display changed displayId=0
I/ActivityManager( 976): Config changes=480 {1.0 311mcc480mnc en_US ldltr sw411dp w689dp h386dp 560dpi nrml land finger -keyb/v/h -nav/h s.141}
I/WindowManager( 976): Screen frozen for +451ms due to Window{1b446ace u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
V/WindowManager( 976): Adding window Window{28d391ba u0 PopupWindow:11df92eb} at 15 of 23 (after Window{b35862 u0 InputMethod})
@zedman2000 This isn't enough information for the native crash. If this is a java crash, it seems BL cannot find the assets for MCPE.
@sliceofcode I was trying to filter to help keep the information down. Did you want me to try again without any filtering?
@zedman2000 The critical information starts with I/DEBUG.
@sliceofcode Okay, I still have to try to get the logcat, but I was able to get the error message from BL itself (I never noticed the copy button). Here is what came from that message: java.lang.RuntimeException: No more space in texture atlas; can't add pipe_2 :( at net.zhuoweizhang.mcpelauncher.texture.AtlasMeta.getOrAddIcon(AtlasMeta.java:75) at net.zhuoweizhang.mcpelauncher.texture.AtlasProvider.addAllToMeta(AtlasProvider.java:114) at net.zhuoweizhang.mcpelauncher.texture.AtlasProvider.initAtlas(AtlasProvider.java:75) at com.mojang.minecraftpe.MainActivity.initAtlasMeta(MainActivity.java:2203) at com.mojang.minecraftpe.MainActivity.onCreate(MainActivity.java:368) at net.zhuoweizhang.mcpelauncher.pro.LauncherProActivity.onCreate(LauncherProActivity.java:35) at android.app.Activity.performCreate(Activity.java:5990) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387) at android.app.ActivityThread.access$800(ActivityThread.java:151) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:135) at android.app.ActivityThread.main(ActivityThread.java:5254) at java.lang.reflect.Method.invoke(Native Method) at java.lang.reflect.Method.invoke(Method.java:372) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698) at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:115)
@zedman2000 Interesting. You have Xposed installed, but that does not interfere. Perhaps extend the texture atlas?
Sure, I can raise the texture limit. Currently the item texture is expanded to twice its size before launch to free up an additional 256 slots; the terrain texture is not expanded. One method to fix this might be to count the number of slots required at the start of the launcher and dynamically expand the textures to fit
@sliceofcode I'm sorry, I'm not sure what you mean? Unless you mean I should take the "Stock" or example atlas and just stick all the images from all my texture maps in there to see what happens?
@zhuowei that is great! If you need a tester, I am more than happy to mess with it (on 0.11 or 0.12 - I have each installed on different devices. I also realize that you do not have textures / script mods running on that yet). Or, if you would rather, I can provide you with the texture files and mods that I am using to generate the error.
Thanks for your time!
@zedman2000 I was talking about ideas to fix the problem
@sliceofcode right, I understood that you were trying to fix the problem and I am willing to try something else. I just did not understand what you were asking or suggesting I try to do! Hence the clarification question. Thanks!
Do you have a list of mods that trigger this problem? I think I have a fix but I don't have enough textures to check.
Edit: I tested this by adding 1000 terrain textures in the latest beta; it worked. I think it's fixed.
Fixed in 0.12.0 beta 9.
@zhuowei Thanks!
Hello,
I couldn't find a feature request section, but decided this was the best place since it does cause BL to crash.
If I install a few BIG MODS, I seem to find that about 256 or so textures seems to be the MAX that one can load. If I use a MOD like Extended Craft (about 100+ textures) as well as hxRedStone (about 82 textures), that gets me almost there. Then I added a few more to bump me over 256 textures and BlockLauncher "crashes". Although if you are quick to read the error message, it is crashing because there are too many textures being added to the system.
So, can we please increase this? With the new methods of adding textures is REALLY enhances the game TREMENDOUSLY! Although, if you are trying to get your MCPE to be "just like" PC (with ExtendedCraft added), it is not really possible with the currently allocated memory footprint for the textures.
Thanks and I wanted to thank you for working on this! It was certainly the best use of my Google Play Store funds (next to Minecraft itself!)!