-
Notifications
You must be signed in to change notification settings - Fork 5
/
test.log
6690 lines (6690 loc) · 813 KB
/
test.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--------- beginning of crash
07-19 18:52:32.851 30392 30392 E AndroidRuntime: FATAL EXCEPTION: main
07-19 18:52:32.851 30392 30392 E AndroidRuntime: Process: dev.ukanth.mym, PID: 30392
07-19 18:52:32.851 30392 30392 E AndroidRuntime: Theme: themes:{default=overlay:system, fontPkg:system, com.android.systemui=overlay:net.darkion.theme.maker.DarkOnyx, com.android.systemui.navbar=overlay:net.darkion.theme.maker.SimpleDark}
07-19 18:52:32.851 30392 30392 E AndroidRuntime: com.afollestad.materialdialogs.MaterialDialog$DialogException: Bad window token, you cannot show a dialog before an Activity is created or after it's hidden.
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at com.afollestad.materialdialogs.MaterialDialog.show(MaterialDialog.java:436)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at com.afollestad.materialdialogs.MaterialDialog$Builder.show(MaterialDialog.java:2115)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at dev.dvp.rmi.IconAdapter$IconPackViewHolder$1.onClick(IconAdapter.java:63)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at android.view.View.performClick(View.java:5204)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at android.view.View$PerformClick.run(View.java:21158)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java:739)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:95)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-19 18:52:32.851 30392 30392 E AndroidRuntime: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-21 09:34:55.471 25654 25660 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5e7c4 in tid 25660 (JDWP)
07-21 09:34:55.472 25654 25660 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:05:54.648 11216 11223 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5ea04 in tid 11223 (JDWP)
07-21 19:05:54.648 11216 11223 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:06:14.311 11621 11636 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5ea04 in tid 11636 (JDWP)
07-21 19:06:14.312 11621 11636 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:11:17.258 16177 16183 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5eac4 in tid 16183 (JDWP)
07-21 19:11:17.258 16177 16183 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:11:49.779 17285 17291 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5ec44 in tid 17291 (JDWP)
07-21 19:11:49.779 17285 17291 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:12:24.532 17793 17799 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5ec44 in tid 17799 (JDWP)
07-21 19:12:24.533 17793 17799 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:15:36.866 21561 21567 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5ec44 in tid 21567 (JDWP)
07-21 19:15:36.866 21561 21567 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:16:08.473 22488 22494 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5ed04 in tid 22494 (JDWP)
07-21 19:16:08.473 22488 22494 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:16:31.797 23266 23272 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5ed04 in tid 23272 (JDWP)
07-21 19:16:31.797 23266 23272 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:16:52.315 23756 23764 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5ed04 in tid 23764 (JDWP)
07-21 19:16:52.315 23756 23764 F libc : Unable to open connection to debuggerd: Connection refused
07-21 19:17:22.910 24567 24573 F libc : Fatal signal 11 (SIGSEGV), code 2, fault addr 0x12c5ed04 in tid 24573 (JDWP)
07-21 19:17:22.910 24567 24573 F libc : Unable to open connection to debuggerd: Connection refused
07-24 22:27:18.995 30287 30287 E AndroidRuntime: FATAL EXCEPTION: main
07-24 22:27:18.995 30287 30287 E AndroidRuntime: Process: com.google.android.packageinstaller, PID: 30287
07-24 22:27:18.995 30287 30287 E AndroidRuntime: Theme: themes:{default=overlay:system, fontPkg:system, com.android.systemui=overlay:net.darkion.theme.maker.DarkOnyx, com.android.systemui.navbar=overlay:net.darkion.theme.maker.SimpleDark}
07-24 22:27:18.995 30287 30287 E AndroidRuntime: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.app.Activity.finish()' on a null object reference
07-24 22:27:18.995 30287 30287 E AndroidRuntime: at com.android.packageinstaller.UninstallerActivity$UninstallAlertDialogFragment.onDismiss(UninstallerActivity.java:112)
07-24 22:27:18.995 30287 30287 E AndroidRuntime: at android.app.Dialog$ListenersHandler.handleMessage(Dialog.java:1323)
07-24 22:27:18.995 30287 30287 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
07-24 22:27:18.995 30287 30287 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148)
07-24 22:27:18.995 30287 30287 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-24 22:27:18.995 30287 30287 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-24 22:27:18.995 30287 30287 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-24 22:27:18.995 30287 30287 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-24 22:27:18.995 30287 30287 E AndroidRuntime: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-24 22:32:29.434 1636 1636 E AndroidRuntime: FATAL EXCEPTION: main
07-24 22:32:29.434 1636 1636 E AndroidRuntime: Process: com.google.android.packageinstaller, PID: 1636
07-24 22:32:29.434 1636 1636 E AndroidRuntime: Theme: themes:{default=overlay:system, fontPkg:system, com.android.systemui=overlay:net.darkion.theme.maker.DarkOnyx, com.android.systemui.navbar=overlay:net.darkion.theme.maker.SimpleDark}
07-24 22:32:29.434 1636 1636 E AndroidRuntime: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.app.Activity.finish()' on a null object reference
07-24 22:32:29.434 1636 1636 E AndroidRuntime: at com.android.packageinstaller.UninstallerActivity$UninstallAlertDialogFragment.onDismiss(UninstallerActivity.java:112)
07-24 22:32:29.434 1636 1636 E AndroidRuntime: at android.app.Dialog$ListenersHandler.handleMessage(Dialog.java:1323)
07-24 22:32:29.434 1636 1636 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
07-24 22:32:29.434 1636 1636 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148)
07-24 22:32:29.434 1636 1636 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-24 22:32:29.434 1636 1636 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-24 22:32:29.434 1636 1636 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-24 22:32:29.434 1636 1636 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-24 22:32:29.434 1636 1636 E AndroidRuntime: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-25 11:03:14.669 13662 13662 F libc : Fatal signal 13 (SIGPIPE), code 0 in tid 13662 (service)
07-25 11:03:14.669 13662 13662 F libc : Unable to open connection to debuggerd: Connection refused
07-28 07:20:22.883 12739 12769 E AndroidRuntime: FATAL EXCEPTION: AsyncTask #1
07-28 07:20:22.883 12739 12769 E AndroidRuntime: Process: dev.ukanth.iconmanager, PID: 12739
07-28 07:20:22.883 12739 12769 E AndroidRuntime: Theme: themes:{default=overlay:system, fontPkg:system, com.android.systemui=overlay:net.darkion.theme.maker.DarkOnyx, com.android.systemui.navbar=overlay:net.darkion.theme.maker.SimpleDark}
07-28 07:20:22.883 12739 12769 E AndroidRuntime: java.lang.RuntimeException: An error occurred while executing doInBackground()
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at android.os.AsyncTask$3.done(AsyncTask.java:309)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:354)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at java.util.concurrent.FutureTask.setException(FutureTask.java:223)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at java.util.concurrent.FutureTask.run(FutureTask.java:242)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at java.lang.Thread.run(Thread.java:818)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: Caused by: java.lang.StringIndexOutOfBoundsException: length=8; regionStart=14; regionLength=-7
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at java.lang.String.startEndAndLength(String.java:298)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at java.lang.String.substring(String.java:1087)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at dev.ukanth.iconmgr.IconPack.<init>(IconPack.java:64)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at dev.ukanth.iconmgr.IconPackManager.loadIconPack(IconPackManager.java:33)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at dev.ukanth.iconmgr.IconPackManager.getAvailableIconPacks(IconPackManager.java:26)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at dev.ukanth.iconmgr.util.Util.getListOfPacks(Util.java:139)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at dev.ukanth.iconmgr.MainActivity$LoadAppList.doInBackground(MainActivity.java:241)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at dev.ukanth.iconmgr.MainActivity$LoadAppList.doInBackground(MainActivity.java:218)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at android.os.AsyncTask$2.call(AsyncTask.java:295)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: at java.util.concurrent.FutureTask.run(FutureTask.java:237)
07-28 07:20:22.883 12739 12769 E AndroidRuntime: ... 3 more
07-28 07:20:41.774 13538 13573 E AndroidRuntime: FATAL EXCEPTION: AsyncTask #1
07-28 07:20:41.774 13538 13573 E AndroidRuntime: Process: dev.ukanth.iconmanager, PID: 13538
07-28 07:20:41.774 13538 13573 E AndroidRuntime: Theme: themes:{default=overlay:system, fontPkg:system, com.android.systemui=overlay:net.darkion.theme.maker.DarkOnyx, com.android.systemui.navbar=overlay:net.darkion.theme.maker.SimpleDark}
07-28 07:20:41.774 13538 13573 E AndroidRuntime: java.lang.RuntimeException: An error occurred while executing doInBackground()
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at android.os.AsyncTask$3.done(AsyncTask.java:309)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:354)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at java.util.concurrent.FutureTask.setException(FutureTask.java:223)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at java.util.concurrent.FutureTask.run(FutureTask.java:242)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at java.lang.Thread.run(Thread.java:818)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: Caused by: java.lang.StringIndexOutOfBoundsException: length=8; regionStart=14; regionLength=-7
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at java.lang.String.startEndAndLength(String.java:298)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at java.lang.String.substring(String.java:1087)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at dev.ukanth.iconmgr.IconPack.<init>(IconPack.java:64)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at dev.ukanth.iconmgr.IconPackManager.loadIconPack(IconPackManager.java:33)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at dev.ukanth.iconmgr.IconPackManager.getAvailableIconPacks(IconPackManager.java:26)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at dev.ukanth.iconmgr.util.Util.getListOfPacks(Util.java:139)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at dev.ukanth.iconmgr.MainActivity$LoadAppList.doInBackground(MainActivity.java:241)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at dev.ukanth.iconmgr.MainActivity$LoadAppList.doInBackground(MainActivity.java:218)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at android.os.AsyncTask$2.call(AsyncTask.java:295)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: at java.util.concurrent.FutureTask.run(FutureTask.java:237)
07-28 07:20:41.774 13538 13573 E AndroidRuntime: ... 3 more
--------- beginning of system
07-28 09:47:53.494 13751 13751 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:47:54.535 1847 5331 I chatty : uid=1000(system) Binder_C expire 4 lines
07-28 09:48:14.422 1847 5521 I chatty : uid=1000(system) Binder_10 expire 6 lines
07-28 09:48:15.455 29301 29301 E ActivityThread: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 09:48:15.455 29301 29301 E ActivityThread: java.lang.RuntimeException: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 09:48:15.455 29301 29301 E ActivityThread: at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3499)
07-28 09:48:15.455 29301 29301 E ActivityThread: at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3584)
07-28 09:48:15.455 29301 29301 E ActivityThread: at android.app.ActivityThread.-wrap20(ActivityThread.java)
07-28 09:48:15.455 29301 29301 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1392)
07-28 09:48:15.455 29301 29301 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102)
07-28 09:48:15.455 29301 29301 E ActivityThread: at android.os.Looper.loop(Looper.java:148)
07-28 09:48:15.455 29301 29301 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-28 09:48:15.455 29301 29301 E ActivityThread: at java.lang.reflect.Method.invoke(Native Method)
07-28 09:48:15.455 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-28 09:48:15.455 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-28 09:48:15.455 29301 29301 E ActivityThread: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-28 09:48:15.470 1847 5484 I chatty : uid=1000(system) Binder_D expire 2 lines
07-28 09:48:17.918 1847 5296 I chatty : uid=1000(system) Binder_9 expire 1 line
07-28 09:48:17.966 1847 5224 I chatty : uid=1000(system) Binder_7 expire 1 line
07-28 09:48:21.167 1847 2200 I chatty : uid=1000(system) PackageManager expire 12 lines
07-28 09:48:21.554 14430 14440 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 09:48:25.249 1847 2130 I chatty : uid=1000(system) ActivityManager expire 9 lines
07-28 09:48:25.814 1847 1847 I chatty : uid=1000 system_server expire 4 lines
07-28 09:48:26.336 14479 14479 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 9 lines
07-28 09:48:26.369 1847 5224 I chatty : uid=1000(system) Binder_7 expire 10 lines
07-28 09:48:26.530 1847 2129 I chatty : uid=1000(system) android.bg expire 3 lines
07-28 09:48:26.576 1847 5300 I chatty : uid=1000(system) Binder_A expire 8 lines
07-28 09:48:26.705 1847 5331 I chatty : uid=1000(system) Binder_C expire 10 lines
07-28 09:48:26.717 14525 14525 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 09:48:27.535 1847 5235 I chatty : uid=1000(system) Binder_8 expire 6 lines
07-28 09:48:27.984 1847 5519 I chatty : uid=1000(system) Binder_F expire 7 lines
07-28 09:48:28.056 1847 4159 I chatty : uid=1000(system) Binder_3 expire 6 lines
07-28 09:48:28.448 1847 4629 I chatty : uid=1000(system) Binder_5 expire 10 lines
07-28 09:48:28.449 5225 14639 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:48:28.880 1847 4540 I chatty : uid=1000(system) WifiService expire 2 lines
07-28 09:48:28.916 1847 4628 I chatty : uid=1000(system) Binder_4 expire 10 lines
07-28 09:48:29.472 1847 5223 I chatty : uid=1000(system) Binder_6 expire 10 lines
07-28 09:48:30.344 1847 5307 I chatty : uid=1000(system) Binder_B expire 9 lines
07-28 09:48:31.016 1847 1874 I chatty : uid=1000(system) Binder_2 expire 11 lines
07-28 09:48:31.287 1847 5484 I chatty : uid=1000(system) Binder_D expire 10 lines
07-28 09:48:31.656 1847 5502 I chatty : uid=1000(system) Binder_E expire 11 lines
07-28 09:48:31.656 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 4 lines
07-28 09:48:31.986 5225 14639 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:48:32.529 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
07-28 09:48:32.901 1847 2171 I chatty : uid=1000(system) android.display expire 6 lines
07-28 09:48:33.429 14813 14827 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:48:33.646 5225 14639 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:48:33.670 1847 5521 I chatty : uid=1000(system) Binder_10 expire 10 lines
07-28 09:48:34.132 1847 1871 I chatty : uid=1000(system) Binder_1 expire 3 lines
07-28 09:48:34.451 1847 4244 I chatty : uid=1000(system) InputReader expire 3 lines
07-28 09:48:36.292 14967 14967 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:49:05.068 15436 15446 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 09:49:10.306 1847 5296 I chatty : uid=1000(system) Binder_9 expire 10 lines
07-28 09:49:10.442 15540 15540 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 09:49:12.271 5225 15715 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:49:13.553 1847 5484 I chatty : uid=1000(system) Binder_D expire 9 lines
07-28 09:49:14.248 5225 15715 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:49:15.402 15790 15806 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:49:15.540 5225 15715 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:49:17.020 1847 5223 I chatty : uid=1000(system) Binder_6 expire 8 lines
07-28 09:49:17.656 15953 15953 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:49:28.789 1847 5224 I chatty : uid=1000(system) Binder_7 expire 4 lines
07-28 09:49:42.409 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
07-28 09:49:57.376 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:49:57.376 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:50:00.861 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:50:00.861 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:50:01.815 1847 4629 I chatty : uid=1000(system) Binder_5 expire 4 lines
07-28 09:50:01.878 1847 1874 I chatty : uid=1000(system) Binder_2 expire 3 lines
07-28 09:50:04.635 15436 15447 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 09:50:08.500 1847 2200 I chatty : uid=1000(system) PackageManager expire 5 lines
07-28 09:50:09.485 16869 16869 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 09:50:10.207 1847 5331 I chatty : uid=1000(system) Binder_C expire 4 lines
07-28 09:50:10.732 1847 5521 I chatty : uid=1000(system) Binder_10 expire 4 lines
07-28 09:50:10.871 1847 4628 I chatty : uid=1000(system) Binder_4 expire 2 lines
07-28 09:50:11.232 5225 17037 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:50:13.142 5225 17037 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:50:13.532 1847 5502 I chatty : uid=1000(system) Binder_E expire 10 lines
07-28 09:50:14.250 17127 17147 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:50:14.460 5225 17037 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:50:16.148 1847 1874 I chatty : uid=1000(system) Binder_2 expire 10 lines
07-28 09:50:16.172 1847 4159 I chatty : uid=1000(system) Binder_3 expire 10 lines
07-28 09:50:16.787 17282 17282 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:50:16.897 1847 5484 I chatty : uid=1000(system) Binder_D expire 10 lines
07-28 09:50:16.927 1847 5521 I chatty : uid=1000(system) Binder_10 expire 10 lines
07-28 09:50:17.074 1847 5300 I chatty : uid=1000(system) Binder_A expire 8 lines
07-28 09:50:17.340 1847 5224 I chatty : uid=1000(system) Binder_7 expire 10 lines
07-28 09:50:17.455 1847 5519 I chatty : uid=1000(system) Binder_F expire 9 lines
07-28 09:50:17.485 1847 1871 I chatty : uid=1000(system) Binder_1 expire 9 lines
07-28 09:50:41.706 1847 2130 I chatty : uid=1000(system) ActivityManager expire 10 lines
07-28 09:51:02.225 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
07-28 09:51:02.632 1847 2171 I chatty : uid=1000(system) android.display expire 8 lines
07-28 09:51:29.536 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:51:29.536 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:51:30.327 1847 5331 I chatty : uid=1000(system) Binder_C expire 5 lines
07-28 09:51:30.437 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:51:30.437 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:52:02.482 1847 4244 I chatty : uid=1000(system) InputReader expire 4 lines
07-28 09:53:22.976 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:53:22.976 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:53:42.165 1847 5223 I chatty : uid=1000(system) Binder_6 expire 10 lines
07-28 09:53:42.224 1847 5235 I chatty : uid=1000(system) Binder_8 expire 10 lines
07-28 09:53:42.227 1847 5296 I chatty : uid=1000(system) Binder_9 expire 11 lines
07-28 09:53:42.352 1847 4628 I chatty : uid=1000(system) Binder_4 expire 10 lines
07-28 09:53:42.409 29301 29301 E ActivityThread: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 09:53:42.409 29301 29301 E ActivityThread: java.lang.RuntimeException: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 09:53:42.409 29301 29301 E ActivityThread: at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3499)
07-28 09:53:42.409 29301 29301 E ActivityThread: at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3584)
07-28 09:53:42.409 29301 29301 E ActivityThread: at android.app.ActivityThread.-wrap20(ActivityThread.java)
07-28 09:53:42.409 29301 29301 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1392)
07-28 09:53:42.409 29301 29301 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102)
07-28 09:53:42.409 29301 29301 E ActivityThread: at android.os.Looper.loop(Looper.java:148)
07-28 09:53:42.409 29301 29301 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-28 09:53:42.409 29301 29301 E ActivityThread: at java.lang.reflect.Method.invoke(Native Method)
07-28 09:53:42.409 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-28 09:53:42.409 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-28 09:53:42.409 29301 29301 E ActivityThread: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-28 09:54:01.310 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:54:01.310 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:54:16.949 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:54:16.949 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:54:21.182 1847 1847 I chatty : uid=1000 system_server expire 5 lines
07-28 09:54:21.465 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:54:21.465 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:54:22.270 1847 5307 I chatty : uid=1000(system) Binder_B expire 10 lines
07-28 09:54:24.271 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 10 lines
07-28 09:54:26.966 15436 15446 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 09:54:31.164 1847 2200 I chatty : uid=1000(system) PackageManager expire 10 lines
07-28 09:54:31.750 14479 14479 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 3 lines
07-28 09:54:32.082 1847 2129 I chatty : uid=1000(system) android.bg expire 2 lines
07-28 09:54:32.166 20652 20652 I chatty : uid=1000(system) com.google.android.gm expire 1 line
07-28 09:54:32.507 1847 4629 I chatty : uid=1000(system) Binder_5 expire 10 lines
07-28 09:54:33.952 5225 20765 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:54:35.924 5225 20765 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:54:37.151 20881 20900 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:54:37.459 5225 20765 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:54:39.794 21001 21001 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:54:40.118 1847 5521 I chatty : uid=1000(system) Binder_10 expire 5 lines
07-28 09:54:44.124 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
07-28 09:55:33.592 21887 21887 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:55:51.294 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:55:51.295 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:56:00.944 29301 29301 E ActivityThread: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 09:56:00.944 29301 29301 E ActivityThread: java.lang.RuntimeException: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 09:56:00.944 29301 29301 E ActivityThread: at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3499)
07-28 09:56:00.944 29301 29301 E ActivityThread: at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3584)
07-28 09:56:00.944 29301 29301 E ActivityThread: at android.app.ActivityThread.-wrap20(ActivityThread.java)
07-28 09:56:00.944 29301 29301 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1392)
07-28 09:56:00.944 29301 29301 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102)
07-28 09:56:00.944 29301 29301 E ActivityThread: at android.os.Looper.loop(Looper.java:148)
07-28 09:56:00.944 29301 29301 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-28 09:56:00.944 29301 29301 E ActivityThread: at java.lang.reflect.Method.invoke(Native Method)
07-28 09:56:00.944 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-28 09:56:00.944 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-28 09:56:00.944 29301 29301 E ActivityThread: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-28 09:56:04.088 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:56:04.088 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:56:04.969 1847 5223 I chatty : uid=1000(system) Binder_6 expire 6 lines
07-28 09:56:06.988 1847 5307 I chatty : uid=1000(system) Binder_B expire 5 lines
07-28 09:56:07.252 15436 15447 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 09:56:12.003 22537 22537 I chatty : uid=1000(system) expire 3 lines
07-28 09:56:12.033 1847 1874 I chatty : uid=1000(system) Binder_2 expire 3 lines
07-28 09:56:12.412 22557 22557 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 09:56:14.209 5225 22690 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:56:16.199 5225 22690 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:56:17.434 22849 22867 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:56:17.608 5225 22690 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:56:18.068 1847 4159 I chatty : uid=1000(system) Binder_3 expire 4 lines
07-28 09:56:18.894 1847 5224 I chatty : uid=1000(system) Binder_7 expire 1 line
07-28 09:56:19.978 22966 22966 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:56:20.254 1847 5502 I chatty : uid=1000(system) Binder_E expire 2 lines
07-28 09:56:20.791 1847 5484 I chatty : uid=1000(system) Binder_D expire 1 line
07-28 09:56:34.115 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 10 lines
07-28 09:56:38.033 1847 4628 I chatty : uid=1000(system) Binder_4 expire 11 lines
07-28 09:56:59.925 1847 5235 I chatty : uid=1000(system) Binder_8 expire 10 lines
07-28 09:56:59.968 1847 5331 I chatty : uid=1000(system) Binder_C expire 12 lines
07-28 09:57:00.016 1847 5307 I chatty : uid=1000(system) Binder_B expire 10 lines
07-28 09:57:00.018 1847 5223 I chatty : uid=1000(system) Binder_6 expire 10 lines
07-28 09:57:01.162 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:57:01.162 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:57:04.401 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:57:04.401 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:57:16.027 1847 5502 I chatty : uid=1000(system) Binder_E expire 6 lines
07-28 09:57:16.029 1847 5300 I chatty : uid=1000(system) Binder_A expire 10 lines
07-28 09:57:16.051 1847 4540 I chatty : uid=1000(system) WifiService expire 1 line
07-28 09:57:19.918 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
07-28 09:57:20.331 1847 2171 I chatty : uid=1000(system) android.display expire 6 lines
07-28 09:57:31.295 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:57:31.295 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:57:36.195 1847 2129 I chatty : uid=1000(system) android.bg expire 3 lines
07-28 09:57:42.559 1847 1871 I chatty : uid=1000(system) Binder_1 expire 10 lines
07-28 09:57:42.608 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:57:42.608 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:57:46.055 1847 5519 I chatty : uid=1000(system) Binder_F expire 10 lines
07-28 09:57:58.442 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:57:58.442 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:58:43.025 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:58:43.025 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:58:43.135 1847 2130 I chatty : uid=1000(system) ActivityManager expire 12 lines
07-28 09:58:43.829 1847 5521 I chatty : uid=1000(system) Binder_10 expire 6 lines
07-28 09:58:43.830 1847 4629 I chatty : uid=1000(system) Binder_5 expire 10 lines
07-28 09:58:43.832 1847 1874 I chatty : uid=1000(system) Binder_2 expire 9 lines
07-28 09:58:43.833 1847 4159 I chatty : uid=1000(system) Binder_3 expire 9 lines
07-28 09:59:00.362 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:59:00.362 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:59:21.611 29301 29301 E ActivityThread: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 09:59:21.611 29301 29301 E ActivityThread: java.lang.RuntimeException: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 09:59:21.611 29301 29301 E ActivityThread: at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3499)
07-28 09:59:21.611 29301 29301 E ActivityThread: at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3584)
07-28 09:59:21.611 29301 29301 E ActivityThread: at android.app.ActivityThread.-wrap20(ActivityThread.java)
07-28 09:59:21.611 29301 29301 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1392)
07-28 09:59:21.611 29301 29301 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102)
07-28 09:59:21.611 29301 29301 E ActivityThread: at android.os.Looper.loop(Looper.java:148)
07-28 09:59:21.611 29301 29301 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-28 09:59:21.611 29301 29301 E ActivityThread: at java.lang.reflect.Method.invoke(Native Method)
07-28 09:59:21.611 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-28 09:59:21.611 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-28 09:59:21.611 29301 29301 E ActivityThread: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-28 09:59:23.006 1847 4244 I chatty : uid=1000(system) InputReader expire 3 lines
07-28 09:59:23.008 1847 1847 I chatty : uid=1000 system_server expire 5 lines
07-28 09:59:23.379 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 09:59:23.379 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 09:59:24.472 1847 5296 I chatty : uid=1000(system) Binder_9 expire 9 lines
07-28 09:59:24.957 1847 5484 I chatty : uid=1000(system) Binder_D expire 3 lines
07-28 09:59:27.395 15436 15447 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 09:59:31.193 1847 2200 I chatty : uid=1000(system) PackageManager expire 11 lines
07-28 09:59:32.262 25895 25895 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 6 lines
07-28 09:59:32.775 25910 25910 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 09:59:34.653 1847 5224 I chatty : uid=1000(system) Binder_7 expire 8 lines
07-28 09:59:34.661 5225 26032 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:59:36.831 5225 26032 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:59:38.198 26138 26152 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 09:59:38.373 5225 26032 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 09:59:39.178 1847 5235 I chatty : uid=1000(system) Binder_8 expire 11 lines
07-28 09:59:40.818 26239 26239 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:00:00.415 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:00:00.416 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:00:31.805 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:00:31.805 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:00:50.870 29301 29301 E ActivityThread: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 10:00:50.870 29301 29301 E ActivityThread: java.lang.RuntimeException: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 10:00:50.870 29301 29301 E ActivityThread: at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3499)
07-28 10:00:50.870 29301 29301 E ActivityThread: at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3584)
07-28 10:00:50.870 29301 29301 E ActivityThread: at android.app.ActivityThread.-wrap20(ActivityThread.java)
07-28 10:00:50.870 29301 29301 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1392)
07-28 10:00:50.870 29301 29301 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102)
07-28 10:00:50.870 29301 29301 E ActivityThread: at android.os.Looper.loop(Looper.java:148)
07-28 10:00:50.870 29301 29301 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-28 10:00:50.870 29301 29301 E ActivityThread: at java.lang.reflect.Method.invoke(Native Method)
07-28 10:00:50.870 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-28 10:00:50.870 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-28 10:00:50.870 29301 29301 E ActivityThread: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-28 10:00:51.350 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:00:51.350 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:00:52.218 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
07-28 10:00:52.450 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:00:52.450 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:00:53.344 1847 5307 I chatty : uid=1000(system) Binder_B expire 5 lines
07-28 10:00:58.005 27458 27468 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 10:01:02.785 27548 27548 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:01:04.106 1847 5519 I chatty : uid=1000(system) Binder_F expire 3 lines
07-28 10:01:04.477 5225 27665 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:01:06.477 5225 27665 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:01:07.744 27799 27816 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:01:07.915 5225 27665 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:01:08.068 1847 4628 I chatty : uid=1000(system) Binder_4 expire 5 lines
07-28 10:01:08.358 1847 5235 I chatty : uid=1000(system) Binder_8 expire 2 lines
07-28 10:01:08.782 1847 5223 I chatty : uid=1000(system) Binder_6 expire 3 lines
07-28 10:01:09.236 1847 5331 I chatty : uid=1000(system) Binder_C expire 1 line
07-28 10:01:09.775 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
07-28 10:01:10.584 27922 27922 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:01:16.933 1847 1871 I chatty : uid=1000(system) Binder_1 expire 8 lines
07-28 10:01:33.167 1847 5223 I chatty : uid=1000(system) Binder_6 expire 8 lines
07-28 10:01:33.174 1847 5331 I chatty : uid=1000(system) Binder_C expire 11 lines
07-28 10:01:33.178 1847 2171 I chatty : uid=1000(system) android.display expire 10 lines
07-28 10:01:33.487 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
07-28 10:01:33.909 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:01:33.909 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:01:34.637 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:01:34.637 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:01:43.042 1847 4244 I chatty : uid=1000(system) InputReader expire 6 lines
07-28 10:01:48.078 1847 5307 I chatty : uid=1000(system) Binder_B expire 6 lines
07-28 10:01:50.681 1847 5521 I chatty : uid=1000(system) Binder_10 expire 13 lines
07-28 10:02:00.890 1847 5235 I chatty : uid=1000(system) Binder_8 expire 10 lines
07-28 10:02:28.042 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:02:28.042 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:02:33.127 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:02:33.127 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:03:00.469 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:03:00.469 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:03:44.074 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:03:44.074 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:04:00.362 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:04:00.363 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:05:45.573 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:05:45.573 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:06:17.054 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:06:17.054 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:06:23.229 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:06:23.229 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:06:38.282 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:06:38.282 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:06:47.275 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:06:47.275 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:06:50.135 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 9 lines
07-28 10:07:01.154 1847 4159 I chatty : uid=1000(system) Binder_3 expire 10 lines
07-28 10:07:01.187 1847 5502 I chatty : uid=1000(system) Binder_E expire 11 lines
07-28 10:07:01.253 1847 5300 I chatty : uid=1000(system) Binder_A expire 6 lines
07-28 10:07:01.308 1847 1874 I chatty : uid=1000(system) Binder_2 expire 10 lines
07-28 10:07:04.883 1847 2131 I chatty : uid=1000(system) android.ui expire 1 line
07-28 10:07:05.407 13954 13954 W ViewRootImpl: Dropping event due to no window focus: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=587.8014, y[0]=1454.4911, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=2, eventTime=239765283, downTime=239765247, deviceId=7, source=0x1002 }
07-28 10:07:05.423 13954 13954 W ViewRootImpl: Dropping event due to no window focus: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=601.7825, y[0]=1380.8757, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=1, eventTime=239765299, downTime=239765247, deviceId=7, source=0x1002 }
07-28 10:07:05.440 13954 13954 W ViewRootImpl: Dropping event due to no window focus: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=635.4116, y[0]=1285.8302, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=2, eventTime=239765316, downTime=239765247, deviceId=7, source=0x1002 }
07-28 10:07:05.457 13954 13954 W ViewRootImpl: Dropping event due to no window focus: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=697.91406, y[0]=1191.5391, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=2, eventTime=239765333, downTime=239765247, deviceId=7, source=0x1002 }
07-28 10:07:05.472 13954 13954 W ViewRootImpl: Dropping event due to no window focus: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=727.32654, y[0]=1157.3972, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=239765342, downTime=239765247, deviceId=7, source=0x1002 }
07-28 10:07:05.472 13954 13954 W ViewRootImpl: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=727.32654, y[0]=1157.3972, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=239765352, downTime=239765247, deviceId=7, source=0x1002 }
07-28 10:07:05.472 13954 13954 W ViewRootImpl: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=727.32654, y[0]=1157.3972, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=239765352, downTime=239765247, deviceId=7, source=0x1002 }
07-28 10:07:05.472 13954 13954 W ViewRootImpl: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=727.32654, y[0]=1157.3972, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=239765352, downTime=239765247, deviceId=7, source=0x1002 }
07-28 10:07:06.553 1847 5224 I chatty : uid=1000(system) Binder_7 expire 11 lines
07-28 10:07:06.561 1847 4628 I chatty : uid=1000(system) Binder_4 expire 10 lines
07-28 10:07:07.729 27458 27468 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 10:07:11.359 1847 2130 I chatty : uid=1000(system) ActivityManager expire 11 lines
07-28 10:07:11.497 1847 2200 I chatty : uid=1000(system) PackageManager expire 10 lines
07-28 10:07:12.072 1847 1847 I chatty : uid=1000 system_server expire 4 lines
07-28 10:07:12.104 25895 25895 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 7 lines
07-28 10:07:12.467 1847 2129 I chatty : uid=1000(system) android.bg expire 2 lines
07-28 10:07:12.560 32520 32520 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:07:12.588 1847 5519 I chatty : uid=1000(system) Binder_F expire 7 lines
07-28 10:07:12.863 1847 5296 I chatty : uid=1000(system) Binder_9 expire 10 lines
07-28 10:07:14.414 5225 32639 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:07:16.484 5225 32639 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:07:17.744 32755 301 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:07:17.959 5225 32639 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:07:19.333 32555 32555 W ViewRootImpl: Dropping event due to root view being removed: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=454.50787, y[0]=811.192, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=239779198, downTime=239779177, deviceId=7, source=0x1002 }
07-28 10:07:20.396 450 450 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:07:20.516 1847 4629 I chatty : uid=1000(system) Binder_5 expire 10 lines
07-28 10:07:34.799 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
07-28 10:07:36.352 1847 5484 I chatty : uid=1000(system) Binder_D expire 6 lines
07-28 10:07:36.523 29301 29301 E ActivityThread: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 10:07:36.523 29301 29301 E ActivityThread: java.lang.RuntimeException: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 10:07:36.523 29301 29301 E ActivityThread: at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3499)
07-28 10:07:36.523 29301 29301 E ActivityThread: at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3584)
07-28 10:07:36.523 29301 29301 E ActivityThread: at android.app.ActivityThread.-wrap20(ActivityThread.java)
07-28 10:07:36.523 29301 29301 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1392)
07-28 10:07:36.523 29301 29301 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102)
07-28 10:07:36.523 29301 29301 E ActivityThread: at android.os.Looper.loop(Looper.java:148)
07-28 10:07:36.523 29301 29301 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-28 10:07:36.523 29301 29301 E ActivityThread: at java.lang.reflect.Method.invoke(Native Method)
07-28 10:07:36.523 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-28 10:07:36.523 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-28 10:07:36.523 29301 29301 E ActivityThread: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-28 10:07:39.962 1847 1874 I chatty : uid=1000(system) Binder_2 expire 4 lines
07-28 10:07:41.836 1847 4159 I chatty : uid=1000(system) Binder_3 expire 3 lines
07-28 10:07:42.275 27458 27470 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 10:07:47.094 1054 1054 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:07:48.448 1847 5224 I chatty : uid=1000(system) Binder_7 expire 5 lines
07-28 10:07:48.991 5225 1224 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:07:51.031 5225 1224 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:07:52.300 1348 1364 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:07:52.516 1847 5502 I chatty : uid=1000(system) Binder_E expire 2 lines
07-28 10:07:52.543 5225 1224 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:07:53.381 1847 4629 I chatty : uid=1000(system) Binder_5 expire 5 lines
07-28 10:07:55.031 1452 1452 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:08:17.868 1847 5235 I chatty : uid=1000(system) Binder_8 expire 2 lines
07-28 10:08:33.215 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:08:33.215 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:08:46.477 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 2 lines
07-28 10:08:46.746 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:08:46.746 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:09:43.161 1847 2200 I chatty : uid=1000(system) PackageManager expire 2 lines
07-28 10:09:43.873 3521 3521 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:09:43.893 1847 1871 I chatty : uid=1000(system) Binder_1 expire 10 lines
07-28 10:09:43.901 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 7 lines
07-28 10:09:43.938 1847 5300 I chatty : uid=1000(system) Binder_A expire 7 lines
07-28 10:09:43.940 1847 5331 I chatty : uid=1000(system) Binder_C expire 8 lines
07-28 10:09:43.949 1847 5235 I chatty : uid=1000(system) Binder_8 expire 10 lines
07-28 10:09:44.101 1847 4628 I chatty : uid=1000(system) Binder_4 expire 7 lines
07-28 10:09:44.669 1847 4159 I chatty : uid=1000(system) Binder_3 expire 10 lines
07-28 10:09:45.121 1847 5502 I chatty : uid=1000(system) Binder_E expire 11 lines
07-28 10:09:45.184 1847 5521 I chatty : uid=1000(system) Binder_10 expire 9 lines
07-28 10:09:45.211 1847 4629 I chatty : uid=1000(system) Binder_5 expire 10 lines
07-28 10:09:45.595 1847 1874 I chatty : uid=1000(system) Binder_2 expire 11 lines
07-28 10:09:45.607 1847 5223 I chatty : uid=1000(system) Binder_6 expire 10 lines
07-28 10:09:45.613 5225 3626 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:09:46.668 25895 25895 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 11 lines
07-28 10:09:46.717 1847 1847 I chatty : uid=1000 system_server expire 10 lines
07-28 10:09:46.816 1847 5519 I chatty : uid=1000(system) Binder_F expire 10 lines
07-28 10:09:46.921 1847 5296 I chatty : uid=1000(system) Binder_9 expire 10 lines
07-28 10:09:46.970 1847 5307 I chatty : uid=1000(system) Binder_B expire 11 lines
07-28 10:09:47.189 1847 5224 I chatty : uid=1000(system) Binder_7 expire 7 lines
07-28 10:09:48.468 3815 3815 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:10:01.823 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
07-28 10:10:02.202 1847 2171 I chatty : uid=1000(system) android.display expire 2 lines
07-28 10:10:03.775 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:10:03.775 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:10:07.280 1847 2130 I chatty : uid=1000(system) ActivityManager expire 10 lines
07-28 10:10:07.337 1847 4227 I chatty : uid=1000(system) AlarmManager expire 1 line
07-28 10:10:07.930 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:10:07.930 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:10:07.993 4289 4289 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:10:08.299 1847 5484 I chatty : uid=1000(system) Binder_D expire 10 lines
07-28 10:10:09.999 4412 4412 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:10:28.415 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:10:28.416 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:14:03.423 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:14:03.423 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:14:14.806 29301 29301 E ActivityThread: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 10:14:14.806 29301 29301 E ActivityThread: java.lang.RuntimeException: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 10:14:14.806 29301 29301 E ActivityThread: at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3499)
07-28 10:14:14.806 29301 29301 E ActivityThread: at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3584)
07-28 10:14:14.806 29301 29301 E ActivityThread: at android.app.ActivityThread.-wrap20(ActivityThread.java)
07-28 10:14:14.806 29301 29301 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1392)
07-28 10:14:14.806 29301 29301 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102)
07-28 10:14:14.806 29301 29301 E ActivityThread: at android.os.Looper.loop(Looper.java:148)
07-28 10:14:14.806 29301 29301 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-28 10:14:14.806 29301 29301 E ActivityThread: at java.lang.reflect.Method.invoke(Native Method)
07-28 10:14:14.806 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-28 10:14:14.806 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-28 10:14:14.806 29301 29301 E ActivityThread: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-28 10:14:16.294 1847 4244 I chatty : uid=1000(system) InputReader expire 1 line
07-28 10:14:20.567 1847 2200 I chatty : uid=1000(system) PackageManager expire 11 lines
07-28 10:14:20.875 7626 7636 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 10:14:25.827 1847 2129 I chatty : uid=1000(system) android.bg expire 1 line
07-28 10:14:25.951 7715 7731 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:14:26.537 7741 7741 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:14:26.652 7771 7771 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:14:28.544 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:14:30.224 1847 4159 I chatty : uid=1000(system) Binder_3 expire 5 lines
07-28 10:14:31.882 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:14:33.068 1847 5296 I chatty : uid=1000(system) Binder_9 expire 8 lines
07-28 10:14:33.346 8118 8137 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:14:33.533 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:14:36.120 8249 8249 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:14:36.706 1847 5502 I chatty : uid=1000(system) Binder_E expire 4 lines
07-28 10:14:37.355 8354 8354 I chatty : uid=1000(system) com.android.keychain expire 4 lines
07-28 10:14:38.071 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:14:39.257 1847 5223 I chatty : uid=1000(system) Binder_6 expire 3 lines
07-28 10:14:39.372 1847 5307 I chatty : uid=1000(system) Binder_B expire 4 lines
07-28 10:14:42.529 7752 7752 W ViewRootImpl: Dropping event due to root view being removed: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=525.4422, y[0]=1117.1317, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=240222397, downTime=240222376, deviceId=7, source=0x1002 }
07-28 10:14:45.599 1847 2130 I chatty : uid=1000(system) ActivityManager expire 4 lines
07-28 10:14:46.594 1847 1874 I chatty : uid=1000(system) Binder_2 expire 3 lines
07-28 10:14:47.102 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:14:53.588 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:14:53.588 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:14:55.584 1847 2200 I chatty : uid=1000(system) PackageManager expire 4 lines
07-28 10:14:55.958 1847 1871 I chatty : uid=1000(system) Binder_1 expire 1 line
07-28 10:14:56.587 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:14:56.634 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:14:56.634 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:14:59.216 1847 1847 I chatty : uid=1000 system_server expire 2 lines
07-28 10:15:06.690 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:15:07.607 25895 25895 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 10 lines
07-28 10:15:07.674 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 12 lines
07-28 10:15:11.749 1847 5331 I chatty : uid=1000(system) Binder_C expire 12 lines
07-28 10:15:12.545 1847 5484 I chatty : uid=1000(system) Binder_D expire 10 lines
07-28 10:15:12.625 1847 2130 I chatty : uid=1000(system) ActivityManager expire 12 lines
07-28 10:15:13.001 1847 2200 I chatty : uid=1000(system) PackageManager expire 10 lines
07-28 10:15:13.226 8354 8354 I chatty : uid=1000(system) com.android.keychain expire 6 lines
07-28 10:15:13.239 1847 4159 I chatty : uid=1000(system) Binder_3 expire 10 lines
07-28 10:15:13.239 1847 5307 I chatty : uid=1000(system) Binder_B expire 9 lines
07-28 10:15:13.247 1847 1847 I chatty : uid=1000 system_server expire 9 lines
07-28 10:15:13.311 1847 4629 I chatty : uid=1000(system) Binder_5 expire 9 lines
07-28 10:15:13.996 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:15:18.325 1847 5296 I chatty : uid=1000(system) Binder_9 expire 9 lines
07-28 10:15:19.751 1847 5300 I chatty : uid=1000(system) Binder_A expire 2 lines
07-28 10:15:19.753 1847 5223 I chatty : uid=1000(system) Binder_6 expire 11 lines
07-28 10:15:19.829 1847 1871 I chatty : uid=1000(system) Binder_1 expire 11 lines
07-28 10:15:20.504 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:15:23.198 1847 5224 I chatty : uid=1000(system) Binder_7 expire 11 lines
07-28 10:15:25.666 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:15:28.947 1847 5502 I chatty : uid=1000(system) Binder_E expire 8 lines
07-28 10:15:31.063 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:15:35.004 1847 5519 I chatty : uid=1000(system) Binder_F expire 10 lines
07-28 10:15:35.750 5225 7925 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:15:36.712 25895 25895 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 6 lines
07-28 10:15:43.355 10257 10257 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:16:11.467 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
07-28 10:16:11.895 1847 2171 I chatty : uid=1000(system) android.display expire 4 lines
07-28 10:16:16.925 1847 1874 I chatty : uid=1000(system) Binder_2 expire 10 lines
07-28 10:16:17.045 10820 10820 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:16:19.883 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:16:19.883 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:17:53.695 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:17:53.695 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:18:01.723 1847 4628 I chatty : uid=1000(system) Binder_4 expire 8 lines
07-28 10:18:02.269 1847 5521 I chatty : uid=1000(system) Binder_10 expire 7 lines
07-28 10:18:02.277 1847 5235 I chatty : uid=1000(system) Binder_8 expire 8 lines
07-28 10:18:08.418 1847 2200 I chatty : uid=1000(system) PackageManager expire 11 lines
07-28 10:18:08.783 11386 11396 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 10:18:08.886 1847 4244 I chatty : uid=1000(system) InputReader expire 2 lines
07-28 10:18:14.014 1847 2129 I chatty : uid=1000(system) android.bg expire 2 lines
07-28 10:18:14.351 11551 11565 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:18:14.894 11575 11575 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:18:15.862 5225 11648 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:18:17.933 5225 11648 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:18:19.261 11798 11822 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:18:19.544 5225 11648 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:18:20.817 1847 1871 I chatty : uid=1000(system) Binder_1 expire 2 lines
07-28 10:18:24.033 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
07-28 10:18:50.145 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:18:50.146 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:18:55.687 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:18:55.687 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:19:10.785 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:19:10.785 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:19:29.036 1847 2130 I chatty : uid=1000(system) ActivityManager expire 5 lines
07-28 10:19:38.714 1847 4159 I chatty : uid=1000(system) Binder_3 expire 2 lines
07-28 10:19:42.655 11386 11397 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 10:19:45.311 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:19:45.311 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:19:47.618 13233 13233 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:19:48.899 5225 13318 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:19:49.445 1847 5484 I chatty : uid=1000(system) Binder_D expire 3 lines
07-28 10:19:49.521 1847 5331 I chatty : uid=1000(system) Binder_C expire 1 line
07-28 10:19:51.110 5225 13318 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:19:51.158 1847 5223 I chatty : uid=1000(system) Binder_6 expire 10 lines
07-28 10:19:52.059 25895 25895 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 4 lines
07-28 10:19:52.124 1847 4629 I chatty : uid=1000(system) Binder_5 expire 7 lines
07-28 10:19:52.391 13472 13495 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:19:52.588 5225 13318 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:19:52.606 1847 5296 I chatty : uid=1000(system) Binder_9 expire 11 lines
07-28 10:19:52.738 1847 5484 I chatty : uid=1000(system) Binder_D expire 6 lines
07-28 10:19:52.798 1847 5519 I chatty : uid=1000(system) Binder_F expire 14 lines
07-28 10:19:53.049 1847 5331 I chatty : uid=1000(system) Binder_C expire 14 lines
07-28 10:19:53.486 1847 5502 I chatty : uid=1000(system) Binder_E expire 12 lines
07-28 10:19:53.813 1847 1874 I chatty : uid=1000(system) Binder_2 expire 6 lines
07-28 10:19:53.849 1847 4159 I chatty : uid=1000(system) Binder_3 expire 14 lines
07-28 10:19:53.966 1847 5521 I chatty : uid=1000(system) Binder_10 expire 11 lines
07-28 10:19:54.472 1847 4628 I chatty : uid=1000(system) Binder_4 expire 7 lines
07-28 10:19:55.031 13604 13604 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:19:55.175 1847 5300 I chatty : uid=1000(system) Binder_A expire 11 lines
07-28 10:20:00.532 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 13 lines
07-28 10:20:00.993 1847 2171 I chatty : uid=1000(system) android.display expire 5 lines
07-28 10:20:04.758 1847 1871 I chatty : uid=1000(system) Binder_1 expire 10 lines
07-28 10:20:04.792 29301 29301 E ActivityThread: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 10:20:04.792 29301 29301 E ActivityThread: java.lang.RuntimeException: Performing stop of activity that is not resumed: {com.android.vending/com.google.android.finsky.activities.MainActivity}
07-28 10:20:04.792 29301 29301 E ActivityThread: at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3499)
07-28 10:20:04.792 29301 29301 E ActivityThread: at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3584)
07-28 10:20:04.792 29301 29301 E ActivityThread: at android.app.ActivityThread.-wrap20(ActivityThread.java)
07-28 10:20:04.792 29301 29301 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1392)
07-28 10:20:04.792 29301 29301 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102)
07-28 10:20:04.792 29301 29301 E ActivityThread: at android.os.Looper.loop(Looper.java:148)
07-28 10:20:04.792 29301 29301 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:5461)
07-28 10:20:04.792 29301 29301 E ActivityThread: at java.lang.reflect.Method.invoke(Native Method)
07-28 10:20:04.792 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
07-28 10:20:04.792 29301 29301 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
07-28 10:20:04.792 29301 29301 E ActivityThread: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
07-28 10:20:06.875 1847 4244 I chatty : uid=1000(system) InputReader expire 2 lines
07-28 10:20:06.876 1847 1847 I chatty : uid=1000 system_server expire 7 lines
07-28 10:20:07.933 1847 5235 I chatty : uid=1000(system) Binder_8 expire 7 lines
07-28 10:20:10.952 11386 11396 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 10:20:14.706 1847 2130 I chatty : uid=1000(system) ActivityManager expire 20 lines
07-28 10:20:14.879 1847 2200 I chatty : uid=1000(system) PackageManager expire 11 lines
07-28 10:20:15.805 1847 2129 I chatty : uid=1000(system) android.bg expire 4 lines
07-28 10:20:15.849 14187 14187 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:20:15.921 1847 5307 I chatty : uid=1000(system) Binder_B expire 10 lines
07-28 10:20:17.235 1847 5224 I chatty : uid=1000(system) Binder_7 expire 11 lines
07-28 10:20:17.688 5225 13318 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:20:19.913 5225 13318 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:20:21.375 14449 14492 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:20:21.535 5225 13318 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:20:23.056 14592 14592 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:20:24.106 1847 5296 I chatty : uid=1000(system) Binder_9 expire 4 lines
07-28 10:20:24.267 14650 14650 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:20:25.502 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 8 lines
07-28 10:30:01.594 1847 4540 I chatty : uid=1000(system) WifiService expire 3 lines
07-28 10:31:55.230 16338 16338 D ActivityThread: Loading provider com.whatsapp.provider.contact: com.whatsapp.contact.ContactProvider
07-28 10:31:56.074 1847 4159 I chatty : uid=1000(system) Binder_3 expire 3 lines
07-28 10:31:56.105 1847 5331 I chatty : uid=1000(system) Binder_C expire 2 lines
07-28 10:32:00.337 1847 5521 I chatty : uid=1000(system) Binder_10 expire 1 line
07-28 10:32:00.606 16620 16620 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:32:54.283 16546 16564 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:32:54.530 1847 1871 I chatty : uid=1000(system) Binder_1 expire 3 lines
07-28 10:33:53.626 16982 16993 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 10:33:58.873 17159 17159 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 1 line
07-28 10:33:58.991 1847 5223 I chatty : uid=1000(system) Binder_6 expire 2 lines
07-28 10:33:59.422 17178 17178 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:34:01.257 5225 17343 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:34:01.732 1847 5235 I chatty : uid=1000(system) Binder_8 expire 10 lines
07-28 10:34:02.316 1847 5296 I chatty : uid=1000(system) Binder_9 expire 10 lines
07-28 10:34:02.338 1847 1871 I chatty : uid=1000(system) Binder_1 expire 8 lines
07-28 10:34:03.302 1847 4540 I chatty : uid=1000(system) WifiService expire 4 lines
07-28 10:34:03.452 1847 5223 I chatty : uid=1000(system) Binder_6 expire 12 lines
07-28 10:34:03.478 17159 17159 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 5 lines
07-28 10:34:03.714 1847 5484 I chatty : uid=1000(system) Binder_D expire 12 lines
07-28 10:34:03.796 1847 1874 I chatty : uid=1000(system) Binder_2 expire 11 lines
07-28 10:34:03.843 1847 5307 I chatty : uid=1000(system) Binder_B expire 10 lines
07-28 10:34:03.867 1847 4628 I chatty : uid=1000(system) Binder_4 expire 11 lines
07-28 10:34:03.885 1847 5519 I chatty : uid=1000(system) Binder_F expire 10 lines
07-28 10:34:04.171 1847 5300 I chatty : uid=1000(system) Binder_A expire 10 lines
07-28 10:34:04.171 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 12 lines
07-28 10:34:04.186 1847 5224 I chatty : uid=1000(system) Binder_7 expire 10 lines
07-28 10:34:04.374 1847 5521 I chatty : uid=1000(system) Binder_10 expire 8 lines
07-28 10:34:04.886 5225 17343 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:34:04.964 1847 4629 I chatty : uid=1000(system) Binder_5 expire 10 lines
07-28 10:34:06.217 17531 17545 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:34:06.419 5225 17343 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:34:06.930 1847 5502 I chatty : uid=1000(system) Binder_E expire 10 lines
07-28 10:34:09.058 17640 17640 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:34:09.619 1847 5331 I chatty : uid=1000(system) Binder_C expire 7 lines
07-28 10:34:09.768 1847 4159 I chatty : uid=1000(system) Binder_3 expire 9 lines
07-28 10:34:10.964 1847 4244 I chatty : uid=1000(system) InputReader expire 2 lines
07-28 10:34:10.967 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 7 lines
07-28 10:34:10.981 1847 1847 I chatty : uid=1000 system_server expire 5 lines
07-28 10:34:10.989 1847 2171 I chatty : uid=1000(system) android.display expire 3 lines
07-28 10:34:11.763 1847 2129 I chatty : uid=1000(system) android.bg expire 5 lines
07-28 10:34:22.761 1847 2200 I chatty : uid=1000(system) PackageManager expire 9 lines
07-28 10:34:23.090 18057 18067 D DefContainer: Copying /data/local/tmp/dev.ukanth.iconmanager to base.apk
07-28 10:34:26.988 1847 2130 I chatty : uid=1000(system) ActivityManager expire 9 lines
07-28 10:34:28.115 18160 18160 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:34:29.546 5225 17343 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:34:30.554 1847 5307 I chatty : uid=1000(system) Binder_B expire 5 lines
07-28 10:34:31.565 5225 17343 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:34:32.387 1847 5519 I chatty : uid=1000(system) Binder_F expire 9 lines
07-28 10:34:32.726 18423 18453 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:34:32.888 5225 17343 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:34:33.554 18476 18476 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:34:35.581 18618 18618 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:34:54.970 1847 4227 I chatty : uid=1000(system) AlarmManager expire 1 line
07-28 10:38:47.075 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:38:47.075 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:38:48.666 1847 5300 I chatty : uid=1000(system) Binder_A expire 2 lines
07-28 10:38:57.191 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:38:57.191 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:39:02.206 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 10:39:02.206 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 10:39:47.125 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 1 line
07-28 10:52:46.257 1847 1874 I chatty : uid=1000(system) Binder_2 expire 4 lines
07-28 10:59:38.725 1847 5235 I chatty : uid=1000(system) Binder_8 expire 3 lines
07-28 10:59:55.168 1847 5502 I chatty : uid=1000(system) Binder_E expire 4 lines
07-28 10:59:56.271 21127 21127 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 1 line
07-28 10:59:56.829 21152 21166 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:59:57.186 1847 5484 I chatty : uid=1000(system) Binder_D expire 1 line
07-28 10:59:57.272 21168 21168 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 10:59:57.405 21181 21181 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 10:59:57.536 1847 4628 I chatty : uid=1000(system) Binder_4 expire 2 lines
07-28 10:59:59.064 5225 21314 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 10:59:59.523 1847 4629 I chatty : uid=1000(system) Binder_5 expire 11 lines
07-28 11:00:00.159 1847 5519 I chatty : uid=1000(system) Binder_F expire 10 lines
07-28 11:00:00.177 1847 5296 I chatty : uid=1000(system) Binder_9 expire 14 lines
07-28 11:00:01.328 1847 4540 I chatty : uid=1000(system) WifiService expire 2 lines
07-28 11:00:01.426 1847 5484 I chatty : uid=1000(system) Binder_D expire 10 lines
07-28 11:00:01.808 21127 21127 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 5 lines
07-28 11:00:01.854 1847 1847 I chatty : uid=1000 system_server expire 9 lines
07-28 11:00:02.082 1847 1871 I chatty : uid=1000(system) Binder_1 expire 11 lines
07-28 11:00:02.099 1847 5502 I chatty : uid=1000(system) Binder_E expire 10 lines
07-28 11:00:02.142 1847 1874 I chatty : uid=1000(system) Binder_2 expire 15 lines
07-28 11:00:02.264 1847 4159 I chatty : uid=1000(system) Binder_3 expire 9 lines
07-28 11:00:02.407 1847 5235 I chatty : uid=1000(system) Binder_8 expire 12 lines
07-28 11:00:03.490 1847 5223 I chatty : uid=1000(system) Binder_6 expire 7 lines
07-28 11:00:03.562 1847 5331 I chatty : uid=1000(system) Binder_C expire 7 lines
07-28 11:00:03.611 1847 5300 I chatty : uid=1000(system) Binder_A expire 13 lines
07-28 11:00:03.738 21549 21549 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:00:08.658 1847 2130 I chatty : uid=1000(system) ActivityManager expire 4 lines
07-28 11:00:09.074 1847 2200 I chatty : uid=1000(system) PackageManager expire 11 lines
07-28 11:00:09.383 21181 21181 I chatty : uid=1000(system) com.android.keychain expire 2 lines
07-28 11:00:09.401 1847 5307 I chatty : uid=1000(system) Binder_B expire 13 lines
07-28 11:00:10.169 1847 4628 I chatty : uid=1000(system) Binder_4 expire 11 lines
07-28 11:00:10.689 5225 21314 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 11:00:12.968 1847 5521 I chatty : uid=1000(system) Binder_10 expire 10 lines
07-28 11:00:13.426 1847 5224 I chatty : uid=1000(system) Binder_7 expire 9 lines
07-28 11:00:14.483 21997 21997 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:00:20.464 5225 21314 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 11:00:24.225 1847 4629 I chatty : uid=1000(system) Binder_5 expire 6 lines
07-28 11:00:24.359 22675 22675 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:00:29.772 4576 4576 V DeadZone: consuming errant click: (193.82054,24.045776)
07-28 11:00:38.752 23038 23038 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:00:41.299 23142 23142 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:00:41.631 23159 23159 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:00:41.789 23113 23139 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:00:53.188 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 16 lines
07-28 11:00:53.629 1847 2171 I chatty : uid=1000(system) android.display expire 8 lines
07-28 11:00:53.911 1847 4244 I chatty : uid=1000(system) InputReader expire 7 lines
07-28 11:00:54.943 1847 2131 I chatty : uid=1000(system) android.ui expire 1 line
07-28 11:01:19.441 1847 4227 I chatty : uid=1000(system) AlarmManager expire 3 lines
07-28 11:04:14.339 1847 5519 I chatty : uid=1000(system) Binder_F expire 6 lines
07-28 11:04:14.601 1847 5502 I chatty : uid=1000(system) Binder_E expire 11 lines
07-28 11:04:38.778 1847 5296 I chatty : uid=1000(system) Binder_9 expire 10 lines
07-28 11:04:38.800 1847 5307 I chatty : uid=1000(system) Binder_B expire 10 lines
07-28 11:04:38.823 1847 1874 I chatty : uid=1000(system) Binder_2 expire 10 lines
07-28 11:04:38.847 1847 5331 I chatty : uid=1000(system) Binder_C expire 11 lines
07-28 11:04:38.872 1847 4628 I chatty : uid=1000(system) Binder_4 expire 12 lines
07-28 11:04:38.895 1847 5521 I chatty : uid=1000(system) Binder_10 expire 10 lines
07-28 11:04:38.918 1847 4629 I chatty : uid=1000(system) Binder_5 expire 8 lines
07-28 11:04:38.941 1847 5235 I chatty : uid=1000(system) Binder_8 expire 10 lines
07-28 11:04:38.969 1847 4159 I chatty : uid=1000(system) Binder_3 expire 11 lines
07-28 11:04:38.991 1847 5224 I chatty : uid=1000(system) Binder_7 expire 12 lines
07-28 11:04:39.017 1847 1871 I chatty : uid=1000(system) Binder_1 expire 10 lines
07-28 11:04:39.088 1847 5223 I chatty : uid=1000(system) Binder_6 expire 10 lines
07-28 11:04:39.115 1847 5519 I chatty : uid=1000(system) Binder_F expire 10 lines
07-28 11:04:39.388 1847 5484 I chatty : uid=1000(system) Binder_D expire 11 lines
07-28 11:04:39.483 1847 5300 I chatty : uid=1000(system) Binder_A expire 8 lines
07-28 11:04:59.772 1847 2130 I chatty : uid=1000(system) ActivityManager expire 4 lines
07-28 11:04:59.805 1847 2200 I chatty : uid=1000(system) PackageManager expire 11 lines
07-28 11:05:01.372 1847 1847 I chatty : uid=1000 system_server expire 5 lines
07-28 11:05:01.777 26007 26007 I chatty : uid=1000(system) FinalizerDaemon expire 4 lines
07-28 11:05:02.131 26033 26033 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 11:05:03.350 1847 4540 I chatty : uid=1000(system) WifiService expire 3 lines
07-28 11:05:03.879 5225 26208 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 11:05:06.782 1847 5502 I chatty : uid=1000(system) Binder_E expire 8 lines
07-28 11:05:07.859 1847 5235 I chatty : uid=1000(system) Binder_8 expire 2 lines
07-28 11:05:08.253 26421 26421 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:05:24.016 1847 4628 I chatty : uid=1000(system) Binder_4 expire 7 lines
07-28 11:05:25.473 26834 26849 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:05:25.926 26851 26851 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:05:25.939 26864 26864 I chatty : uid=1000(system) com.android.keychain expire 1 line
07-28 11:05:25.968 1847 5484 I chatty : uid=1000(system) Binder_D expire 6 lines
07-28 11:05:26.743 1847 5331 I chatty : uid=1000(system) Binder_C expire 5 lines
07-28 11:05:27.750 1847 5519 I chatty : uid=1000(system) Binder_F expire 2 lines
07-28 11:05:27.757 5225 26208 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 11:05:27.826 1847 5521 I chatty : uid=1000(system) Binder_10 expire 3 lines
07-28 11:05:28.345 1847 1874 I chatty : uid=1000(system) Binder_2 expire 5 lines
07-28 11:05:30.434 1847 4159 I chatty : uid=1000(system) Binder_3 expire 2 lines
07-28 11:05:31.360 1847 5296 I chatty : uid=1000(system) Binder_9 expire 2 lines
07-28 11:05:31.520 27155 27155 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:05:46.478 1847 5307 I chatty : uid=1000(system) Binder_B expire 6 lines
07-28 11:07:19.028 1847 4244 I chatty : uid=1000(system) InputReader expire 4 lines
07-28 11:07:19.433 1847 2171 I chatty : uid=1000(system) android.display expire 4 lines
07-28 11:07:19.710 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
07-28 11:07:53.749 1847 2131 I chatty : uid=1000(system) android.ui expire 2 lines
07-28 11:08:00.311 1847 4244 I chatty : uid=1000(system) InputReader expire 9 lines
07-28 11:08:00.653 1847 2171 I chatty : uid=1000(system) android.display expire 10 lines
07-28 11:08:00.952 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
07-28 11:21:24.822 1847 4227 I chatty : uid=1000(system) AlarmManager expire 1 line
07-28 11:21:24.875 1847 5296 I chatty : uid=1000(system) Binder_9 expire 9 lines
07-28 11:21:25.270 1847 5223 I chatty : uid=1000(system) Binder_6 expire 10 lines
07-28 11:27:53.697 1847 5484 I chatty : uid=1000(system) Binder_D expire 10 lines
07-28 11:27:53.743 1847 2130 I chatty : uid=1000(system) ActivityManager expire 12 lines
07-28 11:27:53.986 1847 1871 I chatty : uid=1000(system) Binder_1 expire 9 lines
07-28 11:27:54.000 1847 5224 I chatty : uid=1000(system) Binder_7 expire 9 lines
07-28 11:27:54.443 1847 4159 I chatty : uid=1000(system) Binder_3 expire 11 lines
07-28 11:27:54.810 1847 4629 I chatty : uid=1000(system) Binder_5 expire 11 lines
07-28 11:27:54.954 1847 5521 I chatty : uid=1000(system) Binder_10 expire 12 lines
07-28 11:27:55.560 1847 5331 I chatty : uid=1000(system) Binder_C expire 9 lines
07-28 11:28:38.643 5485 5485 D MccTable: updateMccMncConfiguration mccmnc='null' fromServiceState=true
07-28 11:28:38.643 5485 5485 D MccTable: WIFI_COUNTRY_CODE set to
07-28 11:28:43.581 5485 5485 D MccTable: updateMccMncConfiguration mccmnc='40486' fromServiceState=true
07-28 11:28:43.582 5485 5485 D MccTable: updateMccMncConfiguration defaultMccMnc=40486
07-28 11:28:43.582 5485 5485 D MccTable: updateMccMncConfiguration: mcc=404, mnc=86
07-28 11:28:43.582 5485 5485 D MccTable: WIFI_COUNTRY_CODE set to in
07-28 11:28:43.582 1847 5519 I chatty : uid=1000(system) Binder_F expire 6 lines
07-28 11:28:43.648 1847 4628 I chatty : uid=1000(system) Binder_4 expire 11 lines
07-28 11:28:43.667 1847 5235 I chatty : uid=1000(system) Binder_8 expire 7 lines
07-28 11:28:43.722 1847 5502 I chatty : uid=1000(system) Binder_E expire 10 lines
07-28 11:28:56.583 1847 1874 I chatty : uid=1000(system) Binder_2 expire 7 lines
07-28 11:29:44.777 1847 4540 I chatty : uid=1000(system) WifiService expire 5 lines
07-28 11:29:45.455 1847 5300 I chatty : uid=1000(system) Binder_A expire 3 lines
07-28 11:29:45.815 1847 4539 I chatty : uid=1000(system) WifiStateMachin expire 1 line
07-28 11:29:45.816 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 27 lines
07-28 11:29:45.831 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 11:29:45.831 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 11:29:46.415 1847 5307 I chatty : uid=1000(system) Binder_B expire 6 lines
07-28 11:29:46.938 31357 31372 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:29:47.412 31382 31382 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:29:47.644 31467 31467 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:29:47.923 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 11:29:47.923 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 11:29:52.291 31931 31931 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:29:55.891 1847 1847 I chatty : uid=1000 system_server expire 1 line
07-28 11:29:59.629 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 11:29:59.629 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 11:30:01.973 1847 2130 I chatty : uid=1000(system) ActivityManager expire 3 lines
07-28 11:30:02.461 32230 32230 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:30:15.325 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 11 lines
07-28 11:31:03.089 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
07-28 11:33:25.696 572 572 W ViewRootImpl: Dropping event due to root view being removed: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=513.4533, y[0]=1074.154, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=241166598, downTime=241166579, deviceId=7, source=0x1002 }
07-28 11:33:28.684 572 572 W ViewRootImpl: Dropping event due to root view being removed: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=560.4098, y[0]=1210.0833, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=241169584, downTime=241169562, deviceId=7, source=0x1002 }
07-28 11:33:55.741 1847 5502 I chatty : uid=1000(system) Binder_E expire 3 lines
07-28 11:33:58.272 1847 5521 I chatty : uid=1000(system) Binder_10 expire 3 lines
07-28 11:34:23.586 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 11:34:23.586 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 11:34:25.045 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 11:34:25.045 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 11:34:44.066 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 11:34:44.066 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 11:34:48.124 572 572 W ViewRootImpl: Dropping event due to root view being removed: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=366.58926, y[0]=1161.1088, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=241241992, downTime=241241973, deviceId=7, source=0x1002 }
07-28 11:34:50.718 1847 5223 I chatty : uid=1000(system) Binder_6 expire 2 lines
07-28 11:34:51.580 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 11:34:51.580 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 11:34:55.078 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
07-28 11:35:11.274 1847 4629 I chatty : uid=1000(system) Binder_5 expire 2 lines
07-28 11:35:11.308 1847 4628 I chatty : uid=1000(system) Binder_4 expire 11 lines
07-28 11:35:11.714 1847 5307 I chatty : uid=1000(system) Binder_B expire 10 lines
07-28 11:35:11.737 1847 5484 I chatty : uid=1000(system) Binder_D expire 11 lines
07-28 11:35:11.762 1847 5223 I chatty : uid=1000(system) Binder_6 expire 9 lines
07-28 11:35:11.788 1847 5502 I chatty : uid=1000(system) Binder_E expire 11 lines
07-28 11:35:11.812 1847 5235 I chatty : uid=1000(system) Binder_8 expire 9 lines
07-28 11:35:11.835 1847 5331 I chatty : uid=1000(system) Binder_C expire 8 lines
07-28 11:35:11.874 1847 1871 I chatty : uid=1000(system) Binder_1 expire 8 lines
07-28 11:35:11.896 1847 4159 I chatty : uid=1000(system) Binder_3 expire 8 lines
07-28 11:35:11.917 1847 1874 I chatty : uid=1000(system) Binder_2 expire 9 lines
07-28 11:35:11.939 1847 5521 I chatty : uid=1000(system) Binder_10 expire 9 lines
07-28 11:35:11.964 1847 5296 I chatty : uid=1000(system) Binder_9 expire 10 lines
07-28 11:35:11.982 1847 5224 I chatty : uid=1000(system) Binder_7 expire 9 lines
07-28 11:35:12.000 1847 5519 I chatty : uid=1000(system) Binder_F expire 8 lines
07-28 11:35:12.020 1847 4629 I chatty : uid=1000(system) Binder_5 expire 9 lines
07-28 11:35:12.037 1847 5300 I chatty : uid=1000(system) Binder_A expire 9 lines
07-28 11:35:16.227 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 17 lines
07-28 11:35:19.558 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
07-28 11:35:19.953 1847 2171 I chatty : uid=1000(system) android.display expire 4 lines
07-28 11:35:20.543 1847 4244 I chatty : uid=1000(system) InputReader expire 3 lines
07-28 11:35:21.585 1847 2131 I chatty : uid=1000(system) android.ui expire 64 lines
07-28 11:35:22.500 4576 4576 W ViewRootImpl: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_BACK, scanCode=0, metaState=0, flags=0x68, repeatCount=0, eventTime=241276380, downTime=241275916, deviceId=-1, source=0x101 }
07-28 11:35:22.500 4576 4576 W ViewRootImpl: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_BACK, scanCode=0, metaState=0, flags=0x68, repeatCount=0, eventTime=241276380, downTime=241275916, deviceId=-1, source=0x101 }
07-28 11:35:22.500 4576 4576 W ViewRootImpl: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_BACK, scanCode=0, metaState=0, flags=0x68, repeatCount=0, eventTime=241276380, downTime=241275916, deviceId=-1, source=0x101 }
07-28 11:35:22.500 4576 4576 W ViewRootImpl: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_BACK, scanCode=0, metaState=0, flags=0x68, repeatCount=0, eventTime=241276380, downTime=241275916, deviceId=-1, source=0x101 }
07-28 11:35:22.500 4576 4576 W ViewRootImpl: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_BACK, scanCode=0, metaState=0, flags=0x68, repeatCount=0, eventTime=241276380, downTime=241275916, deviceId=-1, source=0x101 }
07-28 11:35:22.500 4576 4576 W ViewRootImpl: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_BACK, scanCode=0, metaState=0, flags=0x68, repeatCount=0, eventTime=241276380, downTime=241275916, deviceId=-1, source=0x101 }
07-28 11:35:23.132 1847 1847 I chatty : uid=1000 system_server expire 6 lines
07-28 11:35:23.294 1847 4540 I chatty : uid=1000(system) WifiService expire 3 lines
07-28 11:35:23.329 32230 32230 I ActivityThread: Removing dead content provider:android.content.ContentProviderProxy@5147d0a
07-28 11:35:23.841 1847 2130 I chatty : uid=1000(system) ActivityManager expire 2 lines
07-28 11:35:24.356 2889 2889 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:35:25.253 2922 2922 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 11:35:29.511 1847 5296 I chatty : uid=1000(system) Binder_9 expire 1 line
07-28 11:35:29.524 1847 5502 I chatty : uid=1000(system) Binder_E expire 14 lines
07-28 11:40:51.200 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
07-28 11:40:53.969 1847 4159 I chatty : uid=1000(system) Binder_3 expire 10 lines
07-28 11:40:54.308 1847 4629 I chatty : uid=1000(system) Binder_5 expire 10 lines
07-28 11:40:54.405 1847 4540 I chatty : uid=1000(system) WifiService expire 3 lines
07-28 11:40:55.152 1847 1874 I chatty : uid=1000(system) Binder_2 expire 12 lines
07-28 11:40:56.307 1847 5331 I chatty : uid=1000(system) Binder_C expire 9 lines
07-28 11:40:56.354 1847 5307 I chatty : uid=1000(system) Binder_B expire 10 lines
07-28 11:41:06.176 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 14 lines
07-28 11:41:10.812 1847 1871 I chatty : uid=1000(system) Binder_1 expire 8 lines
07-28 11:41:12.156 1847 5519 I chatty : uid=1000(system) Binder_F expire 10 lines
07-28 11:41:12.169 1847 5296 I chatty : uid=1000(system) Binder_9 expire 10 lines
07-28 11:41:13.496 1847 5223 I chatty : uid=1000(system) Binder_6 expire 19 lines
07-28 11:41:23.848 1847 5300 I chatty : uid=1000(system) Binder_A expire 10 lines
07-28 11:41:23.913 1847 4628 I chatty : uid=1000(system) Binder_4 expire 12 lines
07-28 11:41:24.005 1847 5484 I chatty : uid=1000(system) Binder_D expire 11 lines
07-28 11:41:24.132 1847 5521 I chatty : uid=1000(system) Binder_10 expire 9 lines
07-28 11:41:24.157 1847 5235 I chatty : uid=1000(system) Binder_8 expire 11 lines
07-28 11:41:24.182 1847 5224 I chatty : uid=1000(system) Binder_7 expire 11 lines
07-28 11:41:28.694 1847 2171 I chatty : uid=1000(system) android.display expire 6 lines
07-28 11:41:30.757 1847 4244 I chatty : uid=1000(system) InputReader expire 5 lines
07-28 11:49:44.747 1847 2130 I chatty : uid=1000(system) ActivityManager expire 8 lines
07-28 11:49:50.800 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 11:49:50.801 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 11:49:52.241 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 4 lines
07-28 11:52:17.301 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
07-28 11:52:17.301 287 1306 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
07-28 11:52:18.908 1847 5519 I chatty : uid=1000(system) Binder_F expire 5 lines
07-28 11:52:18.913 1847 4629 I chatty : uid=1000(system) Binder_5 expire 4 lines
07-28 11:52:18.916 1847 5296 I chatty : uid=1000(system) Binder_9 expire 9 lines
07-28 12:00:01.397 1847 2129 I chatty : uid=1000(system) android.bg expire 1 line
07-28 12:00:33.450 1847 5307 I chatty : uid=1000(system) Binder_B expire 1 line
07-28 12:04:06.124 1847 2200 I chatty : uid=1000(system) PackageManager expire 6 lines
07-28 12:04:07.925 1847 4243 I chatty : uid=1000(system) InputDispatcher expire 1 line
07-28 12:04:15.546 8071 8071 D ActivityThread: Loading provider com.whatsapp.provider.contact: com.whatsapp.contact.ContactProvider
07-28 12:04:15.566 1847 1847 I chatty : uid=1000 system_server expire 4 lines
07-28 12:04:16.448 1847 5484 I chatty : uid=1000(system) Binder_D expire 14 lines
07-28 12:04:16.557 1847 5224 I chatty : uid=1000(system) Binder_7 expire 15 lines
07-28 12:04:16.606 1847 5502 I chatty : uid=1000(system) Binder_E expire 14 lines
07-28 12:04:16.657 1847 5235 I chatty : uid=1000(system) Binder_8 expire 15 lines
07-28 12:04:18.595 1847 5300 I chatty : uid=1000(system) Binder_A expire 12 lines
07-28 12:04:18.907 8235 8251 D ActivityThread: Loading provider com.google.android.gmail.provider;com.android.mail.notifier;com.google.android.gm.email.provider;com.google.android.gm.tasks.provider;com.google.android.gm.email.notifier: com.android.email.provider.EmailProvider
07-28 12:04:19.013 1847 5223 I chatty : uid=1000(system) Binder_6 expire 12 lines
07-28 12:04:19.106 1847 4628 I chatty : uid=1000(system) Binder_4 expire 13 lines
07-28 12:04:19.315 8254 8254 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 12:04:19.439 8213 8229 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 12:04:19.460 1847 5519 I chatty : uid=1000(system) Binder_F expire 13 lines
07-28 12:04:19.603 1847 4159 I chatty : uid=1000(system) Binder_3 expire 14 lines
07-28 12:04:19.665 1847 5296 I chatty : uid=1000(system) Binder_9 expire 13 lines
07-28 12:04:20.282 1847 2130 I chatty : uid=1000(system) ActivityManager expire 3 lines
07-28 12:04:20.695 8295 8295 I chatty : uid=1000(system) org.cyanogenmod.providers.datausage expire 1 line
07-28 12:04:20.742 1847 4629 I chatty : uid=1000(system) Binder_5 expire 11 lines
07-28 12:04:20.744 1847 2129 I chatty : uid=1000(system) android.bg expire 1 line
07-28 12:04:20.758 1847 1871 I chatty : uid=1000(system) Binder_1 expire 14 lines
07-28 12:04:21.357 1847 5307 I chatty : uid=1000(system) Binder_B expire 10 lines
07-28 12:04:23.756 1847 1874 I chatty : uid=1000(system) Binder_2 expire 15 lines
07-28 12:04:24.290 5225 8468 E ActivityThread: Failed to find provider info for com.modoohut.provider.geocoder
07-28 12:04:27.481 1847 4541 I chatty : uid=1000(system) ConnectivitySer expire 12 lines
07-28 12:04:30.357 1847 4540 I chatty : uid=1000(system) WifiService expire 2 lines
07-28 12:04:30.587 1847 5521 I chatty : uid=1000(system) Binder_10 expire 9 lines
07-28 12:04:49.585 1847 5331 I chatty : uid=1000(system) Binder_C expire 10 lines
07-28 12:05:23.520 1847 2186 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
07-28 12:05:23.985 1847 2171 I chatty : uid=1000(system) android.display expire 2 lines
07-28 12:09:51.582 1847 4227 I chatty : uid=1000(system) AlarmManager expire 1 line
07-28 12:09:51.823 10110 10110 W ActivityThread: ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
07-28 12:09:52.023 1847 4629 I chatty : uid=1000(system) Binder_5 expire 2 lines
07-28 12:09:52.027 1847 5235 I chatty : uid=1000(system) Binder_8 expire 2 lines
07-28 12:09:52.028 1847 5223 I chatty : uid=1000(system) Binder_6 expire 2 lines
07-28 12:09:52.029 1847 5224 I chatty : uid=1000(system) Binder_7 expire 2 lines
07-28 12:09:52.031 1847 5300 I chatty : uid=1000(system) Binder_A expire 2 lines