-
Notifications
You must be signed in to change notification settings - Fork 1
/
test138rollback.txt
4954 lines (4954 loc) · 595 KB
/
test138rollback.txt
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 main
I/cm ( 0): Welcome to Android 5.0.2 / CyanogenMod-12-20150720-UNOFFICIAL-k3gxx
W/auditd ( 3705): type=1325 audit(0.0:2): table=filter family=2 entries=0
W/auditd ( 3705): type=1325 audit(0.0:3): table=mangle family=2 entries=0
W/auditd ( 3705): type=1325 audit(0.0:4): table=nat family=2 entries=0
W/auditd ( 3705): type=1325 audit(0.0:5): table=raw family=2 entries=0
W/auditd ( 3705): type=1325 audit(0.0:6): table=security family=2 entries=0
W/auditd ( 3705): type=1325 audit(0.0:7): table=filter family=3 entries=0
W/auditd ( 3705): type=1325 audit(0.0:8): table=filter family=10 entries=0
W/auditd ( 3705): type=1325 audit(0.0:9): table=mangle family=10 entries=0
W/auditd ( 3705): type=1325 audit(0.0:10): table=raw family=10 entries=0
I/McDaemon( 0): Daemon starting up...
I/McDaemon( 0): Socket interface version is 0.2
I/McDaemon( 0): *** t-base-300-Ares-2-Android-V004_P3 ###
I/McDaemon( 0): Build timestamp is Jan 20 2015 11:49:09
I/McDaemon( 0): Checking version of <t-base
I/McDaemon( 0): Product ID is tbase-300_EXYNOS_5422_V004_P3
I/McDaemon( 0): (null)
I/McDaemon( 0): (null)
I/McDaemon( 0): (null)
I/McDaemon( 0): (null)
W/auditd ( 3705): type=1305 audit(0.0:11): audit_pid=3670 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3705): res=1
W/auditd ( 3705): type=1305 audit(0.0:12): audit_rate_limit=20 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3705): res=1
I/lowmemorykiller( 3673): Using in-kernel low memory killer interface
E/sdcard ( 3702): usage: sdcard [OPTIONS] <source_path> <dest_path>
E/sdcard ( 3702): -u: specify UID to run as
E/sdcard ( 3702): -g: specify GID to run as
E/sdcard ( 3702): -w: specify GID required to write (default sdcard_rw, requires -d or -l)
E/sdcard ( 3702): -t: specify number of threads to use (default 2)
E/sdcard ( 3702): -d: derive file permissions based on path
E/sdcard ( 3702): -l: derive file permissions based on legacy internal layout
E/sdcard ( 3702): -s: split derived permissions for pics, av
E/sdcard ( 3702):
I/installd( 3695): installd firing up
--------- beginning of system
I/Vold ( 3675): Vold 2.1 (the revenge) firing up
D/Vold ( 3675): Volume extSdCard state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3675): Volume UsbDriveA state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3675): Volume UsbDriveB state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3675): Volume UsbDriveC state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3675): Volume UsbDriveD state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3675): Volume UsbDriveE state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3675): Volume UsbDriveF state changing -1 (Initializing) -> 0 (No-Media)
I/Cryptfs ( 3675): Check if PFE is activated on Boot
I/macloader( 3700): Settting wifi type to wisol in /data/.cid.info
D/macloader( 3700): Change permissions of /data/.cid.info
E/sdcard ( 3703): usage: sdcard [OPTIONS] <source_path> <dest_path>
E/sdcard ( 3703): -u: specify UID to run as
E/sdcard ( 3703): -g: specify GID to run as
E/sdcard ( 3703): -w: specify GID required to write (default sdcard_rw, requires -d or -l)
E/sdcard ( 3703): -t: specify number of threads to use (default 2)
E/sdcard ( 3703): -d: derive file permissions based on path
E/sdcard ( 3703): -l: derive file permissions based on legacy internal layout
E/sdcard ( 3703): -s: split derived permissions for pics, av
E/sdcard ( 3703):
E/Cryptfs ( 3675): Bad magic for real block device /dev/block/platform/12200000.dwmmc0/by-name/USERDATA
E/Cryptfs ( 3675): Error getting crypt footer and key
I/DEBUG ( 3685): debuggerd: Jul 3 2015 03:58:19
I/PrProvisioning( 3709): successfully - provisioning start !
I/PrProvisioning( 3709): provisioning already done
I/Netd ( 3683): Netd 1.0 starting
E/Netd ( 3683): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 3683): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 3683): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 3683): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 3683): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 3683): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 3683): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 3683): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
I/keystore( 3696): SELinux: Keystore SELinux is disabled.
D/SensorHubService( 3697): nuSensorHubService starting...
I/SurfaceFlinger( 3689): SurfaceFlinger is starting
I/SurfaceFlinger( 3689): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
W/auditd ( 3705): type=1325 audit(0.0:13): table=filter family=2 entries=4
W/iptables( 3776): type=1300 audit(0.0:13): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c29100 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:13):
W/auditd ( 3705): type=1325 audit(0.0:14): table=filter family=10 entries=4
W/ip6tables( 3777): type=1300 audit(0.0:14): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c2b400 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:14):
W/auditd ( 3705): type=1325 audit(0.0:15): table=filter family=2 entries=6
W/iptables( 3779): type=1300 audit(0.0:15): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c23100 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:15):
W/auditd ( 3705): type=1325 audit(0.0:16): table=filter family=10 entries=6
W/ip6tables( 3780): type=1300 audit(0.0:16): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c36600 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:16):
D/gpsd ( 3699): WakeLock(Release,GPSD)
D/gpsd ( 3699): WakeLock(Release,SUPL)
I/gpsd_d ( 3699): GNSS: 219420
D/wrapperGPS( 3699): wrapperOpenClient_RILD
E/wrapperGPS( 3699): wrapperOpenClient_RILD: RegisterUnsolicitedHandler() UNSOL_GPS_NOTI (20009)
D/wrapperGPS( 3699): wrapperRegisterRequestCompleteHandler
D/wrapperGPS( 3699): wrapperRegisterUnsolicitedHandler id(12009), handler(0xb6b966e9)
D/wrapperGPS( 3699): wrapperRegisterErrorCallback
D/wrapperGPS( 3699): wrapperConnect_RILD
W/auditd ( 3705): type=1325 audit(0.0:17): table=filter family=2 entries=7
W/iptables( 3793): type=1300 audit(0.0:17): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c30400 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:17):
D/libEGL ( 3689): loaded /vendor/lib/egl/libGLES_mali.so
W/auditd ( 3705): type=1325 audit(0.0:18): table=filter family=10 entries=7
W/ip6tables( 3794): type=1300 audit(0.0:18): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c32800 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:18):
W/auditd ( 3705): type=1325 audit(0.0:19): table=filter family=2 entries=9
W/iptables( 3795): type=1300 audit(0.0:19): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c33600 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:19):
W/auditd ( 3705): type=1325 audit(0.0:20): table=filter family=10 entries=9
W/ip6tables( 3796): type=1300 audit(0.0:20): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c47800 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:20):
I/ ( 3689): PLATFORM VERSION : JB-MR-2
I/gralloc ( 3689): using (id=)
I/gralloc ( 3689): xres = 1080 px
I/gralloc ( 3689): yres = 1920 px
I/gralloc ( 3689): width = 65 mm (422.030762 dpi)
I/gralloc ( 3689): height = 115 mm (424.069580 dpi)
I/gralloc ( 3689): refresh rate = 60.00 Hz
W/auditd ( 3705): type=1325 audit(0.0:21): table=filter family=2 entries=10
W/iptables( 3828): type=1300 audit(0.0:21): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c31800 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:21):
D/WVMDrmPlugIn( 3692): WVMDrmPlugin::onGetSupportInfo : 0
W/auditd ( 3705): type=1325 audit(0.0:22): table=filter family=10 entries=10
W/ip6tables( 3829): type=1300 audit(0.0:22): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c42c00 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:22):
I/mediaserver( 3693): ServiceManager: 0xb60500c0
I/AudioFlinger( 3693): Using default 3000 mSec as standby time.
I/ServiceManager( 3693): Waiting for service batterystats...
W/auditd ( 3705): type=1325 audit(0.0:23): table=filter family=2 entries=12
W/iptables( 3831): type=1300 audit(0.0:23): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c44800 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:23):
W/auditd ( 3705): type=1325 audit(0.0:24): table=filter family=10 entries=12
W/ip6tables( 3832): type=1300 audit(0.0:24): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c1d800 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:24):
D/hwcomposer( 3689): using
D/hwcomposer( 3689): xres = 1080 px
D/hwcomposer( 3689): yres = 1920 px
D/hwcomposer( 3689): width = 65 mm (422.030000 dpi)
D/hwcomposer( 3689): height = 115 mm (424.069000 dpi)
D/hwcomposer( 3689): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 3689): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 3689): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 3689): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3689): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3689): open subdev device /dev/v4l-subdev2
I/hwcomposer( 3689): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 3689): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 3689): Using composer version 1.3
I/SurfaceFlinger( 3689): EGL information:
I/SurfaceFlinger( 3689): vendor : Android
I/SurfaceFlinger( 3689): version : 1.4 Android META-EGL
I/SurfaceFlinger( 3689): extensions: EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_fence_sync EGL_KHR_create_context EGL_ANDROID_image_native_buffer EGL_KHR_wait_sync EGL_ANDROID_recordable
I/SurfaceFlinger( 3689): Client API: OpenGL_ES
I/SurfaceFlinger( 3689): EGLSurface: 8-8-8-8, config=0xb6acf2ac
D/AndroidRuntime( 3701):
D/AndroidRuntime( 3701): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
I/SurfaceFlinger( 3689): OpenGL ES informations:
I/SurfaceFlinger( 3689): vendor : ARM
I/SurfaceFlinger( 3689): renderer : Mali-T628
I/SurfaceFlinger( 3689): version : OpenGL ES 3.0
I/SurfaceFlinger( 3689): extensions: GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_blend_minmax GL_EXT_discard_framebuffer GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage GL_EXT_multisampled_render_to_texture GL_OES_surfaceless_context GL_ARM_mali_program_binary
I/SurfaceFlinger( 3689): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 3689): GL_MAX_VIEWPORT_DIMS = 8192
D/SurfaceFlinger( 3689): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 3689): unblank ioctl failed (display already unblanked)
D/AndroidRuntime( 3701): CheckJNI is OFF
I/art ( 3701): option[0]=-Xzygote
I/art ( 3701): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 3701): option[2]=exit
I/art ( 3701): option[3]=vfprintf
I/art ( 3701): option[4]=sensitiveThread
I/art ( 3701): option[5]=-verbose:gc
I/art ( 3701): option[6]=-Xms16m
I/art ( 3701): option[7]=-Xmx512m
I/art ( 3701): option[8]=-XX:mainThreadStackSize=24K
I/art ( 3701): option[9]=-XX:HeapGrowthLimit=192m
I/art ( 3701): option[10]=-XX:HeapMinFree=2m
I/art ( 3701): option[11]=-XX:HeapMaxFree=8m
I/art ( 3701): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 3701): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 3701): option[14]=-Xlockprofthreshold:500
I/art ( 3701): option[15]=-Ximage-compiler-option
I/art ( 3701): option[16]=--runtime-arg
I/art ( 3701): option[17]=-Ximage-compiler-option
I/art ( 3701): option[18]=-Xms64m
I/art ( 3701): option[19]=-Ximage-compiler-option
I/art ( 3701): option[20]=--runtime-arg
I/art ( 3701): option[21]=-Ximage-compiler-option
I/art ( 3701): option[22]=-Xmx64m
I/art ( 3701): option[23]=-Ximage-compiler-option
I/art ( 3701): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 3701): option[25]=-Ximage-compiler-option
I/art ( 3701): option[26]=--image-classes=preloaded-classes
I/art ( 3701): option[27]=-Xcompiler-option
I/art ( 3701): option[28]=--runtime-arg
I/art ( 3701): option[29]=-Xcompiler-option
I/art ( 3701): option[30]=-Xms64m
I/art ( 3701): option[31]=-Xcompiler-option
I/art ( 3701): option[32]=--runtime-arg
I/art ( 3701): option[33]=-Xcompiler-option
I/art ( 3701): option[34]=-Xmx512m
I/art ( 3701): option[35]=-Duser.language=es
I/art ( 3701): option[36]=-Duser.region=US
W/auditd ( 3705): type=1325 audit(0.0:25): table=filter family=2 entries=13
W/iptables( 3847): type=1300 audit(0.0:25): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c1c200 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:25):
I/art ( 3701): Pruning dalvik-cache since we are relocating an image and will need to recompile
W/art ( 3701): Unexpected file type of
W/art ( 3701): encountered.
D/SurfaceFlinger( 3689): SF. shader cache generated - 26 shaders in 71.412041 ms
D/libEGL ( 3845): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3845): PLATFORM VERSION : JB-MR-2
E/BootAnimation( 3845): couldn't find audio_conf.txt
I/art ( 3701): RelocateImage: /system/bin/patchoat --input-image-location=/system/framework/boot.art --output-image-file=/data/dalvik-cache/arm/system@[email protected] --input-oat-location=/system/framework/boot.oat --output-oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --base-offset-delta=-9846784
I/Sensorhubs( 3697): GestureSensor flags 1, mEnabled 0
E/Sensorhubs( 3697): Gesture old sensor_state 0, new sensor_state : 64 en : 1
I/Sensorhubs( 3697): GestureSensor flags 0, mEnabled 1
E/Sensorhubs( 3697): Gesture old sensor_state 64, new sensor_state : 0 en : 0
I/SensorHubService( 3697): HardwareSensorHub
I/SensorHubService( 3697): HardwareSensorHub
D/SensorHubService( 3697): nuSensorHubService thread starting...
I/sensorhubservice( 3697): SensorHubService is starting now........................................
W/BootAnimation( 3845): Audio service is not initiated.
D/BootAnimation( 3845): Use save memory method, maybe small fps in actual.
D/wrapperGPS( 3699): wrapperConnect_RILD
W/auditd ( 3705): type=1325 audit(0.0:55): table=raw family=2 entries=5
W/iptables( 3942): type=1300 audit(0.0:55): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c2d100 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:55):
W/auditd ( 3705): type=1325 audit(0.0:56): table=raw family=10 entries=5
W/ip6tables( 3943): type=1300 audit(0.0:56): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c36400 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:56):
I/ServiceManager( 3693): Waiting for service batterystats...
W/auditd ( 3705): type=1325 audit(0.0:57): table=raw family=2 entries=6
W/iptables( 3950): type=1300 audit(0.0:57): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c20400 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:57):
W/auditd ( 3705): type=1325 audit(0.0:58): table=raw family=10 entries=6
W/ip6tables( 3951): type=1300 audit(0.0:58): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c31800 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:58):
W/auditd ( 3705): type=1325 audit(0.0:59): table=raw family=2 entries=8
W/iptables( 3952): type=1300 audit(0.0:59): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c1ba00 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:59):
W/auditd ( 3705): type=1325 audit(0.0:60): table=raw family=10 entries=8
W/ip6tables( 3953): type=1300 audit(0.0:60): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c37800 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:60):
W/auditd ( 3705): type=1325 audit(0.0:61): table=mangle family=2 entries=6
W/iptables( 3960): type=1300 audit(0.0:61): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c20400 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
V/NatController( 3683): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 3683): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 3683): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 3683): runCmd(/system/bin/iptables -t nat -F natctrl_nat_PREROUTING) res=0
V/NatController( 3683): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=1
D/wrapperGPS( 3699): wrapperConnect_RILD
V/NatController( 3683): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=1
V/NatController( 3683): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 3683): runCmd(/system/bin/iptables -t mangle -A natctrl_mangle_FORWARD -p tcp --tcp-flags SYN SYN -j TCPMSS --clamp-mss-to-pmtu) res=0
W/auditd ( 3705): type=1325 audit(0.0:93): table=filter family=2 entries=37
W/iptables( 4028): type=1300 audit(0.0:93): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c22000 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:93):
W/auditd ( 3705): type=1325 audit(0.0:94): table=filter family=10 entries=34
W/ip6tables( 4029): type=1300 audit(0.0:94): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c23000 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:94):
W/auditd ( 3705): type=1325 audit(0.0:95): table=filter family=2 entries=37
W/iptables( 4030): type=1300 audit(0.0:95): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c22000 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:95):
W/auditd ( 3705): type=1325 audit(0.0:96): table=filter family=10 entries=34
W/ip6tables( 4031): type=1300 audit(0.0:96): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c23000 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:96):
W/auditd ( 3705): type=1325 audit(0.0:97): table=filter family=2 entries=37
W/iptables( 4032): type=1300 audit(0.0:97): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c22000 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:97):
I/ServiceManager( 3693): Waiting for service batterystats...
W/auditd ( 3705): type=1325 audit(0.0:98): table=filter family=10 entries=34
W/ip6tables( 4033): type=1300 audit(0.0:98): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c23000 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3705): type=1320 audit(0.0:98):
W/auditd ( 3705): type=1325 audit(0.0:99): table=raw family=2 entries=9
W/iptables( 4040): type=1300 audit(0.0:99): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c1ba00 items=0 ppid=3683 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
E/memtrack( 3701): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug( 3701): failed to load memtrack module: -2
I/SamplingProfilerIntegration( 3701): Profiling disabled.
D/Zygote ( 3701): begin preload
I/Zygote ( 3701): Preloading classes...
I/art ( 3701): Explicit concurrent mark sweep GC freed 994(55KB) AllocSpace objects, 0(0B) LOS objects, 98% free, 70KB/4MB, paused 328us total 4.173ms
I/art ( 3701): Counter: 1
D/MDnsDS ( 3683): MDnsSdListener::Hander starting up
D/MDnsDS ( 3683): MDnsSdListener starting to monitor
D/MDnsDS ( 3683): Going to poll with pollCount 1
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansGujarati-Regular.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansGujarati-Bold.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Regular.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Bold.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansGurmukhi-Regular.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansGurmukhi-Bold.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Regular.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Bold.ttf
D/wrapperGPS( 3699): wrapperConnect_RILD
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansSinhala-Regular.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansSinhala-Bold.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansCherokee-Regular.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansCanadianAboriginal-Regular.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansYi-Regular.ttf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansHans-Regular.otf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansHant-Regular.otf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansJP-Regular.otf
E/Minikin ( 3701): addFont failed to create font /system/fonts/NotoSansKR-Regular.otf
I/ServiceManager( 3693): Waiting for service batterystats...
I/art ( 3701): Thread[1,tid=3701,WaitingForJniOnLoad,Thread*=0xb5007800,peer=0x12c330e0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
D/MtpDeviceJNI( 3701): register_android_mtp_MtpDevice
I/art ( 3701): Thread[1,tid=3701,WaitingForJniOnLoad,Thread*=0xb5007800,peer=0x12c330e0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
I/art ( 3701): Thread[1,tid=3701,WaitingForJniOnLoad,Thread*=0xb5007800,peer=0x12c330e0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
D/BootAnimation( 3845): Use save memory method, maybe small fps in actual.
I/System ( 3701): Loaded time zone names for "" in 46ms (41ms in ICU)
I/System ( 3701): Loaded time zone names for "en_US" in 29ms (25ms in ICU)
I/System ( 3701): Loaded time zone names for "es_US" in 33ms (28ms in ICU)
I/art ( 3701): Explicit concurrent mark sweep GC freed 32368(1940KB) AllocSpace objects, 0(0B) LOS objects, 71% free, 1612KB/5MB, paused 129us total 14.116ms
I/Zygote ( 3701): ...preloaded 3005 classes in 849ms.
I/art ( 3701): VMRuntime.preloadDexCaches starting
I/art ( 3701): VMRuntime.preloadDexCaches strings total=217392 before=40345 after=40345
I/art ( 3701): VMRuntime.preloadDexCaches types total=18702 before=6336 after=6379
I/art ( 3701): VMRuntime.preloadDexCaches fields total=87484 before=32543 after=32871
I/art ( 3701): VMRuntime.preloadDexCaches methods total=154056 before=66777 after=67655
I/art ( 3701): VMRuntime.preloadDexCaches finished
I/art ( 3701): Counter: 0
I/art ( 3701): Counter: 1
I/art ( 3701): Explicit concurrent mark sweep GC freed 169(19KB) AllocSpace objects, 0(0B) LOS objects, 71% free, 1593KB/5MB, paused 131us total 7.176ms
D/idmap ( 4116): error: no read access to /vendor/overlay: No such file or directory
I/Zygote ( 3701): Preloading resources...
D/wrapperGPS( 3699): wrapperConnect_RILD
I/ServiceManager( 3693): Waiting for service batterystats...
I/art ( 3701): Explicit concurrent mark sweep GC freed 4480(159KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 186us total 8.806ms
I/Zygote ( 3701): ...preloaded 430 resources in 424ms.
I/art ( 3701): Explicit concurrent mark sweep GC freed 497(29KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 189us total 8.420ms
I/Zygote ( 3701): ...preloaded 41 resources in 19ms.
I/art ( 3701): Counter: 0
D/libEGL ( 3701): loaded /vendor/lib/egl/libGLES_mali.so
I/Zygote ( 3701): Preloading shared libraries...
D/Zygote ( 3701): end preload
I/art ( 3701): Explicit concurrent mark sweep GC freed 461(21KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 181us total 8.267ms
I/art ( 3701): Explicit concurrent mark sweep GC freed 41(1568B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 181us total 7.977ms
I/art ( 3701): Explicit concurrent mark sweep GC freed 5(160B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 250us total 8.854ms
I/Zygote ( 3701): System server process 4118 has been created
I/Zygote ( 3701): Accepting command socket connections
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/org.cyanogenmod.hardware.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/org.cyanogenmod.hardware.odex needs to be relocated for /system/framework/org.cyanogenmod.hardware.jar
I/InstallerConnection( 4118): connecting...
I/installd( 3695): new connection
E/installd( 4138): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/org.cyanogenmod.hardware.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/services.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/services.odex needs to be relocated for /system/framework/services.jar
E/installd( 4139): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/services.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/ethernet-service.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/ethernet-service.odex needs to be relocated for /system/framework/ethernet-service.jar
E/installd( 4140): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/ethernet-service.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/wifi-service.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/wifi-service.odex needs to be relocated for /system/framework/wifi-service.jar
E/installd( 4141): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/wifi-service.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/InstallerConnection( 4118): disconnecting...
E/installd( 3695): eof
E/installd( 3695): failed to read size
I/installd( 3695): closing connection
I/SystemServer( 4118): Entered the Android system server!
D/wrapperGPS( 3699): wrapperConnect_RILD
V/Fingerprint-JNI( 4118): FingerprintManager JNI ready.
I/ ( 4118): System server: starting sensor init.
D/SensorService( 4118): nuSensorService starting...
I/SystemServiceManager( 4118): Starting com.android.server.pm.Installer
I/Installer( 4118): Waiting for installd to be ready.
I/InstallerConnection( 4118): connecting...
I/installd( 3695): new connection
I/SystemServiceManager( 4118): Starting com.android.server.am.ActivityManagerService$Lifecycle
E/Sensors ( 4118): GeoMagneticSensor, ERROR dev_num = -19
I/Sensors ( 4118): Proximity old sensor_state 0, new sensor_state : 128 en : 1
E/MediaPlayerFactory( 3693): calling dlopen on FACTORY_LIB
E/MediaPlayerFactory( 3693): Failed to open FACTORY_LIB Error : dlopen failed: library "libdashplayer.so" not found
I/Sensors ( 4118): Light old sensor_state 128, new sensor_state : 640 en : 1
E/Sensors ( 4118): UncalMagneticSensor, ERROR dev_num = -19
I/CameraService( 3693): CameraService started (pid=3693)
I/Sensors ( 4118): SigMotionSensor old sensor_state 640, new sensor_state : 8832 en : 1
E/Sensors ( 4118): UncalGyroSensor, ERROR dev_num = -19
E/Sensors ( 4118): GameRotationVector, ERROR dev_num = -19
I/Sensors ( 4118): StepCounterSensor old sensor_state 8832, new sensor_state : 139904 en : 1
I/ActivityManager( 4118): Memory class: 192
D/Sensors ( 4118): HrmSpO2Sensor::HrmSpO2Sensor: Shared version Registered
E/SensorService( 4118): >>>> WARNING <<< Upgrade sensor HAL to version 1_3
I/Sensors ( 4118): Proximity old sensor_state 139904, new sensor_state : 139776 en : 0
I/Sensors ( 4118): Light old sensor_state 139776, new sensor_state : 139264 en : 0
I/Sensors ( 4118): StepCounterSensor old sensor_state 139264, new sensor_state : 8192 en : 0
I/Sensors ( 4118): SigMotionSensor old sensor_state 8192, new sensor_state : 0 en : 0
I/Sensors ( 4118): HrmSpO2Sensor::enable, handle(16), en(0), what(1/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4118): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4118): HrmSpO2Sensor::enable, handle(17), en(0), what(0/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4118): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4118): HrmSpO2Sensor::enable, handle(18), en(0), what(2/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4118): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/ServiceThread( 4118): Enabled StrictMode logging for ActivityManager looper.
I/ ( 4118): System server: sensor init done.
D/SensorService( 4118): nuSensorService thread starting...
I/Sensors ( 4118): ProximitySensor - 8(cm)
D/SensorService( 4118): new thread SensorEventAckReceiver
E/HAL ( 3693): load: module=/system/lib/hw/camera.universal5422.so
E/HAL ( 3693): dlopen failed: could not load library "libexynoscamera.so" needed by "camera.universal5422.so"; caused by cannot locate symbol "_ZN7android16CameraParameters17EFFECT_POINT_BLUEE" referenced by "libexynoscamera.so"...
E/CameraService( 3693): Could not load camera HAL module
I/AudioPolicyService( 3693): AudioPolicyService CSTOR in new mode
W/AudioPolicyManager( 3693): loadOutput() invalid supported devices
W/AudioPolicyManager( 3693): loadInput() invalid supported devices
I/AudioPolicyManager( 3693): loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
I/IntentFirewall( 4118): Read new rules (A:0 B:0 S:0)
I/ServiceThread( 4118): Enabled StrictMode logging for android.ui looper.
I/ServiceThread( 4118): Enabled StrictMode logging for android.display looper.
D/AppOps ( 4118): AppOpsService published
I/SystemServiceManager( 4118): Starting com.android.server.power.PowerManagerService
I/ServiceThread( 4118): Enabled StrictMode logging for PowerManagerService looper.
W/linker ( 3693): lib_Samsung_AudioZoom_v102.so has text relocations. This is wasting memory and prevents security hardening. Please fix.
E/Universal5422 PowerHAL( 4118): Error writing to /sys/devices/system/cpu/cpu0/cpufreq/interactive/boostpulse_duration: Invalid argument
W/libsuspend( 4118): Error writing 'on' to /sys/power/state: Invalid argument
I/libsuspend( 4118): Selected wakeup count
E/Universal5422 PowerHAL( 4118): Error opening /sys/class/input/input2/enabled: Permission denied
E/Universal5422 PowerHAL( 4118): Error opening /sys/class/input/input14/enabled: Permission denied
E/Universal5422 PowerHAL( 4118): Error opening /sys/class/input/input1/enabled: Permission denied
E/HAL ( 3693): load: module=/system/lib/hw/audio.primary.universal5422.so
E/HAL ( 3693): dlopen failed: cannot locate symbol "mixer_update" referenced by "audio.primary.universal5422.so"...
E/AudioFlinger( 3693): int android::load_audio_interface(const char*, audio_hw_device_t**) couldn't load audio hw module audio.primary (Invalid argument)
I/AudioFlinger( 3693): loadHwModule() error -22 loading module primary
W/AudioPolicyManager( 3693): could not open HW module primary
I/SystemServiceManager( 4118): Starting com.android.server.display.DisplayManagerService
I/audio_a2dp_hw( 3693): adev_open: adev_open in A2dp_hw module
I/AudioFlinger( 3693): loadHwModule() Loaded a2dp audio interface from A2DP Audio HW HAL (audio) handle 1
I/AudioFlinger( 3693): loadHwModule() Loaded usb audio interface from USB audio HW HAL (audio) handle 2
I/SystemServiceManager( 4118): Starting phase 100
I/r_submix( 3693): adev_open(name=audio_hw_if)
I/r_submix( 3693): adev_init_check()
I/AudioFlinger( 3693): loadHwModule() Loaded r_submix audio interface from Wifi Display audio HAL (audio) handle 3
D/r_submix( 3693): adev_open_input_stream()
D/r_submix( 3693): submix_audio_device_create_pipe()
E/MonoPipe( 3693): Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
I/DisplayManagerService( 4118): Display device added: DisplayDeviceInfo{"Pantalla integrada": 1080 x 1920, 60.000004 fps, supportedRefreshRates [60.000004], density 480, 422.03 x 424.069 dpi, appVsyncOff 0, presDeadline 17666666, touch INTERNAL, rotation 0, type BUILT_IN, state UNKNOWN, FLAG_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS}
I/SystemServer( 4118): Package Manager
W/SELinuxMMAC( 4118): Error opening /data/system/seapp_hash. Assuming first boot.
W/PackageManager( 4118): No security bridge jar found, using default
W/SystemConfig( 4118): No directory /system/etc/sysconfig, skipping
D/SELinuxMMAC( 4118): Using policy file /system/etc/security/mac_permissions.xml
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/android.test.runner.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/android.test.runner.odex needs to be relocated for /system/framework/android.test.runner.jar
E/installd( 4180): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/android.test.runner.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/com.android.future.usb.accessory.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/com.android.future.usb.accessory.odex needs to be relocated for /system/framework/com.android.future.usb.accessory.jar
E/installd( 4181): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/com.android.future.usb.accessory.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/com.android.media.remotedisplay.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/com.android.media.remotedisplay.odex needs to be relocated for /system/framework/com.android.media.remotedisplay.jar
E/installd( 4182): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/com.android.media.remotedisplay.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/com.android.location.provider.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/com.android.location.provider.odex needs to be relocated for /system/framework/com.android.location.provider.jar
E/installd( 4183): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/com.android.location.provider.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/javax.obex.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/javax.obex.odex needs to be relocated for /system/framework/javax.obex.jar
E/installd( 4184): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/javax.obex.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
E/art ( 4118): DexFile_isDexOptNeeded file '/system/framework/com.android.nfc_extras.jar' does not exist
W/PackageManager( 4118): Library not found: /system/framework/com.android.nfc_extras.jar
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/com.android.mediadrm.signer.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/com.android.mediadrm.signer.odex needs to be relocated for /system/framework/com.android.mediadrm.signer.jar
E/installd( 4185): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/com.android.mediadrm.signer.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/javax.btobex.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/javax.btobex.odex needs to be relocated for /system/framework/javax.btobex.jar
E/installd( 4186): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/javax.btobex.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/am.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/am.odex needs to be relocated for /system/framework/am.jar
E/installd( 4187): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/am.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/appops.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/appops.odex needs to be relocated for /system/framework/appops.jar
E/installd( 4188): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/appops.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/appwidget.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/appwidget.odex needs to be relocated for /system/framework/appwidget.jar
E/installd( 4189): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/appwidget.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/bmgr.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/bmgr.odex needs to be relocated for /system/framework/bmgr.jar
E/installd( 4190): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/bmgr.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
D/wrapperGPS( 3699): wrapperConnect_RILD
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/bu.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/bu.odex needs to be relocated for /system/framework/bu.jar
E/installd( 4191): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/bu.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/content.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/content.odex needs to be relocated for /system/framework/content.jar
E/installd( 4192): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/content.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/dpm.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/dpm.odex needs to be relocated for /system/framework/dpm.jar
E/installd( 4193): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/dpm.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/ime.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/ime.odex needs to be relocated for /system/framework/ime.jar
E/installd( 4194): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/ime.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/input.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/input.odex needs to be relocated for /system/framework/input.jar
E/installd( 4196): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/input.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@framework@[email protected]' for file location '/system/framework/media_cmd.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/media_cmd.odex needs to be relocated for /system/framework/media_cmd.jar
E/installd( 4197): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/media_cmd.odex) out-fd=6 (/data/dalvik-cache/arm/system@framework@[email protected])
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/monkey.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/monkey.odex needs to be relocated for /system/framework/monkey.jar
E/installd( 4198): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/monkey.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/pm.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/pm.odex needs to be relocated for /system/framework/pm.jar
E/installd( 4199): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/pm.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/requestsync.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/requestsync.odex needs to be relocated for /system/framework/requestsync.jar
E/installd( 4200): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/requestsync.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/settings.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/settings.odex needs to be relocated for /system/framework/settings.jar
E/installd( 4201): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/settings.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/svc.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/svc.odex needs to be relocated for /system/framework/svc.jar
E/installd( 4202): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/svc.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/tm.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/tm.odex needs to be relocated for /system/framework/tm.jar
E/installd( 4203): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/tm.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/uiautomator.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/uiautomator.odex needs to be relocated for /system/framework/uiautomator.jar
E/installd( 4204): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/uiautomator.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@[email protected]@classes.dex' for file location '/system/framework/wm.jar': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/framework/arm/wm.odex needs to be relocated for /system/framework/wm.jar
E/installd( 4205): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/wm.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
E/SQLiteLog( 4118): (283) recovered 927 frames from WAL file /data/data/com.android.providers.settings/databases/settings.db-wal
D/PackageManager( 4118): No files in app dir /vendor/overlay
W/PackageManager( 4118): Failed to parse /system/framework/arm: Missing base APK in /system/framework/arm
I/PackageManager( 4118): /system/framework/framework-res.apk changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/framework/framework-res.apk: Signature mismatch for shared user : SharedUserSetting{39c54102 android.uid.system/1000}
I/PackageManager( 4118): /system/priv-app/AudioFX changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/AudioFX/AudioFX.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/AudioFX/arm/AudioFX.odex needs to be relocated for /system/priv-app/AudioFX/AudioFX.apk
I/PackageManager( 4118): /system/priv-app/BackupRestoreConfirmation changed; collecting certs
W/PackageManager( 4118): System package com.android.backupconfirm signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.backupconfirm issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/BackupRestoreConfirmation/BackupRestoreConfirmation.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/BackupRestoreConfirmation/arm/BackupRestoreConfirmation.odex needs to be relocated for /system/priv-app/BackupRestoreConfirmation/BackupRestoreConfirmation.apk
I/PackageManager( 4118): /system/priv-app/CMAccount changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/CMAccount/CMAccount.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/CMAccount/arm/CMAccount.odex needs to be relocated for /system/priv-app/CMAccount/CMAccount.apk
I/PackageManager( 4118): /system/priv-app/CMUpdater changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/CMUpdater/CMUpdater.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/CMUpdater/arm/CMUpdater.odex needs to be relocated for /system/priv-app/CMUpdater/CMUpdater.apk
I/PackageManager( 4118): /system/priv-app/CalendarProvider changed; collecting certs
D/wrapperGPS( 3699): wrapperConnect_RILD
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecCalendarProvider to /system/priv-app/CalendarProvider
W/PackageManager( 4118): Failed to parse /system/priv-app/CalendarProvider: Signature mismatch for shared user : SharedUserSetting{fd3a1ba android.uid.calendar/10046}
I/PackageManager( 4118): /system/priv-app/CellBroadcastReceiver changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/CellBroadcastReceiver/CellBroadcastReceiver.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/CellBroadcastReceiver/arm/CellBroadcastReceiver.odex needs to be relocated for /system/priv-app/CellBroadcastReceiver/CellBroadcastReceiver.apk
W/ResourceType( 4118): Failure getting entry for 0x7f0b023e (t=10 e=574) (error -75)
W/PackageParser( 4118): No actions in intent filter at /system/priv-app/Contacts/Contacts.apk Binary XML file line #362
I/PackageManager( 4118): /system/priv-app/Contacts changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecContacts to /system/priv-app/Contacts
W/PackageManager( 4118): Failed to parse /system/priv-app/Contacts: Signature mismatch for shared user : SharedUserSetting{255f7636 android.uid.shared/10020}
I/PackageManager( 4118): /system/priv-app/ContactsProvider changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecContactsProvider to /system/priv-app/ContactsProvider
W/PackageManager( 4118): Failed to parse /system/priv-app/ContactsProvider: Signature mismatch for shared user : SharedUserSetting{255f7636 android.uid.shared/10020}
I/PackageManager( 4118): /system/priv-app/CyanogenSetupWizard changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/priv-app/CyanogenSetupWizard: Signature mismatch for shared user : SharedUserSetting{39c54102 android.uid.system/1000}
I/PackageManager( 4118): /system/priv-app/DefaultContainerService changed; collecting certs
W/PackageManager( 4118): System package com.android.defcontainer signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.defcontainer issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/DefaultContainerService/DefaultContainerService.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/DefaultContainerService/arm/DefaultContainerService.odex needs to be relocated for /system/priv-app/DefaultContainerService/DefaultContainerService.apk
W/PackageParser( 4118): No actions in intent filter at /system/priv-app/Dialer/Dialer.apk Binary XML file line #185
I/PackageManager( 4118): /system/priv-app/Dialer changed; collecting certs
D/wrapperGPS( 3699): wrapperConnect_RILD
D/gpsd ( 3699): WakeLock(Acquire,GPSD)
D/gpsd ( 3699): WakeLock(Release,GPSD)
I/PackageManager( 4118): New shared user com.android.dialer: id=10194
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/Dialer/Dialer.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/Dialer/arm/Dialer.odex needs to be relocated for /system/priv-app/Dialer/Dialer.apk
I/PackageManager( 4118): /system/priv-app/DownloadProvider changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecDownloadProvider to /system/priv-app/DownloadProvider
W/PackageManager( 4118): Failed to parse /system/priv-app/DownloadProvider: Signature mismatch for shared user : SharedUserSetting{38ca1a0f android.media/10047}
I/PackageManager( 4118): /system/priv-app/ExternalStorageProvider changed; collecting certs
W/PackageManager( 4118): System package com.android.externalstorage signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.externalstorage issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/ExternalStorageProvider/ExternalStorageProvider.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/ExternalStorageProvider/arm/ExternalStorageProvider.odex needs to be relocated for /system/priv-app/ExternalStorageProvider/ExternalStorageProvider.apk
I/PackageManager( 4118): /system/priv-app/FusedLocation changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/priv-app/FusedLocation: Signature mismatch for shared user : SharedUserSetting{39c54102 android.uid.system/1000}
I/PackageManager( 4118): /system/priv-app/InputDevices changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/priv-app/InputDevices: Signature mismatch for shared user : SharedUserSetting{39c54102 android.uid.system/1000}
I/PackageManager( 4118): /system/priv-app/ManagedProvisioning changed; collecting certs
W/PackageManager( 4118): System package com.android.managedprovisioning signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.managedprovisioning issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/ManagedProvisioning/arm/ManagedProvisioning.odex needs to be relocated for /system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
I/PackageManager( 4118): /system/priv-app/MediaProvider changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecMediaProvider to /system/priv-app/MediaProvider
W/PackageManager( 4118): Failed to parse /system/priv-app/MediaProvider: Signature mismatch for shared user : SharedUserSetting{38ca1a0f android.media/10047}
I/PackageManager( 4118): /system/priv-app/Mms changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
W/PackageManager( 4118): System package com.android.mms signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.mms issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/Mms/Mms.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/Mms/arm/Mms.odex needs to be relocated for /system/priv-app/Mms/Mms.apk
W/PackageManager( 4118): Code path for pkg : com.android.mms changing from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
W/PackageManager( 4118): Resource path for pkg : com.android.mms changing from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
I/PackageManager( 4118): /system/priv-app/MmsService changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/priv-app/MmsService: Signature mismatch for shared user : SharedUserSetting{16822960 android.uid.phone/1001}
I/PackageManager( 4118): /system/priv-app/OneTimeInitializer changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/OneTimeInitializer/OneTimeInitializer.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/OneTimeInitializer/arm/OneTimeInitializer.odex needs to be relocated for /system/priv-app/OneTimeInitializer/OneTimeInitializer.apk
I/PackageManager( 4118): /system/priv-app/ProxyHandler changed; collecting certs
W/PackageManager( 4118): System package com.android.proxyhandler signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.proxyhandler issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/ProxyHandler/ProxyHandler.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/ProxyHandler/arm/ProxyHandler.odex needs to be relocated for /system/priv-app/ProxyHandler/ProxyHandler.apk
I/PackageManager( 4118): /system/priv-app/Settings changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecSettings to /system/priv-app/Settings
W/PackageManager( 4118): Failed to parse /system/priv-app/Settings: Signature mismatch for shared user : SharedUserSetting{39c54102 android.uid.system/1000}
I/PackageManager( 4118): /system/priv-app/SettingsProvider changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecSettingsProvider to /system/priv-app/SettingsProvider
W/PackageManager( 4118): Failed to parse /system/priv-app/SettingsProvider: Signature mismatch for shared user : SharedUserSetting{39c54102 android.uid.system/1000}
I/PackageManager( 4118): /system/priv-app/SharedStorageBackup changed; collecting certs
W/PackageManager( 4118): System package com.android.sharedstoragebackup signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.sharedstoragebackup issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/SharedStorageBackup/SharedStorageBackup.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/SharedStorageBackup/arm/SharedStorageBackup.odex needs to be relocated for /system/priv-app/SharedStorageBackup/SharedStorageBackup.apk
I/PackageManager( 4118): /system/priv-app/Shell changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/priv-app/Shell: Signature mismatch for shared user : SharedUserSetting{1c7d0dfd android.uid.shell/2000}
I/PackageManager( 4118): /system/priv-app/SystemUI changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/priv-app/SystemUI: Signature mismatch for shared user : SharedUserSetting{e83143e android.uid.systemui/10058}
W/SurfaceFlinger( 3689): Ignoring duplicate VSYNC event from HWC (t=14285191625)
I/PackageManager( 4118): /system/priv-app/TeleService changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/priv-app/TeleService: Signature mismatch for shared user : SharedUserSetting{16822960 android.uid.phone/1001}
I/PackageManager( 4118): /system/priv-app/Telecom changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/priv-app/Telecom: Signature mismatch for shared user : SharedUserSetting{16822960 android.uid.phone/1001}
I/PackageManager( 4118): /system/priv-app/TelephonyProvider changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecTelephonyProvider_Candy to /system/priv-app/TelephonyProvider
W/PackageManager( 4118): Failed to parse /system/priv-app/TelephonyProvider: Signature mismatch for shared user : SharedUserSetting{16822960 android.uid.phone/1001}
I/PackageManager( 4118): /system/priv-app/ThemeChooser changed; collecting certs
I/PackageManager( 4118): New shared user org.cyanogenmod.themes: id=10196
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/ThemeChooser/ThemeChooser.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/ThemeChooser/arm/ThemeChooser.odex needs to be relocated for /system/priv-app/ThemeChooser/ThemeChooser.apk
I/PackageManager( 4118): /system/priv-app/ThemesProvider changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/ThemesProvider/ThemesProvider.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/ThemesProvider/arm/ThemesProvider.odex needs to be relocated for /system/priv-app/ThemesProvider/ThemesProvider.apk
I/PackageManager( 4118): /system/priv-app/Trebuchet changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/Trebuchet/Trebuchet.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/Trebuchet/arm/Trebuchet.odex needs to be relocated for /system/priv-app/Trebuchet/Trebuchet.apk
W/PackageManager( 4118): Permission com.android.launcher.permission.INSTALL_SHORTCUT from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4118): Permission com.android.launcher.permission.UNINSTALL_SHORTCUT from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4118): Permission com.android.launcher3.permission.READ_SETTINGS from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4118): Permission com.android.launcher3.permission.WRITE_SETTINGS from package com.cyanogenmod.trebuchet ignored: no group null
I/PackageManager( 4118): /system/priv-app/VpnDialogs changed; collecting certs
W/PackageManager( 4118): System package com.android.vpndialogs signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.vpndialogs issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/VpnDialogs/VpnDialogs.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/VpnDialogs/arm/VpnDialogs.odex needs to be relocated for /system/priv-app/VpnDialogs/VpnDialogs.apk
I/PackageManager( 4118): /system/priv-app/WallpaperCropper changed; collecting certs
W/PackageManager( 4118): System package com.android.wallpapercropper signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.wallpapercropper issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/WallpaperCropper/WallpaperCropper.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/priv-app/WallpaperCropper/arm/WallpaperCropper.odex needs to be relocated for /system/priv-app/WallpaperCropper/WallpaperCropper.apk
I/PackageManager( 4118): /system/app/BasicDreams changed; collecting certs
W/PackageManager( 4118): System package com.android.dreams.basic signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.dreams.basic issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/BasicDreams/BasicDreams.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/BasicDreams/arm/BasicDreams.odex needs to be relocated for /system/app/BasicDreams/BasicDreams.apk
W/PackageParser( 4118): No actions in intent filter at /system/app/Bluetooth/Bluetooth.apk Binary XML file line #229
I/PackageManager( 4118): /system/app/Bluetooth changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/app/Bluetooth: Signature mismatch for shared user : SharedUserSetting{2632e144 android.uid.bluetooth/1002}
I/PackageManager( 4118): /system/app/Browser changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Browser/Browser.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Browser/arm/Browser.odex needs to be relocated for /system/app/Browser/Browser.apk
W/PackageParser( 4118): No actions in intent filter at /system/app/CMFileManager/CMFileManager.apk Binary XML file line #155
I/PackageManager( 4118): /system/app/CMFileManager changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/CMFileManager/CMFileManager.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/CMFileManager/arm/CMFileManager.odex needs to be relocated for /system/app/CMFileManager/CMFileManager.apk
I/PackageManager( 4118): /system/app/CMWallpapers changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/CMWallpapers/CMWallpapers.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/CMWallpapers/arm/CMWallpapers.odex needs to be relocated for /system/app/CMWallpapers/CMWallpapers.apk
I/PackageManager( 4118): /system/app/Calculator changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Calculator/Calculator.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Calculator/arm/Calculator.odex needs to be relocated for /system/app/Calculator/Calculator.apk
I/PackageManager( 4118): /system/app/Calendar changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/app/SPlanner_OS_UPG to /system/app/Calendar
W/PackageManager( 4118): System package com.android.calendar signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.calendar issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Calendar/Calendar.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Calendar/arm/Calendar.odex needs to be relocated for /system/app/Calendar/Calendar.apk
W/PackageManager( 4118): Code path for pkg : com.android.calendar changing from /system/app/SPlanner_OS_UPG to /system/app/Calendar
W/PackageManager( 4118): Resource path for pkg : com.android.calendar changing from /system/app/SPlanner_OS_UPG to /system/app/Calendar
I/PackageManager( 4118): /system/app/Camera2 changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Camera2/Camera2.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Camera2/arm/Camera2.odex needs to be relocated for /system/app/Camera2/Camera2.apk
I/PackageManager( 4118): /system/app/CaptivePortalLogin changed; collecting certs
W/PackageManager( 4118): System package com.android.captiveportallogin signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.captiveportallogin issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/CaptivePortalLogin/CaptivePortalLogin.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/CaptivePortalLogin/arm/CaptivePortalLogin.odex needs to be relocated for /system/app/CaptivePortalLogin/CaptivePortalLogin.apk
I/PackageManager( 4118): /system/app/CertInstaller changed; collecting certs
W/PackageManager( 4118): System package com.android.certinstaller signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.certinstaller issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/CertInstaller/CertInstaller.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/CertInstaller/arm/CertInstaller.odex needs to be relocated for /system/app/CertInstaller/CertInstaller.apk
I/PackageManager( 4118): /system/app/DeskClock changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/DeskClock/DeskClock.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/DeskClock/arm/DeskClock.odex needs to be relocated for /system/app/DeskClock/DeskClock.apk
I/PackageManager( 4118): /system/app/Development changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/app/Development: Signature mismatch for shared user : SharedUserSetting{39c54102 android.uid.system/1000}
I/PackageManager( 4118): /system/app/DocumentsUI changed; collecting certs
W/PackageManager( 4118): System package com.android.documentsui signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.documentsui issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/DocumentsUI/DocumentsUI.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/DocumentsUI/arm/DocumentsUI.odex needs to be relocated for /system/app/DocumentsUI/DocumentsUI.apk
I/PackageManager( 4118): /system/app/DownloadProviderUi changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/app/DownloadProviderUi: Signature mismatch for shared user : SharedUserSetting{38ca1a0f android.media/10047}
I/PackageManager( 4118): /system/app/Eleven changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Eleven/Eleven.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Eleven/arm/Eleven.odex needs to be relocated for /system/app/Eleven/Eleven.apk
I/PackageManager( 4118): /system/app/Email changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4118): System package com.android.email signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.email issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Email/Email.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Email/arm/Email.odex needs to be relocated for /system/app/Email/Email.apk
W/PackageManager( 4118): Code path for pkg : com.android.email changing from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4118): Resource path for pkg : com.android.email changing from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4118): Permission com.android.email.permission.READ_ATTACHMENT from package com.android.email ignored: no group null
I/PackageManager( 4118): /system/app/Exchange2 changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/app/SecExchange to /system/app/Exchange2
W/PackageManager( 4118): System package com.android.exchange signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.exchange issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Exchange2/Exchange2.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Exchange2/arm/Exchange2.odex needs to be relocated for /system/app/Exchange2/Exchange2.apk
W/PackageManager( 4118): Code path for pkg : com.android.exchange changing from /system/app/SecExchange to /system/app/Exchange2
W/PackageManager( 4118): Resource path for pkg : com.android.exchange changing from /system/app/SecExchange to /system/app/Exchange2
I/PackageManager( 4118): /system/app/Galaxy4 changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Galaxy4/Galaxy4.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Galaxy4/arm/Galaxy4.odex needs to be relocated for /system/app/Galaxy4/Galaxy4.apk
W/PackageParser( 4118): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #273
W/PackageParser( 4118): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #276
I/PackageManager( 4118): /system/app/Gallery2 changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Gallery2/Gallery2.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Gallery2/arm/Gallery2.odex needs to be relocated for /system/app/Gallery2/Gallery2.apk
I/PackageManager( 4118): /system/app/HTMLViewer changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/app/SecHTMLViewer to /system/app/HTMLViewer
W/PackageManager( 4118): System package com.android.htmlviewer signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.htmlviewer issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/HTMLViewer/HTMLViewer.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/HTMLViewer/arm/HTMLViewer.odex needs to be relocated for /system/app/HTMLViewer/HTMLViewer.apk
W/PackageManager( 4118): Code path for pkg : com.android.htmlviewer changing from /system/app/SecHTMLViewer to /system/app/HTMLViewer
W/PackageManager( 4118): Resource path for pkg : com.android.htmlviewer changing from /system/app/SecHTMLViewer to /system/app/HTMLViewer
I/PackageManager( 4118): /system/app/HoloSpiralWallpaper changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/HoloSpiralWallpaper/HoloSpiralWallpaper.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/HoloSpiralWallpaper/arm/HoloSpiralWallpaper.odex needs to be relocated for /system/app/HoloSpiralWallpaper/HoloSpiralWallpaper.apk
I/PackageManager( 4118): /system/app/InCallUI changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/app/LegacyInCallUI to /system/app/InCallUI
W/PackageManager( 4118): Package com.android.incallui shared user changed from android.uid.phone to com.android.dialer; replacing with new
W/PackageManager( 4118): System package com.android.incallui has changed from uid: 1001 to 10194; old data erased
I/PackageManager( 4118): SELinux relabeling of com.android.incallui issued.
I/PackageManager( 4118): /system/app/KeyChain changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/app/KeyChain: Signature mismatch for shared user : SharedUserSetting{39c54102 android.uid.system/1000}
I/PackageManager( 4118): /system/app/LatinIME changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/LatinIME/LatinIME.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/LatinIME/arm/LatinIME.odex needs to be relocated for /system/app/LatinIME/LatinIME.apk
I/PackageManager( 4118): /system/app/LiveWallpapers changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/LiveWallpapers/LiveWallpapers.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/LiveWallpapers/arm/LiveWallpapers.odex needs to be relocated for /system/app/LiveWallpapers/LiveWallpapers.apk
I/PackageManager( 4118): /system/app/LiveWallpapersPicker changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
W/PackageManager( 4118): System package com.android.wallpaper.livepicker signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.wallpaper.livepicker issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/LiveWallpapersPicker/arm/LiveWallpapersPicker.odex needs to be relocated for /system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk
W/PackageManager( 4118): Code path for pkg : com.android.wallpaper.livepicker changing from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
W/PackageManager( 4118): Resource path for pkg : com.android.wallpaper.livepicker changing from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
I/PackageManager( 4118): /system/app/LockClock changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/LockClock/LockClock.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/LockClock/arm/LockClock.odex needs to be relocated for /system/app/LockClock/LockClock.apk
I/PackageManager( 4118): /system/app/NoiseField changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/NoiseField to /system/app/NoiseField
W/PackageManager( 4118): System package com.android.noisefield signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.noisefield issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/NoiseField/NoiseField.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/NoiseField/arm/NoiseField.odex needs to be relocated for /system/app/NoiseField/NoiseField.apk
W/PackageManager( 4118): Code path for pkg : com.android.noisefield changing from /system/priv-app/NoiseField to /system/app/NoiseField
W/PackageManager( 4118): Resource path for pkg : com.android.noisefield changing from /system/priv-app/NoiseField to /system/app/NoiseField
I/PackageManager( 4118): /system/app/PacProcessor changed; collecting certs
W/PackageManager( 4118): System package com.android.pacprocessor signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.pacprocessor issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/PacProcessor/PacProcessor.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/PacProcessor/arm/PacProcessor.odex needs to be relocated for /system/app/PacProcessor/PacProcessor.apk
I/PackageManager( 4118): /system/app/PackageInstaller changed; collecting certs
W/PackageManager( 4118): System package com.android.packageinstaller signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.packageinstaller issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/PackageInstaller/PackageInstaller.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/PackageInstaller/arm/PackageInstaller.odex needs to be relocated for /system/app/PackageInstaller/PackageInstaller.apk
I/PackageManager( 4118): /system/app/PhaseBeam changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
W/PackageManager( 4118): System package com.android.phasebeam signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.phasebeam issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/PhaseBeam/PhaseBeam.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/PhaseBeam/arm/PhaseBeam.odex needs to be relocated for /system/app/PhaseBeam/PhaseBeam.apk
W/PackageManager( 4118): Code path for pkg : com.android.phasebeam changing from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
W/PackageManager( 4118): Resource path for pkg : com.android.phasebeam changing from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
I/PackageManager( 4118): /system/app/PhotoPhase changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/PhotoPhase/PhotoPhase.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/PhotoPhase/arm/PhotoPhase.odex needs to be relocated for /system/app/PhotoPhase/PhotoPhase.apk
I/PackageManager( 4118): /system/app/PhotoTable changed; collecting certs
W/PackageManager( 4118): System package com.android.dreams.phototable signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.dreams.phototable issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/PhotoTable/PhotoTable.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/PhotoTable/arm/PhotoTable.odex needs to be relocated for /system/app/PhotoTable/PhotoTable.apk
I/PackageManager( 4118): /system/app/PicoTts changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/PicoTts/PicoTts.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/PicoTts/arm/PicoTts.odex needs to be relocated for /system/app/PicoTts/PicoTts.apk
I/PackageManager( 4118): /system/app/PrintSpooler changed; collecting certs
W/PackageManager( 4118): Trying to update system app code path from /system/app/SPrintSpooler to /system/app/PrintSpooler
W/PackageManager( 4118): System package com.android.printspooler signature changed; retaining data.
I/PackageManager( 4118): SELinux relabeling of com.android.printspooler issued.
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/PrintSpooler/PrintSpooler.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/PrintSpooler/arm/PrintSpooler.odex needs to be relocated for /system/app/PrintSpooler/PrintSpooler.apk
W/PackageManager( 4118): Code path for pkg : com.android.printspooler changing from /system/app/SPrintSpooler to /system/app/PrintSpooler
W/PackageManager( 4118): Resource path for pkg : com.android.printspooler changing from /system/app/SPrintSpooler to /system/app/PrintSpooler
I/PackageManager( 4118): /system/app/Provision changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Provision/Provision.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Provision/arm/Provision.odex needs to be relocated for /system/app/Provision/Provision.apk
I/PackageManager( 4118): /system/app/SoundRecorder changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/SoundRecorder/SoundRecorder.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/SoundRecorder/arm/SoundRecorder.odex needs to be relocated for /system/app/SoundRecorder/SoundRecorder.apk
I/PackageManager( 4118): /system/app/Stk changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/app/Stk: Signature mismatch for shared user : SharedUserSetting{16822960 android.uid.phone/1001}
I/PackageManager( 4118): /system/app/Terminal changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/Terminal/Terminal.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/Terminal/arm/Terminal.odex needs to be relocated for /system/app/Terminal/Terminal.apk
I/PackageManager( 4118): /system/app/UserDictionaryProvider changed; collecting certs
W/PackageManager( 4118): Failed to parse /system/app/UserDictionaryProvider: Signature mismatch for shared user : SharedUserSetting{255f7636 android.uid.shared/10020}
I/PackageManager( 4118): /system/app/VisualizationWallpapers changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/VisualizationWallpapers/VisualizationWallpapers.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/VisualizationWallpapers/arm/VisualizationWallpapers.odex needs to be relocated for /system/app/VisualizationWallpapers/VisualizationWallpapers.apk
I/PackageManager( 4118): /system/app/WAPPushManager changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/WAPPushManager/WAPPushManager.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/WAPPushManager/arm/WAPPushManager.odex needs to be relocated for /system/app/WAPPushManager/WAPPushManager.apk
I/PackageManager( 4118): /system/app/WhisperPush changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/WhisperPush/WhisperPush.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/WhisperPush/arm/WhisperPush.odex needs to be relocated for /system/app/WhisperPush/WhisperPush.apk
W/PackageManager( 4118): Failed to parse /system/app/mcRegistry: Missing base APK in /system/app/mcRegistry
I/PackageManager( 4118): /system/app/webview changed; collecting certs
I/art ( 4118): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/webview/webview.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4118): DexFile_isDexOptNeeded file /system/app/webview/arm/webview.odex needs to be relocated for /system/app/webview/webview.apk
D/PackageManager( 4118): No files in app dir /system/vendor/app
D/PackageManager( 4118): No files in app dir /oem/app
D/PackageManager( 4118): No files in app dir /vendor/bundled-app
W/PackageManager( 4118): System package com.sec.esdk.elm no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.taskmanager no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.sbrowsertry no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.mmapp no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.service.health no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.soundalive no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.chromecustomizations no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.providers.userdictionary no longer exists; wiping its data
W/PackageManager( 4118): System package com.dsi.ant.server no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.FileShareClient no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.apps.tag no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.apps.docs.editors.docs no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.GeoLookout no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.enterprise.knox.cloudmdm.smdms no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.chaton no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.googlequicksearchbox no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.securitylogagent no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.filtermanager no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.easylauncher no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.providers.partnerbookmarks no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.sbrowser no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.RilServiceModeApp no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.app.video no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.FlashBarService no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.scloud.quota no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.play.games no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.nearby.mediaserver no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.emergencylauncher no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.feedback no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.assistantmenu no longer exists; wiping its data
W/PackageManager( 4118): System package flipboard.app no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.sounddetector no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.service.sm no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.dsm.system no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.snsimagecache no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.onetimeinitializer no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.storycam no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.inputdevices no longer exists; wiping its data
W/PackageManager( 4118): System package com.blurb.checkout no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.knox.switcher no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.beaconmanager no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.bluetooth no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.allsharecastplayer no longer exists; wiping its data
W/PackageManager( 4118): System package com.fmm.dm no longer exists; wiping its data
W/PackageManager( 4118): System package com.dsi.ant.service.socket no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.gestureservice no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.enterprise.mdm.services.simpin no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.servicemodeapp no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.easyonehand no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.mt no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.apps.maps no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.MtpApplication no longer exists; wiping its data
W/PackageManager( 4118): System package com.lifevibes.trimapp no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.contacts no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.providers.context no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.phone no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.hearingadjust no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.server.telecom no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.bcservice no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.stub.paywithpaypal no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.sdk.spenv10 no longer exists; wiping its data
W/PackageManager( 4118): System package com.monotype.android.font.rosemary no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.provider.emergencymode no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.videoplayer no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.Kies no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.gm no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.systemui no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.nfc no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.knox.shortcutsms no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.safetyassurance no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.providers.calendar no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.vending no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.providers.downloads no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.gsf no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.factorykeystring no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.colorblind no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.app.RilErrorNotifier no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.scloud.backup no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.youtube no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.sdk.samsunglink no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.location.fused no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.automotive.drivelink no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.airwakeupview no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.scloud.proxy.memo no longer exists; wiping its data
W/PackageManager( 4118): System package com.dropbox.android no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.providers.contacts no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.automation no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.mimage.photoretouching no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.widgetapp.activeapplicationwidget no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.FileShareServer no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.scloud.proxy.calendar no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.apps.magazines no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.setupwizard no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.bluetoothtest no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.pcw.device no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.usbsettings no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.providers.settingsearch no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.provider.shootingmodeprovider no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.mirrorlink no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.shareaccessibilitysettings no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.mimage.sstudio no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.knox.containeragent2 no longer exists; wiping its data
W/PackageManager( 4118): System package com.monotype.android.font.cooljazz no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.wlantest no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.scloud.proxy.contacts no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.gms no longer exists; wiping its data
W/PackageManager( 4118): System package com.gd.mobicore.pa no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.configupdater no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.knox.bridge no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.magnifier no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.personalpage.service no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.emergencymode.service no longer exists; wiping its data
W/PackageManager( 4118): System package com.dsi.ant.plugins.antplus no longer exists; wiping its data
W/PackageManager( 4118): System package com.wsomacp no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.app.headlines no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.scloud.proxy.snote3 no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.bcocr no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.tourviewer no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.app.samsungprintservice no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.preloadinstaller no longer exists; wiping its data
W/PackageManager( 4118): System package com.infraware.polarisviewer5 no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.billing no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.launcher no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.apps.books no longer exists; wiping its data
W/PackageManager( 4118): System package com.arcsoft.magicshotstudio no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.providers.security no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.clockpackage no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.hwmoduletest no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.service.travel no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.Preconfig no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.stk no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.gsf.login no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.voicenote no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.diagmonagent no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.provider.badge no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.sconnect no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.ofviewer no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.mdm no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.gallery3d no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.smartcard.manager no longer exists; wiping its data
W/PackageManager( 4118): System package com.wssyncmldm no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.sdk.professionalaudio.app.audioconnectionservice no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.android.provider.filterprovider no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.widgetapp.easymodecontactswidget no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.factory.camera no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.directconnect no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.knox.packageverifier no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.providers.tasks no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.samsungapps no longer exists; wiping its data
W/PackageManager( 4118): System package com.monotype.android.font.samsungsans no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.DataCreate no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.shell no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.cloudagent no longer exists; wiping its data
W/PackageManager( 4118): System package com.android.chrome no longer exists; wiping its data
W/PackageManager( 4118): System package com.samsung.klmsagent no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.dictionary no longer exists; wiping its data
W/PackageManager( 4118): System package com.google.android.marvin.talkback no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.ringtoneBR no longer exists; wiping its data
W/PackageManager( 4118): System package com.sec.android.app.wfdbroker no longer exists; wiping its data