-
Notifications
You must be signed in to change notification settings - Fork 1
/
test108.txt
5386 lines (5386 loc) · 666 KB
/
test108.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/McDaemon( 0): Daemon starting up...
W/auditd ( 3699): type=1325 audit(0.0:2): table=filter family=2 entries=0
W/auditd ( 3699): type=1325 audit(0.0:3): table=mangle family=2 entries=0
W/auditd ( 3699): type=1325 audit(0.0:4): table=nat family=2 entries=0
W/auditd ( 3699): type=1325 audit(0.0:5): table=raw family=2 entries=0
W/auditd ( 3699): type=1325 audit(0.0:6): table=security family=2 entries=0
W/auditd ( 3699): type=1325 audit(0.0:7): table=filter family=3 entries=0
W/auditd ( 3699): type=1325 audit(0.0:8): table=filter family=10 entries=0
W/auditd ( 3699): type=1325 audit(0.0:9): table=mangle family=10 entries=0
W/auditd ( 3699): type=1325 audit(0.0:10): table=raw family=10 entries=0
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)
I/cm ( 0): ____ _ _ ____ _ _ ____ ____ ____ _ _ _ _ ____ ___
I/lowmemorykiller( 0): Using in-kernel low memory killer interface
W/auditd ( 3699): type=1305 audit(0.0:11): audit_pid=3662 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3699): res=1
W/auditd ( 3699): type=1305 audit(0.0:12): audit_rate_limit=20 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3699): res=1
I/cm ( 3676): | \_/ |__| |\ | | | | __ |___ |\ | |\/| | | | \
--------- beginning of system
I/auditd ( 3677): Starting up
I/cm ( 3687): |___ | | | | \| |__| |__] |___ | \| | | |__| |__/
I/audit_log( 3677): Previous audit logfile detected, rotating
E/audit_rules( 3677): Could not read audit rules /data/misc/audit/audit.rules: No such file or directory
I/installd( 3686): installd firing up
I/DEBUG ( 3682): debuggerd: Jul 3 2015 03:58:19
I/macloader( 3691): Settting wifi type to wisol in /data/.cid.info
D/macloader( 3691): Change permissions of /data/.cid.info
I/Vold ( 3666): Vold 2.1 (the revenge) firing up
D/Vold ( 3666): Volume sdcard1 state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3666): Volume usbdisk state changing -1 (Initializing) -> 0 (No-Media)
I/Cryptfs ( 3666): Check if PFE is activated on Boot
I/PrProvisioning( 3704): successfully - provisioning start !
I/cm ( 3707): Welcome to Android 5.0.2 / CyanogenMod-12-20150713-UNOFFICIAL-k3gxx
E/Cryptfs ( 3666): Bad magic for real block device /dev/block/platform/12200000.dwmmc0/by-name/USERDATA
E/Cryptfs ( 3666): Error getting crypt footer and key
I/Netd ( 3679): Netd 1.0 starting
E/Netd ( 3679): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 3679): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 3679): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 3679): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 3679): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 3679): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 3679): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 3679): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
I/PrProvisioning( 3704): provisioning already done
I/keystore( 3688): SELinux: Keystore SELinux is disabled.
I/SurfaceFlinger( 3667): SurfaceFlinger is starting
I/SurfaceFlinger( 3667): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
D/gpsd ( 3690): WakeLock(Release,GPSD)
D/gpsd ( 3690): WakeLock(Release,SUPL)
I/gpsd_d ( 3690): GNSS: 219420
D/wrapperGPS( 3690): wrapperOpenClient_RILD
E/wrapperGPS( 3690): wrapperOpenClient_RILD: RegisterUnsolicitedHandler() UNSOL_GPS_NOTI (20009)
D/wrapperGPS( 3690): wrapperRegisterRequestCompleteHandler
D/wrapperGPS( 3690): wrapperRegisterUnsolicitedHandler id(12009), handler(0xb6ae76e9)
D/wrapperGPS( 3690): wrapperRegisterErrorCallback
D/wrapperGPS( 3690): wrapperConnect_RILD
D/libEGL ( 3667): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3667): PLATFORM VERSION : JB-MR-2
I/gralloc ( 3667): using (id=)
I/gralloc ( 3667): xres = 1080 px
I/gralloc ( 3667): yres = 1920 px
I/gralloc ( 3667): width = 65 mm (422.030762 dpi)
I/gralloc ( 3667): height = 115 mm (424.069580 dpi)
I/gralloc ( 3667): refresh rate = 60.00 Hz
D/WVMDrmPlugIn( 3684): WVMDrmPlugin::onGetSupportInfo : 0
D/hwcomposer( 3667): using
D/hwcomposer( 3667): xres = 1080 px
D/hwcomposer( 3667): yres = 1920 px
D/hwcomposer( 3667): width = 65 mm (422.030000 dpi)
D/hwcomposer( 3667): height = 115 mm (424.069000 dpi)
D/hwcomposer( 3667): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 3667): try node: /dev/v4l-subdev0, minor: 28
E/libexynosv4l2-subdev( 3667): failed to open sysfs entry for subdev
D/libexynosv4l2-subdev( 3667): try node: /dev/v4l-subdev1, minor: 29
E/libexynosv4l2-subdev( 3667): failed to open sysfs entry for subdev
D/libexynosv4l2-subdev( 3667): try node: /dev/v4l-subdev2, minor: 30
E/libexynosv4l2-subdev( 3667): failed to open sysfs entry for subdev
D/libexynosv4l2-subdev( 3667): try node: /dev/v4l-subdev3, minor: 31
E/libexynosv4l2-subdev( 3667): failed to open sysfs entry for subdev
D/libexynosv4l2-subdev( 3667): try node: /dev/v4l-subdev4, minor: 32
E/libexynosv4l2-subdev( 3667): failed to open sysfs entry for subdev
D/libexynosv4l2-subdev( 3667): try node: /dev/v4l-subdev5, minor: 33
E/libexynosv4l2-subdev( 3667): failed to open sysfs entry for subdev
D/libexynosv4l2-subdev( 3667): try node: /dev/v4l-subdev6, minor: 34
E/libexynosv4l2-subdev( 3667): failed to open sysfs entry for subdev
E/libexynosv4l2-subdev( 3667): no subdev device found
E/EXTERDISPLAY_LEGACY( 3667): failed to open hdmi mixer0 subdev
E/hwcomposer( 3667): openHdmi fail
I/hwcomposer( 3667): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 3667): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 3667): Using composer version 1.3
I/SurfaceFlinger( 3667): EGL information:
I/SurfaceFlinger( 3667): vendor : Android
I/SurfaceFlinger( 3667): version : 1.4 Android META-EGL
I/SurfaceFlinger( 3667): 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( 3667): Client API: OpenGL_ES
I/SurfaceFlinger( 3667): EGLSurface: 8-8-8-8, config=0xb69cf2ac
D/AndroidRuntime( 3692):
D/AndroidRuntime( 3692): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
I/SurfaceFlinger( 3667): OpenGL ES informations:
I/SurfaceFlinger( 3667): vendor : ARM
I/SurfaceFlinger( 3667): renderer : Mali-T628
I/SurfaceFlinger( 3667): version : OpenGL ES 3.0
I/SurfaceFlinger( 3667): 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( 3667): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 3667): GL_MAX_VIEWPORT_DIMS = 8192
D/SurfaceFlinger( 3667): Set power mode=2, type=0 flinger=0xb6962000
I/hwcomposer( 3667): unblank ioctl failed (display already unblanked)
D/AndroidRuntime( 3692): CheckJNI is OFF
I/art ( 3692): option[0]=-Xzygote
I/art ( 3692): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 3692): option[2]=exit
I/art ( 3692): option[3]=vfprintf
I/art ( 3692): option[4]=sensitiveThread
I/art ( 3692): option[5]=-verbose:gc
I/art ( 3692): option[6]=-Xms16m
I/art ( 3692): option[7]=-Xmx512m
I/art ( 3692): option[8]=-XX:mainThreadStackSize=24K
I/art ( 3692): option[9]=-XX:HeapGrowthLimit=192m
I/art ( 3692): option[10]=-XX:HeapMinFree=2m
I/art ( 3692): option[11]=-XX:HeapMaxFree=8m
I/art ( 3692): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 3692): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 3692): option[14]=-Xlockprofthreshold:500
I/art ( 3692): option[15]=-Ximage-compiler-option
I/art ( 3692): option[16]=--runtime-arg
I/art ( 3692): option[17]=-Ximage-compiler-option
I/art ( 3692): option[18]=-Xms64m
I/art ( 3692): option[19]=-Ximage-compiler-option
I/art ( 3692): option[20]=--runtime-arg
I/art ( 3692): option[21]=-Ximage-compiler-option
I/art ( 3692): option[22]=-Xmx64m
I/art ( 3692): option[23]=-Ximage-compiler-option
I/art ( 3692): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 3692): option[25]=-Ximage-compiler-option
I/art ( 3692): option[26]=--image-classes=preloaded-classes
I/art ( 3692): option[27]=-Xcompiler-option
I/art ( 3692): option[28]=--runtime-arg
I/art ( 3692): option[29]=-Xcompiler-option
I/art ( 3692): option[30]=-Xms64m
I/art ( 3692): option[31]=-Xcompiler-option
I/art ( 3692): option[32]=--runtime-arg
I/art ( 3692): option[33]=-Xcompiler-option
I/art ( 3692): option[34]=-Xmx512m
I/art ( 3692): option[35]=-Duser.language=es
I/art ( 3692): option[36]=-Duser.region=US
I/art ( 3692): Pruning dalvik-cache since we are relocating an image and will need to recompile
W/art ( 3692): Unexpected file type of
W/art ( 3692): encountered.
D/SurfaceFlinger( 3667): SF. shader cache generated - 26 shaders in 71.907585 ms
D/libEGL ( 3842): loaded /vendor/lib/egl/libGLES_mali.so
I/art ( 3692): 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=2572288
I/ ( 3842): PLATFORM VERSION : JB-MR-2
E/BootAnimation( 3842): couldn't find audio_conf.txt
D/BootAnimation( 3842): Use save memory method, maybe small fps in actual.
W/SurfaceFlinger( 3667): Ignoring duplicate VSYNC event from HWC (t=6091560167)
D/wrapperGPS( 3690): wrapperConnect_RILD
V/NatController( 3679): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 3679): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 3679): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 3679): runCmd(/system/bin/iptables -t nat -F natctrl_nat_PREROUTING) res=0
V/NatController( 3679): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=1
V/NatController( 3679): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=1
V/NatController( 3679): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
D/wrapperGPS( 3690): wrapperConnect_RILD
V/NatController( 3679): runCmd(/system/bin/iptables -t mangle -A natctrl_mangle_FORWARD -p tcp --tcp-flags SYN SYN -j TCPMSS --clamp-mss-to-pmtu) res=0
E/memtrack( 3692): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug( 3692): failed to load memtrack module: -2
I/SamplingProfilerIntegration( 3692): Profiling disabled.
D/Zygote ( 3692): begin preload
I/Zygote ( 3692): Preloading classes...
I/art ( 3692): Explicit concurrent mark sweep GC freed 994(55KB) AllocSpace objects, 0(0B) LOS objects, 98% free, 70KB/4MB, paused 119us total 4.138ms
I/art ( 3692): Counter: 1
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansGujarati-Regular.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansGujarati-Bold.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Regular.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Bold.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansGurmukhi-Regular.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansGurmukhi-Bold.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Regular.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Bold.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansSinhala-Regular.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansSinhala-Bold.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansCherokee-Regular.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansCanadianAboriginal-Regular.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansYi-Regular.ttf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansHans-Regular.otf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansHant-Regular.otf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansJP-Regular.otf
E/Minikin ( 3692): addFont failed to create font /system/fonts/NotoSansKR-Regular.otf
D/MDnsDS ( 3679): MDnsSdListener::Hander starting up
D/MDnsDS ( 3679): MDnsSdListener starting to monitor
D/MDnsDS ( 3679): Going to poll with pollCount 1
I/art ( 3692): Thread[1,tid=3692,WaitingForJniOnLoad,Thread*=0xb5007800,peer=0x12c330e0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
D/MtpDeviceJNI( 3692): register_android_mtp_MtpDevice
I/art ( 3692): Thread[1,tid=3692,WaitingForJniOnLoad,Thread*=0xb5007800,peer=0x12c330e0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
I/art ( 3692): Thread[1,tid=3692,WaitingForJniOnLoad,Thread*=0xb5007800,peer=0x12c330e0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
D/wrapperGPS( 3690): wrapperConnect_RILD
I/System ( 3692): Loaded time zone names for "" in 45ms (42ms in ICU)
I/System ( 3692): Loaded time zone names for "en_US" in 29ms (24ms in ICU)
I/System ( 3692): Loaded time zone names for "es_US" in 33ms (28ms in ICU)
I/art ( 3692): Explicit concurrent mark sweep GC freed 32367(1969KB) AllocSpace objects, 0(0B) LOS objects, 71% free, 1615KB/5MB, paused 128us total 12.836ms
I/Zygote ( 3692): ...preloaded 3005 classes in 837ms.
I/art ( 3692): VMRuntime.preloadDexCaches starting
I/art ( 3692): VMRuntime.preloadDexCaches strings total=217316 before=40338 after=40338
I/art ( 3692): VMRuntime.preloadDexCaches types total=18704 before=6337 after=6380
I/art ( 3692): VMRuntime.preloadDexCaches fields total=87408 before=32543 after=32871
I/art ( 3692): VMRuntime.preloadDexCaches methods total=154031 before=66779 after=67657
I/art ( 3692): VMRuntime.preloadDexCaches finished
I/art ( 3692): Counter: 0
I/art ( 3692): Counter: 1
I/art ( 3692): Explicit concurrent mark sweep GC freed 175(20KB) AllocSpace objects, 0(0B) LOS objects, 71% free, 1595KB/5MB, paused 149us total 8.287ms
D/idmap ( 4103): error: no read access to /vendor/overlay: No such file or directory
I/Zygote ( 3692): Preloading resources...
W/SurfaceFlinger( 3667): Ignoring duplicate VSYNC event from HWC (t=8725259083)
D/BootAnimation( 3842): Use save memory method, maybe small fps in actual.
I/art ( 3692): Explicit concurrent mark sweep GC freed 4579(161KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 207us total 9.134ms
I/Zygote ( 3692): ...preloaded 430 resources in 379ms.
I/art ( 3692): Explicit concurrent mark sweep GC freed 572(32KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 216us total 8.972ms
I/Zygote ( 3692): ...preloaded 41 resources in 18ms.
I/art ( 3692): Counter: 0
D/libEGL ( 3692): loaded /vendor/lib/egl/libGLES_mali.so
I/Zygote ( 3692): Preloading shared libraries...
D/Zygote ( 3692): end preload
I/art ( 3692): Explicit concurrent mark sweep GC freed 461(21KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 185us total 7.957ms
I/art ( 3692): Explicit concurrent mark sweep GC freed 41(1568B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 318us total 8.468ms
I/art ( 3692): Explicit concurrent mark sweep GC freed 5(160B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 194us total 8.599ms
I/Zygote ( 3692): System server process 4104 has been created
I/Zygote ( 3692): Accepting command socket connections
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/org.cyanogenmod.hardware.odex needs to be relocated for /system/framework/org.cyanogenmod.hardware.jar
I/InstallerConnection( 4104): connecting...
I/installd( 3686): new connection
E/installd( 4124): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/services.odex needs to be relocated for /system/framework/services.jar
E/installd( 4125): 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)
D/wrapperGPS( 3690): wrapperConnect_RILD
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/ethernet-service.odex needs to be relocated for /system/framework/ethernet-service.jar
E/installd( 4126): 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)
W/SurfaceFlinger( 3667): Ignoring duplicate VSYNC event from HWC (t=9350066750)
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/wifi-service.odex needs to be relocated for /system/framework/wifi-service.jar
E/installd( 4127): 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( 4104): disconnecting...
E/installd( 3686): eof
E/installd( 3686): failed to read size
I/installd( 3686): closing connection
I/SystemServer( 4104): Entered the Android system server!
W/SurfaceFlinger( 3667): Ignoring duplicate VSYNC event from HWC (t=9485094792)
V/Fingerprint-JNI( 4104): FingerprintManager JNI ready.
I/ ( 4104): System server: starting sensor init.
D/SensorService( 4104): nuSensorService starting...
I/SystemServiceManager( 4104): Starting com.android.server.pm.Installer
I/Installer( 4104): Waiting for installd to be ready.
I/InstallerConnection( 4104): connecting...
I/installd( 3686): new connection
I/SystemServiceManager( 4104): Starting com.android.server.am.ActivityManagerService$Lifecycle
E/Sensors ( 4104): GeoMagneticSensor, ERROR dev_num = -19
I/Sensors ( 4104): Proximity old sensor_state 0, new sensor_state : 128 en : 1
I/Sensors ( 4104): Light old sensor_state 128, new sensor_state : 640 en : 1
E/Sensors ( 4104): UncalMagneticSensor, ERROR dev_num = -19
I/Sensors ( 4104): SigMotionSensor old sensor_state 640, new sensor_state : 8832 en : 1
E/Sensors ( 4104): UncalGyroSensor, ERROR dev_num = -19
E/Sensors ( 4104): GameRotationVector, ERROR dev_num = -19
I/Sensors ( 4104): StepCounterSensor old sensor_state 8832, new sensor_state : 139904 en : 1
I/ActivityManager( 4104): Memory class: 192
I/ServiceThread( 4104): Enabled StrictMode logging for ActivityManager looper.
D/Sensors ( 4104): HrmSpO2Sensor::HrmSpO2Sensor: Shared version Registered
E/SensorService( 4104): >>>> WARNING <<< Upgrade sensor HAL to version 1_3
I/Sensors ( 4104): Proximity old sensor_state 139904, new sensor_state : 139776 en : 0
I/Sensors ( 4104): Light old sensor_state 139776, new sensor_state : 139264 en : 0
I/Sensors ( 4104): StepCounterSensor old sensor_state 139264, new sensor_state : 8192 en : 0
I/Sensors ( 4104): SigMotionSensor old sensor_state 8192, new sensor_state : 0 en : 0
I/Sensors ( 4104): HrmSpO2Sensor::enable, handle(16), en(0), what(1/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4104): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4104): HrmSpO2Sensor::enable, handle(17), en(0), what(0/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4104): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4104): HrmSpO2Sensor::enable, handle(18), en(0), what(2/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4104): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/ ( 4104): System server: sensor init done.
D/SensorService( 4104): nuSensorService thread starting...
I/Sensors ( 4104): ProximitySensor - 8(cm)
D/SensorService( 4104): new thread SensorEventAckReceiver
I/IntentFirewall( 4104): Read new rules (A:0 B:0 S:0)
I/ServiceThread( 4104): Enabled StrictMode logging for android.ui looper.
I/ServiceThread( 4104): Enabled StrictMode logging for android.display looper.
D/AppOps ( 4104): AppOpsService published
I/SystemServiceManager( 4104): Starting com.android.server.power.PowerManagerService
I/ServiceThread( 4104): Enabled StrictMode logging for PowerManagerService looper.
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/multi_enter_load: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/single_enter_load: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/param_index: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/timer_rate: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/timer_slack: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/min_sample_time: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/hispeed_freq: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/go_hispeed_load: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/target_loads: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/above_hispeed_delay: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/boostpulse_duration: No such file or directory
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_enter_load: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_enter_time: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_exit_load: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_exit_time: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_enter_load: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_enter_time: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_exit_load: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_exit_time: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_slack: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/boostpulse_duration: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: Permission denied
E/SEC PowerHAL( 4104): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
W/libsuspend( 4104): Error writing 'on' to /sys/power/state: Invalid argument
I/libsuspend( 4104): Selected wakeup count
I/SystemServiceManager( 4104): Starting com.android.server.display.DisplayManagerService
I/SystemServiceManager( 4104): Starting phase 100
I/DisplayManagerService( 4104): 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( 4104): Package Manager
W/SELinuxMMAC( 4104): Error opening /data/system/seapp_hash. Assuming first boot.
W/PackageManager( 4104): No security bridge jar found, using default
W/SystemConfig( 4104): No directory /system/etc/sysconfig, skipping
D/SELinuxMMAC( 4104): Using policy file /system/etc/security/mac_permissions.xml
D/wrapperGPS( 3690): wrapperConnect_RILD
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/android.test.runner.odex needs to be relocated for /system/framework/android.test.runner.jar
E/installd( 4147): 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 ( 4104): 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 ( 4104): 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( 4148): 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 ( 4104): 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 ( 4104): 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( 4149): 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 ( 4104): 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 ( 4104): 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( 4150): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/javax.obex.odex needs to be relocated for /system/framework/javax.obex.jar
E/installd( 4151): 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 ( 4104): DexFile_isDexOptNeeded file '/system/framework/com.android.nfc_extras.jar' does not exist
W/PackageManager( 4104): Library not found: /system/framework/com.android.nfc_extras.jar
I/art ( 4104): 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 ( 4104): 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( 4152): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/javax.btobex.odex needs to be relocated for /system/framework/javax.btobex.jar
E/installd( 4153): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/am.odex needs to be relocated for /system/framework/am.jar
E/installd( 4154): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/appops.odex needs to be relocated for /system/framework/appops.jar
E/installd( 4155): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/appwidget.odex needs to be relocated for /system/framework/appwidget.jar
E/installd( 4156): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/bmgr.odex needs to be relocated for /system/framework/bmgr.jar
E/installd( 4157): 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)
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/bu.odex needs to be relocated for /system/framework/bu.jar
E/installd( 4158): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/content.odex needs to be relocated for /system/framework/content.jar
E/installd( 4159): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/dpm.odex needs to be relocated for /system/framework/dpm.jar
E/installd( 4160): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/ime.odex needs to be relocated for /system/framework/ime.jar
E/installd( 4161): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/input.odex needs to be relocated for /system/framework/input.jar
E/installd( 4162): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/media_cmd.odex needs to be relocated for /system/framework/media_cmd.jar
E/installd( 4164): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/monkey.odex needs to be relocated for /system/framework/monkey.jar
E/installd( 4165): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/pm.odex needs to be relocated for /system/framework/pm.jar
E/installd( 4166): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/requestsync.odex needs to be relocated for /system/framework/requestsync.jar
E/installd( 4167): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/settings.odex needs to be relocated for /system/framework/settings.jar
E/installd( 4168): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/svc.odex needs to be relocated for /system/framework/svc.jar
E/installd( 4169): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/tm.odex needs to be relocated for /system/framework/tm.jar
E/installd( 4170): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/uiautomator.odex needs to be relocated for /system/framework/uiautomator.jar
E/installd( 4171): 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 ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/framework/arm/wm.odex needs to be relocated for /system/framework/wm.jar
E/installd( 4172): 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( 4104): (283) recovered 152 frames from WAL file /data/data/com.android.providers.settings/databases/settings.db-wal
D/PackageManager( 4104): No files in app dir /vendor/overlay
W/PackageManager( 4104): Failed to parse /system/framework/arm: Missing base APK in /system/framework/arm
I/PackageManager( 4104): /system/framework/framework-res.apk changed; collecting certs
D/wrapperGPS( 3690): wrapperConnect_RILD
W/PackageManager( 4104): Failed to parse /system/framework/framework-res.apk: Signature mismatch for shared user : SharedUserSetting{1f5f43b1 android.uid.system/1000}
I/PackageManager( 4104): /system/priv-app/AudioFX changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/AudioFX/arm/AudioFX.odex needs to be relocated for /system/priv-app/AudioFX/AudioFX.apk
I/PackageManager( 4104): /system/priv-app/BackupRestoreConfirmation changed; collecting certs
W/PackageManager( 4104): System package com.android.backupconfirm signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.backupconfirm issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/BackupRestoreConfirmation/arm/BackupRestoreConfirmation.odex needs to be relocated for /system/priv-app/BackupRestoreConfirmation/BackupRestoreConfirmation.apk
I/PackageManager( 4104): /system/priv-app/CMAccount changed; collecting certs
W/SurfaceFlinger( 3667): Ignoring duplicate VSYNC event from HWC (t=11325080875)
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/CMAccount/arm/CMAccount.odex needs to be relocated for /system/priv-app/CMAccount/CMAccount.apk
I/PackageManager( 4104): /system/priv-app/CMUpdater changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/CMUpdater/arm/CMUpdater.odex needs to be relocated for /system/priv-app/CMUpdater/CMUpdater.apk
I/PackageManager( 4104): /system/priv-app/CalendarProvider changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecCalendarProvider to /system/priv-app/CalendarProvider
W/PackageManager( 4104): Failed to parse /system/priv-app/CalendarProvider: Signature mismatch for shared user : SharedUserSetting{2d6d5ec9 android.uid.calendar/10046}
I/PackageManager( 4104): /system/priv-app/CellBroadcastReceiver changed; collecting certs
W/SurfaceFlinger( 3667): Ignoring duplicate VSYNC event from HWC (t=11460086042)
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/CellBroadcastReceiver/arm/CellBroadcastReceiver.odex needs to be relocated for /system/priv-app/CellBroadcastReceiver/CellBroadcastReceiver.apk
W/ResourceType( 4104): Failure getting entry for 0x7f0b023e (t=10 e=574) (error -75)
W/PackageParser( 4104): No actions in intent filter at /system/priv-app/Contacts/Contacts.apk Binary XML file line #362
I/PackageManager( 4104): /system/priv-app/Contacts changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecContacts to /system/priv-app/Contacts
W/PackageManager( 4104): Failed to parse /system/priv-app/Contacts: Signature mismatch for shared user : SharedUserSetting{3842b2f5 android.uid.shared/10020}
I/PackageManager( 4104): /system/priv-app/ContactsProvider changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecContactsProvider to /system/priv-app/ContactsProvider
W/PackageManager( 4104): Failed to parse /system/priv-app/ContactsProvider: Signature mismatch for shared user : SharedUserSetting{3842b2f5 android.uid.shared/10020}
I/PackageManager( 4104): /system/priv-app/CyanogenSetupWizard changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/priv-app/CyanogenSetupWizard: Signature mismatch for shared user : SharedUserSetting{1f5f43b1 android.uid.system/1000}
I/PackageManager( 4104): /system/priv-app/DefaultContainerService changed; collecting certs
W/PackageManager( 4104): System package com.android.defcontainer signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.defcontainer issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/DefaultContainerService/arm/DefaultContainerService.odex needs to be relocated for /system/priv-app/DefaultContainerService/DefaultContainerService.apk
W/PackageParser( 4104): No actions in intent filter at /system/priv-app/Dialer/Dialer.apk Binary XML file line #185
I/PackageManager( 4104): /system/priv-app/Dialer changed; collecting certs
I/PackageManager( 4104): New shared user com.android.dialer: id=10198
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/Dialer/arm/Dialer.odex needs to be relocated for /system/priv-app/Dialer/Dialer.apk
D/wrapperGPS( 3690): wrapperConnect_RILD
I/PackageManager( 4104): /system/priv-app/DownloadProvider changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecDownloadProvider to /system/priv-app/DownloadProvider
W/PackageManager( 4104): Failed to parse /system/priv-app/DownloadProvider: Signature mismatch for shared user : SharedUserSetting{28bcb642 android.media/10047}
I/PackageManager( 4104): /system/priv-app/ExternalStorageProvider changed; collecting certs
W/PackageManager( 4104): System package com.android.externalstorage signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.externalstorage issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/ExternalStorageProvider/arm/ExternalStorageProvider.odex needs to be relocated for /system/priv-app/ExternalStorageProvider/ExternalStorageProvider.apk
I/PackageManager( 4104): /system/priv-app/FusedLocation changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/priv-app/FusedLocation: Signature mismatch for shared user : SharedUserSetting{1f5f43b1 android.uid.system/1000}
I/PackageManager( 4104): /system/priv-app/InputDevices changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/priv-app/InputDevices: Signature mismatch for shared user : SharedUserSetting{1f5f43b1 android.uid.system/1000}
I/PackageManager( 4104): /system/priv-app/ManagedProvisioning changed; collecting certs
W/PackageManager( 4104): System package com.android.managedprovisioning signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.managedprovisioning issued.
I/art ( 4104): 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
W/SurfaceFlinger( 3667): Ignoring duplicate VSYNC event from HWC (t=12675201542)
I/art ( 4104): DexFile_isDexOptNeeded file /system/priv-app/ManagedProvisioning/arm/ManagedProvisioning.odex needs to be relocated for /system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
I/PackageManager( 4104): /system/priv-app/MediaProvider changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecMediaProvider to /system/priv-app/MediaProvider
W/PackageManager( 4104): Failed to parse /system/priv-app/MediaProvider: Signature mismatch for shared user : SharedUserSetting{28bcb642 android.media/10047}
I/PackageManager( 4104): /system/priv-app/Mms changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
W/PackageManager( 4104): System package com.android.mms signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.mms issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/Mms/arm/Mms.odex needs to be relocated for /system/priv-app/Mms/Mms.apk
W/PackageManager( 4104): Code path for pkg : com.android.mms changing from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
W/PackageManager( 4104): Resource path for pkg : com.android.mms changing from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
I/PackageManager( 4104): /system/priv-app/MmsService changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/priv-app/MmsService: Signature mismatch for shared user : SharedUserSetting{19e29667 android.uid.phone/1001}
I/PackageManager( 4104): /system/priv-app/OneTimeInitializer changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/OneTimeInitializer/arm/OneTimeInitializer.odex needs to be relocated for /system/priv-app/OneTimeInitializer/OneTimeInitializer.apk
I/PackageManager( 4104): /system/priv-app/ProxyHandler changed; collecting certs
W/PackageManager( 4104): System package com.android.proxyhandler signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.proxyhandler issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/ProxyHandler/arm/ProxyHandler.odex needs to be relocated for /system/priv-app/ProxyHandler/ProxyHandler.apk
D/wrapperGPS( 3690): wrapperConnect_RILD
I/PackageManager( 4104): /system/priv-app/Settings changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecSettings to /system/priv-app/Settings
W/PackageManager( 4104): Failed to parse /system/priv-app/Settings: Signature mismatch for shared user : SharedUserSetting{1f5f43b1 android.uid.system/1000}
I/PackageManager( 4104): /system/priv-app/SettingsProvider changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecSettingsProvider to /system/priv-app/SettingsProvider
W/PackageManager( 4104): Failed to parse /system/priv-app/SettingsProvider: Signature mismatch for shared user : SharedUserSetting{1f5f43b1 android.uid.system/1000}
I/PackageManager( 4104): /system/priv-app/SharedStorageBackup changed; collecting certs
W/PackageManager( 4104): System package com.android.sharedstoragebackup signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.sharedstoragebackup issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/SharedStorageBackup/arm/SharedStorageBackup.odex needs to be relocated for /system/priv-app/SharedStorageBackup/SharedStorageBackup.apk
I/PackageManager( 4104): /system/priv-app/Shell changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/priv-app/Shell: Signature mismatch for shared user : SharedUserSetting{2b323c8 android.uid.shell/2000}
I/PackageManager( 4104): /system/priv-app/SystemUI changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/priv-app/SystemUI: Signature mismatch for shared user : SharedUserSetting{2d325d9d android.uid.systemui/10058}
I/PackageManager( 4104): /system/priv-app/TeleService changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/priv-app/TeleService: Signature mismatch for shared user : SharedUserSetting{19e29667 android.uid.phone/1001}
I/PackageManager( 4104): /system/priv-app/Telecom changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/priv-app/Telecom: Signature mismatch for shared user : SharedUserSetting{19e29667 android.uid.phone/1001}
I/PackageManager( 4104): /system/priv-app/TelephonyProvider changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecTelephonyProvider_Candy to /system/priv-app/TelephonyProvider
W/PackageManager( 4104): Failed to parse /system/priv-app/TelephonyProvider: Signature mismatch for shared user : SharedUserSetting{19e29667 android.uid.phone/1001}
I/PackageManager( 4104): /system/priv-app/ThemeChooser changed; collecting certs
I/PackageManager( 4104): New shared user org.cyanogenmod.themes: id=10200
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/ThemeChooser/arm/ThemeChooser.odex needs to be relocated for /system/priv-app/ThemeChooser/ThemeChooser.apk
I/PackageManager( 4104): /system/priv-app/ThemesProvider changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/ThemesProvider/arm/ThemesProvider.odex needs to be relocated for /system/priv-app/ThemesProvider/ThemesProvider.apk
I/PackageManager( 4104): /system/priv-app/Trebuchet changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/Trebuchet/arm/Trebuchet.odex needs to be relocated for /system/priv-app/Trebuchet/Trebuchet.apk
W/PackageManager( 4104): Permission com.android.launcher.permission.INSTALL_SHORTCUT from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4104): Permission com.android.launcher.permission.UNINSTALL_SHORTCUT from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4104): Permission com.android.launcher3.permission.READ_SETTINGS from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4104): Permission com.android.launcher3.permission.WRITE_SETTINGS from package com.cyanogenmod.trebuchet ignored: no group null
I/PackageManager( 4104): /system/priv-app/VpnDialogs changed; collecting certs
W/PackageManager( 4104): System package com.android.vpndialogs signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.vpndialogs issued.
I/art ( 4104): 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
D/wrapperGPS( 3690): wrapperConnect_RILD
I/art ( 4104): DexFile_isDexOptNeeded file /system/priv-app/VpnDialogs/arm/VpnDialogs.odex needs to be relocated for /system/priv-app/VpnDialogs/VpnDialogs.apk
I/PackageManager( 4104): /system/priv-app/WallpaperCropper changed; collecting certs
W/PackageManager( 4104): System package com.android.wallpapercropper signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.wallpapercropper issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/priv-app/WallpaperCropper/arm/WallpaperCropper.odex needs to be relocated for /system/priv-app/WallpaperCropper/WallpaperCropper.apk
I/PackageManager( 4104): /system/app/BasicDreams changed; collecting certs
W/PackageManager( 4104): System package com.android.dreams.basic signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.dreams.basic issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/BasicDreams/arm/BasicDreams.odex needs to be relocated for /system/app/BasicDreams/BasicDreams.apk
W/PackageParser( 4104): No actions in intent filter at /system/app/Bluetooth/Bluetooth.apk Binary XML file line #229
I/PackageManager( 4104): /system/app/Bluetooth changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/app/Bluetooth: Signature mismatch for shared user : SharedUserSetting{2adb361b android.uid.bluetooth/1002}
I/PackageManager( 4104): /system/app/Browser changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Browser/arm/Browser.odex needs to be relocated for /system/app/Browser/Browser.apk
W/PackageParser( 4104): No actions in intent filter at /system/app/CMFileManager/CMFileManager.apk Binary XML file line #155
I/PackageManager( 4104): /system/app/CMFileManager changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/CMFileManager/arm/CMFileManager.odex needs to be relocated for /system/app/CMFileManager/CMFileManager.apk
I/PackageManager( 4104): /system/app/CMWallpapers changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/CMWallpapers/arm/CMWallpapers.odex needs to be relocated for /system/app/CMWallpapers/CMWallpapers.apk
I/PackageManager( 4104): /system/app/Calculator changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Calculator/arm/Calculator.odex needs to be relocated for /system/app/Calculator/Calculator.apk
I/PackageManager( 4104): /system/app/Calendar changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/app/SPlanner_OS_UPG to /system/app/Calendar
W/PackageManager( 4104): System package com.android.calendar signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.calendar issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Calendar/arm/Calendar.odex needs to be relocated for /system/app/Calendar/Calendar.apk
W/PackageManager( 4104): Code path for pkg : com.android.calendar changing from /system/app/SPlanner_OS_UPG to /system/app/Calendar
W/PackageManager( 4104): Resource path for pkg : com.android.calendar changing from /system/app/SPlanner_OS_UPG to /system/app/Calendar
I/PackageManager( 4104): /system/app/Camera2 changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Camera2/arm/Camera2.odex needs to be relocated for /system/app/Camera2/Camera2.apk
I/PackageManager( 4104): /system/app/CaptivePortalLogin changed; collecting certs
W/PackageManager( 4104): System package com.android.captiveportallogin signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.captiveportallogin issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/CaptivePortalLogin/arm/CaptivePortalLogin.odex needs to be relocated for /system/app/CaptivePortalLogin/CaptivePortalLogin.apk
I/PackageManager( 4104): /system/app/CertInstaller changed; collecting certs
W/PackageManager( 4104): System package com.android.certinstaller signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.certinstaller issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/CertInstaller/arm/CertInstaller.odex needs to be relocated for /system/app/CertInstaller/CertInstaller.apk
I/PackageManager( 4104): /system/app/DeskClock changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/DeskClock/arm/DeskClock.odex needs to be relocated for /system/app/DeskClock/DeskClock.apk
I/PackageManager( 4104): /system/app/Development changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/app/Development: Signature mismatch for shared user : SharedUserSetting{1f5f43b1 android.uid.system/1000}
I/PackageManager( 4104): /system/app/DocumentsUI changed; collecting certs
W/PackageManager( 4104): System package com.android.documentsui signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.documentsui issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/DocumentsUI/arm/DocumentsUI.odex needs to be relocated for /system/app/DocumentsUI/DocumentsUI.apk
I/PackageManager( 4104): /system/app/DownloadProviderUi changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/app/DownloadProviderUi: Signature mismatch for shared user : SharedUserSetting{28bcb642 android.media/10047}
I/PackageManager( 4104): /system/app/Eleven changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Eleven/arm/Eleven.odex needs to be relocated for /system/app/Eleven/Eleven.apk
I/PackageManager( 4104): /system/app/Email changed; collecting certs
D/wrapperGPS( 3690): wrapperConnect_RILD
W/PackageManager( 4104): Trying to update system app code path from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4104): System package com.android.email signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.email issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Email/arm/Email.odex needs to be relocated for /system/app/Email/Email.apk
W/PackageManager( 4104): Code path for pkg : com.android.email changing from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4104): Resource path for pkg : com.android.email changing from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4104): Permission com.android.email.permission.READ_ATTACHMENT from package com.android.email ignored: no group null
I/PackageManager( 4104): /system/app/Exchange2 changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/app/SecExchange to /system/app/Exchange2
W/PackageManager( 4104): System package com.android.exchange signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.exchange issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Exchange2/arm/Exchange2.odex needs to be relocated for /system/app/Exchange2/Exchange2.apk
W/PackageManager( 4104): Code path for pkg : com.android.exchange changing from /system/app/SecExchange to /system/app/Exchange2
W/PackageManager( 4104): Resource path for pkg : com.android.exchange changing from /system/app/SecExchange to /system/app/Exchange2
I/PackageManager( 4104): /system/app/Galaxy4 changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Galaxy4/arm/Galaxy4.odex needs to be relocated for /system/app/Galaxy4/Galaxy4.apk
W/PackageParser( 4104): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #273
W/PackageParser( 4104): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #276
I/PackageManager( 4104): /system/app/Gallery2 changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Gallery2/arm/Gallery2.odex needs to be relocated for /system/app/Gallery2/Gallery2.apk
I/PackageManager( 4104): /system/app/HTMLViewer changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/app/SecHTMLViewer to /system/app/HTMLViewer
W/PackageManager( 4104): System package com.android.htmlviewer signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.htmlviewer issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/HTMLViewer/arm/HTMLViewer.odex needs to be relocated for /system/app/HTMLViewer/HTMLViewer.apk
W/PackageManager( 4104): Code path for pkg : com.android.htmlviewer changing from /system/app/SecHTMLViewer to /system/app/HTMLViewer
W/PackageManager( 4104): Resource path for pkg : com.android.htmlviewer changing from /system/app/SecHTMLViewer to /system/app/HTMLViewer
I/PackageManager( 4104): /system/app/HoloSpiralWallpaper changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/HoloSpiralWallpaper/arm/HoloSpiralWallpaper.odex needs to be relocated for /system/app/HoloSpiralWallpaper/HoloSpiralWallpaper.apk
I/PackageManager( 4104): /system/app/InCallUI changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/app/LegacyInCallUI to /system/app/InCallUI
W/PackageManager( 4104): Package com.android.incallui shared user changed from android.uid.phone to com.android.dialer; replacing with new
W/PackageManager( 4104): System package com.android.incallui has changed from uid: 1001 to 10198; old data erased
I/PackageManager( 4104): SELinux relabeling of com.android.incallui issued.
I/PackageManager( 4104): /system/app/KeyChain changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/app/KeyChain: Signature mismatch for shared user : SharedUserSetting{1f5f43b1 android.uid.system/1000}
I/PackageManager( 4104): /system/app/LatinIME changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/LatinIME/arm/LatinIME.odex needs to be relocated for /system/app/LatinIME/LatinIME.apk
I/PackageManager( 4104): /system/app/LiveWallpapers changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/LiveWallpapers/arm/LiveWallpapers.odex needs to be relocated for /system/app/LiveWallpapers/LiveWallpapers.apk
I/PackageManager( 4104): /system/app/LiveWallpapersPicker changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
W/PackageManager( 4104): System package com.android.wallpaper.livepicker signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.wallpaper.livepicker issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/LiveWallpapersPicker/arm/LiveWallpapersPicker.odex needs to be relocated for /system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk
W/PackageManager( 4104): Code path for pkg : com.android.wallpaper.livepicker changing from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
W/PackageManager( 4104): Resource path for pkg : com.android.wallpaper.livepicker changing from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
I/PackageManager( 4104): /system/app/LockClock changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/LockClock/arm/LockClock.odex needs to be relocated for /system/app/LockClock/LockClock.apk
I/PackageManager( 4104): /system/app/NoiseField changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/NoiseField to /system/app/NoiseField
W/PackageManager( 4104): System package com.android.noisefield signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.noisefield issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/NoiseField/arm/NoiseField.odex needs to be relocated for /system/app/NoiseField/NoiseField.apk
W/PackageManager( 4104): Code path for pkg : com.android.noisefield changing from /system/priv-app/NoiseField to /system/app/NoiseField
W/PackageManager( 4104): Resource path for pkg : com.android.noisefield changing from /system/priv-app/NoiseField to /system/app/NoiseField
I/PackageManager( 4104): /system/app/PacProcessor changed; collecting certs
W/PackageManager( 4104): System package com.android.pacprocessor signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.pacprocessor issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/PacProcessor/arm/PacProcessor.odex needs to be relocated for /system/app/PacProcessor/PacProcessor.apk
I/PackageManager( 4104): /system/app/PackageInstaller changed; collecting certs
W/PackageManager( 4104): System package com.android.packageinstaller signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.packageinstaller issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/PackageInstaller/arm/PackageInstaller.odex needs to be relocated for /system/app/PackageInstaller/PackageInstaller.apk
I/PackageManager( 4104): /system/app/PhaseBeam changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
W/PackageManager( 4104): System package com.android.phasebeam signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.phasebeam issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/PhaseBeam/arm/PhaseBeam.odex needs to be relocated for /system/app/PhaseBeam/PhaseBeam.apk
W/PackageManager( 4104): Code path for pkg : com.android.phasebeam changing from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
W/PackageManager( 4104): Resource path for pkg : com.android.phasebeam changing from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
I/PackageManager( 4104): /system/app/PhotoPhase changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/PhotoPhase/arm/PhotoPhase.odex needs to be relocated for /system/app/PhotoPhase/PhotoPhase.apk
I/PackageManager( 4104): /system/app/PhotoTable changed; collecting certs
W/PackageManager( 4104): System package com.android.dreams.phototable signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.dreams.phototable issued.
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/PhotoTable/arm/PhotoTable.odex needs to be relocated for /system/app/PhotoTable/PhotoTable.apk
I/PackageManager( 4104): /system/app/PicoTts changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/PicoTts/arm/PicoTts.odex needs to be relocated for /system/app/PicoTts/PicoTts.apk
I/PackageManager( 4104): /system/app/PrintSpooler changed; collecting certs
W/PackageManager( 4104): Trying to update system app code path from /system/app/SPrintSpooler to /system/app/PrintSpooler
W/PackageManager( 4104): System package com.android.printspooler signature changed; retaining data.
I/PackageManager( 4104): SELinux relabeling of com.android.printspooler issued.
I/art ( 4104): 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
D/wrapperGPS( 3690): wrapperConnect_RILD
I/art ( 4104): DexFile_isDexOptNeeded file /system/app/PrintSpooler/arm/PrintSpooler.odex needs to be relocated for /system/app/PrintSpooler/PrintSpooler.apk
W/PackageManager( 4104): Code path for pkg : com.android.printspooler changing from /system/app/SPrintSpooler to /system/app/PrintSpooler
W/PackageManager( 4104): Resource path for pkg : com.android.printspooler changing from /system/app/SPrintSpooler to /system/app/PrintSpooler
I/PackageManager( 4104): /system/app/Provision changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Provision/arm/Provision.odex needs to be relocated for /system/app/Provision/Provision.apk
I/PackageManager( 4104): /system/app/SoundRecorder changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/SoundRecorder/arm/SoundRecorder.odex needs to be relocated for /system/app/SoundRecorder/SoundRecorder.apk
I/PackageManager( 4104): /system/app/Stk changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/app/Stk: Signature mismatch for shared user : SharedUserSetting{19e29667 android.uid.phone/1001}
I/PackageManager( 4104): /system/app/Terminal changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/Terminal/arm/Terminal.odex needs to be relocated for /system/app/Terminal/Terminal.apk
I/PackageManager( 4104): /system/app/UserDictionaryProvider changed; collecting certs
W/PackageManager( 4104): Failed to parse /system/app/UserDictionaryProvider: Signature mismatch for shared user : SharedUserSetting{3842b2f5 android.uid.shared/10020}
I/PackageManager( 4104): /system/app/VisualizationWallpapers changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/VisualizationWallpapers/arm/VisualizationWallpapers.odex needs to be relocated for /system/app/VisualizationWallpapers/VisualizationWallpapers.apk
I/PackageManager( 4104): /system/app/WAPPushManager changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/WAPPushManager/arm/WAPPushManager.odex needs to be relocated for /system/app/WAPPushManager/WAPPushManager.apk
I/PackageManager( 4104): /system/app/WhisperPush changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/WhisperPush/arm/WhisperPush.odex needs to be relocated for /system/app/WhisperPush/WhisperPush.apk
W/PackageManager( 4104): Failed to parse /system/app/mcRegistry: Missing base APK in /system/app/mcRegistry
I/PackageManager( 4104): /system/app/webview changed; collecting certs
I/art ( 4104): 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 ( 4104): DexFile_isDexOptNeeded file /system/app/webview/arm/webview.odex needs to be relocated for /system/app/webview/webview.apk
D/PackageManager( 4104): No files in app dir /system/vendor/app
D/PackageManager( 4104): No files in app dir /oem/app
D/PackageManager( 4104): No files in app dir /vendor/bundled-app
W/PackageManager( 4104): System package com.sec.esdk.elm no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.taskmanager no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.sbrowsertry no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.mmapp no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.service.health no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.soundalive no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.chromecustomizations no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.providers.userdictionary no longer exists; wiping its data
W/PackageManager( 4104): System package com.dsi.ant.server no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.FileShareClient no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.apps.tag no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.apps.docs.editors.docs no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.GeoLookout no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.enterprise.knox.cloudmdm.smdms no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.chaton no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.googlequicksearchbox no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.securitylogagent no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.filtermanager no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.easylauncher no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.providers.partnerbookmarks no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.sbrowser no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.RilServiceModeApp no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.app.video no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.FlashBarService no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.scloud.quota no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.play.games no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.nearby.mediaserver no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.emergencylauncher no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.feedback no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.assistantmenu no longer exists; wiping its data
W/PackageManager( 4104): System package flipboard.app no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.sounddetector no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.service.sm no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.dsm.system no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.snsimagecache no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.onetimeinitializer no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.storycam no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.inputdevices no longer exists; wiping its data
W/PackageManager( 4104): System package com.blurb.checkout no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.knox.switcher no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.beaconmanager no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.bluetooth no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.allsharecastplayer no longer exists; wiping its data
W/PackageManager( 4104): System package com.fmm.dm no longer exists; wiping its data
W/PackageManager( 4104): System package com.dsi.ant.service.socket no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.gestureservice no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.enterprise.mdm.services.simpin no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.servicemodeapp no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.easyonehand no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.mt no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.apps.maps no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.MtpApplication no longer exists; wiping its data
W/PackageManager( 4104): System package com.lifevibes.trimapp no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.contacts no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.providers.context no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.phone no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.hearingadjust no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.server.telecom no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.bcservice no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.stub.paywithpaypal no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.sdk.spenv10 no longer exists; wiping its data
W/PackageManager( 4104): System package com.monotype.android.font.rosemary no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.provider.emergencymode no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.videoplayer no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.Kies no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.gm no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.systemui no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.nfc no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.knox.shortcutsms no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.safetyassurance no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.providers.calendar no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.providers.downloads no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.gsf no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.factorykeystring no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.colorblind no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.app.RilErrorNotifier no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.scloud.backup no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.youtube no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.sdk.samsunglink no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.location.fused no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.automotive.drivelink no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.airwakeupview no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.scloud.proxy.memo no longer exists; wiping its data
W/PackageManager( 4104): System package com.dropbox.android no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.providers.contacts no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.automation no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.mimage.photoretouching no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.widgetapp.activeapplicationwidget no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.FileShareServer no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.scloud.proxy.calendar no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.apps.magazines no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.setupwizard no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.bluetoothtest no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.pcw.device no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.usbsettings no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.providers.settingsearch no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.provider.shootingmodeprovider no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.mirrorlink no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.shareaccessibilitysettings no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.mimage.sstudio no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.knox.containeragent2 no longer exists; wiping its data
W/PackageManager( 4104): System package com.monotype.android.font.cooljazz no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.wlantest no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.scloud.proxy.contacts no longer exists; wiping its data
W/PackageManager( 4104): System package com.gd.mobicore.pa no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.configupdater no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.knox.bridge no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.magnifier no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.personalpage.service no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.emergencymode.service no longer exists; wiping its data
W/PackageManager( 4104): System package com.dsi.ant.plugins.antplus no longer exists; wiping its data
W/PackageManager( 4104): System package com.wsomacp no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.headlines no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.scloud.proxy.snote3 no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.bcocr no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.tourviewer no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.app.samsungprintservice no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.preloadinstaller no longer exists; wiping its data
W/PackageManager( 4104): System package com.infraware.polarisviewer5 no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.billing no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.launcher no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.apps.books no longer exists; wiping its data
W/PackageManager( 4104): System package com.arcsoft.magicshotstudio no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.providers.security no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.clockpackage no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.hwmoduletest no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.service.travel no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.Preconfig no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.stk no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.gsf.login no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.voicenote no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.diagmonagent no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.provider.badge no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.sconnect no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.ofviewer no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.mdm no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.gallery3d no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.smartcard.manager no longer exists; wiping its data
W/PackageManager( 4104): System package com.wssyncmldm no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.sdk.professionalaudio.app.audioconnectionservice no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.provider.filterprovider no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.widgetapp.easymodecontactswidget no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.factory.camera no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.directconnect no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.knox.packageverifier no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.providers.tasks no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.samsungapps no longer exists; wiping its data
W/PackageManager( 4104): System package com.monotype.android.font.samsungsans no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.DataCreate no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.shell no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.cloudagent no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.chrome no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.klmsagent no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.dictionary no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.marvin.talkback no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.ringtoneBR no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.wfdbroker no longer exists; wiping its data
W/PackageManager( 4104): System package com.osp.app.signin no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.sysscope no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.SMT no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.keychain no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.directshare no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.personalization no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.parser no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.tcpdumpservice no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.galaxyfinder no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.browser.provider no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.factory no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.minimode.res no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.filter no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.gallery3d.panorama360view no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.street no longer exists; wiping its data
W/PackageManager( 4104): System package com.dsi.ant.sample.acquirechannels no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.enterprise.knox.attestation no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.everglades.video no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.easysettings no longer exists; wiping its data
W/PackageManager( 4104): System package com.fixmo.isa no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.myfiles no longer exists; wiping its data
W/PackageManager( 4104): System package com.policydm no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.allshare.service.mediashare no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.widgetapp.digitalclock no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.fotaclient no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.scloud.auth no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.phone no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.provider.logsprovider no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.apps.plus no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.widgetapp.digitalclockeasy no longer exists; wiping its data
W/PackageManager( 4104): System package android no longer exists; wiping its data
E/installd( 3686): Couldn't opendir /data/data/android: No such file or directory
W/PackageManager( 4104): System package com.sec.android.widget.samsungapps no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.providers.telephony no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.scloud.sync no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.webview no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.mediasync no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.pagebuddynotisvc no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.wallpaperchooser no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.knox.knoxsetupwizardclient no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.groupcast no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.location no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.clipboardsaveservice no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.clipboarduiservice no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.fingerprint.service no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.kidsplat.installer no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.knox.rcp.components no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.filterinstaller no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.scloud.proxy.sbrowser no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.visualeffect.res no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.widgetapp.dualclockdigital no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.music no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.safetyinformation no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.setdefaultlauncher no longer exists; wiping its data
W/PackageManager( 4104): System package eu.chainfire.supersu no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.popupcalculator no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.widgetapp.webmanual no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.soagent no longer exists; wiping its data
W/PackageManager( 4104): System package com.vlingo.midas no longer exists; wiping its data
D/wrapperGPS( 3690): wrapperConnect_RILD
W/PackageManager( 4104): System package com.google.android.talk no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.popupuireceiver no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.camera no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.settings no longer exists; wiping its data
W/PackageManager( 4104): System package org.simalliance.openmobileapi.service no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.app.watchmanagerstub no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.android.allshare.service.fileshare no longer exists; wiping its data
W/PackageManager( 4104): System package com.samsung.sec.android.application.csc no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.msc.nts.android.proxy no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.daemonapp no longer exists; wiping its data
W/PackageManager( 4104): System package com.LocalFota no longer exists; wiping its data
W/PackageManager( 4104): System package com.sec.android.app.SamsungContentsAgent no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.videos no longer exists; wiping its data
W/PackageManager( 4104): System package com.google.android.syncadapters.contacts no longer exists; wiping its data
W/PackageManager( 4104): System package com.android.providers.settings no longer exists; wiping its data