-
Notifications
You must be signed in to change notification settings - Fork 1
/
test104.txt
4281 lines (4281 loc) · 545 KB
/
test104.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 ( 3693): type=1325 audit(0.0:2): table=filter family=2 entries=0
W/auditd ( 3693): type=1325 audit(0.0:3): table=mangle family=2 entries=0
W/auditd ( 3693): type=1325 audit(0.0:4): table=nat family=2 entries=0
W/auditd ( 3693): type=1325 audit(0.0:5): table=raw family=2 entries=0
W/auditd ( 3693): type=1325 audit(0.0:6): table=security family=2 entries=0
W/auditd ( 3693): type=1325 audit(0.0:7): table=filter family=3 entries=0
W/auditd ( 3693): type=1325 audit(0.0:8): table=filter family=10 entries=0
W/auditd ( 3693): type=1325 audit(0.0:9): table=mangle family=10 entries=0
W/auditd ( 3693): 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 ( 3693): type=1305 audit(0.0:11): audit_pid=3660 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3693): res=1
W/auditd ( 3693): type=1305 audit(0.0:12): audit_rate_limit=20 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3693): res=1
--------- beginning of system
I/auditd ( 3672): Starting up
I/cm ( 3681): | \_/ |__| |\ | | | | __ |___ |\ | |\/| | | | \
I/audit_log( 3672): Previous audit logfile detected, rotating
W/libaudit( 3672): Expected sequence number between user space and kernel space is out of skew, expected 2 got 0
E/audit_rules( 3672): Could not read audit rules /data/misc/audit/audit.rules: No such file or directory
I/installd( 3678): installd firing up
I/macloader( 3686): Settting wifi type to wisol in /data/.cid.info
D/macloader( 3686): Change permissions of /data/.cid.info
I/DEBUG ( 3674): debuggerd: Jul 3 2015 03:58:19
I/cm ( 3694): |___ | | | | \| |__| |__] |___ | \| | | |__| |__/
I/PrProvisioning( 3702): successfully - provisioning start !
I/cm ( 3703): Welcome to Android 5.0.2 / CyanogenMod-12-20150707-UNOFFICIAL-k3gxx
I/Vold ( 3664): Vold 2.1 (the revenge) firing up
D/Vold ( 3664): Volume sdcard1 state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3664): Volume usbdisk state changing -1 (Initializing) -> 0 (No-Media)
I/Cryptfs ( 3664): Check if PFE is activated on Boot
I/PrProvisioning( 3702): provisioning already done
E/Cryptfs ( 3664): Bad magic for real block device /dev/block/platform/12200000.dwmmc0/by-name/USERDATA
E/Cryptfs ( 3664): Error getting crypt footer and key
I/keystore( 3683): SELinux: Keystore SELinux is disabled.
I/Netd ( 3673): Netd 1.0 starting
E/Netd ( 3673): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 3673): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 3673): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 3673): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 3673): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 3673): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 3673): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 3673): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
I/SurfaceFlinger( 3665): SurfaceFlinger is starting
I/SurfaceFlinger( 3665): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
D/gpsd ( 3685): WakeLock(Release,GPSD)
D/gpsd ( 3685): WakeLock(Release,SUPL)
I/gpsd_d ( 3685): GNSS: 219420
D/wrapperGPS( 3685): wrapperOpenClient_RILD
E/wrapperGPS( 3685): wrapperOpenClient_RILD: RegisterUnsolicitedHandler() UNSOL_GPS_NOTI (20009)
D/wrapperGPS( 3685): wrapperRegisterRequestCompleteHandler
D/wrapperGPS( 3685): wrapperRegisterUnsolicitedHandler id(12009), handler(0xb6bc26e9)
D/wrapperGPS( 3685): wrapperRegisterErrorCallback
D/wrapperGPS( 3685): wrapperConnect_RILD
D/libEGL ( 3665): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3665): PLATFORM VERSION : JB-MR-2
I/gralloc ( 3665): using (id=)
I/gralloc ( 3665): xres = 1080 px
I/gralloc ( 3665): yres = 1920 px
I/gralloc ( 3665): width = 65 mm (422.030762 dpi)
I/gralloc ( 3665): height = 115 mm (424.069580 dpi)
I/gralloc ( 3665): refresh rate = 60.00 Hz
D/WVMDrmPlugIn( 3676): WVMDrmPlugin::onGetSupportInfo : 0
D/hwcomposer( 3665): using
D/hwcomposer( 3665): xres = 1080 px
D/hwcomposer( 3665): yres = 1920 px
D/hwcomposer( 3665): width = 65 mm (422.030000 dpi)
D/hwcomposer( 3665): height = 115 mm (424.069000 dpi)
D/hwcomposer( 3665): refresh rate = 60 Hz
D/AndroidRuntime( 3687):
D/AndroidRuntime( 3687): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/libexynosv4l2-subdev( 3665): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 3665): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 3665): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3665): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3665): open subdev device /dev/v4l-subdev2
I/hwcomposer( 3665): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 3665): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 3665): Using composer version 1.3
I/SurfaceFlinger( 3665): EGL information:
I/SurfaceFlinger( 3665): vendor : Android
I/SurfaceFlinger( 3665): version : 1.4 Android META-EGL
I/SurfaceFlinger( 3665): 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( 3665): Client API: OpenGL_ES
I/SurfaceFlinger( 3665): EGLSurface: 8-8-8-8, config=0xb69cf2ac
I/SurfaceFlinger( 3665): OpenGL ES informations:
I/SurfaceFlinger( 3665): vendor : ARM
I/SurfaceFlinger( 3665): renderer : Mali-T628
I/SurfaceFlinger( 3665): version : OpenGL ES 3.0
I/SurfaceFlinger( 3665): 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( 3665): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 3665): GL_MAX_VIEWPORT_DIMS = 8192
D/AndroidRuntime( 3687): CheckJNI is OFF
D/SurfaceFlinger( 3665): Set power mode=2, type=0 flinger=0xb6962000
I/hwcomposer( 3665): unblank ioctl failed (display already unblanked)
I/art ( 3687): option[0]=-Xzygote
I/art ( 3687): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 3687): option[2]=exit
I/art ( 3687): option[3]=vfprintf
I/art ( 3687): option[4]=sensitiveThread
I/art ( 3687): option[5]=-verbose:gc
I/art ( 3687): option[6]=-Xms16m
I/art ( 3687): option[7]=-Xmx512m
I/art ( 3687): option[8]=-XX:mainThreadStackSize=24K
I/art ( 3687): option[9]=-XX:HeapGrowthLimit=192m
I/art ( 3687): option[10]=-XX:HeapMinFree=2m
I/art ( 3687): option[11]=-XX:HeapMaxFree=8m
I/art ( 3687): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 3687): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 3687): option[14]=-Xlockprofthreshold:500
I/art ( 3687): option[15]=-Ximage-compiler-option
I/art ( 3687): option[16]=--runtime-arg
I/art ( 3687): option[17]=-Ximage-compiler-option
I/art ( 3687): option[18]=-Xms64m
I/art ( 3687): option[19]=-Ximage-compiler-option
I/art ( 3687): option[20]=--runtime-arg
I/art ( 3687): option[21]=-Ximage-compiler-option
I/art ( 3687): option[22]=-Xmx64m
I/art ( 3687): option[23]=-Ximage-compiler-option
I/art ( 3687): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 3687): option[25]=-Ximage-compiler-option
I/art ( 3687): option[26]=--image-classes=preloaded-classes
I/art ( 3687): option[27]=-Xcompiler-option
I/art ( 3687): option[28]=--runtime-arg
I/art ( 3687): option[29]=-Xcompiler-option
I/art ( 3687): option[30]=-Xms64m
I/art ( 3687): option[31]=-Xcompiler-option
I/art ( 3687): option[32]=--runtime-arg
I/art ( 3687): option[33]=-Xcompiler-option
I/art ( 3687): option[34]=-Xmx512m
I/art ( 3687): option[35]=-Duser.language=es
I/art ( 3687): option[36]=-Duser.region=US
I/art ( 3687): Pruning dalvik-cache since we are generating an image and will need to recompile
I/art ( 3687): Using an offset of 0x3a2000 from default art base address of 0x70000000
I/art ( 3687): GenerateImage: /system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x703a2000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
I/dex2oat ( 3839): /system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x703a2000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
D/SurfaceFlinger( 3665): SF. shader cache generated - 26 shaders in 76.232124 ms
D/libEGL ( 3837): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3837): PLATFORM VERSION : JB-MR-2
E/BootAnimation( 3837): couldn't find audio_conf.txt
D/BootAnimation( 3837): Use save memory method, maybe small fps in actual.
D/wrapperGPS( 3685): wrapperConnect_RILD
V/NatController( 3673): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 3673): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 3673): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 3673): runCmd(/system/bin/iptables -t nat -F natctrl_nat_PREROUTING) res=0
V/NatController( 3673): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=1
V/NatController( 3673): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=1
V/NatController( 3673): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 3673): runCmd(/system/bin/iptables -t mangle -A natctrl_mangle_FORWARD -p tcp --tcp-flags SYN SYN -j TCPMSS --clamp-mss-to-pmtu) res=0
D/wrapperGPS( 3685): wrapperConnect_RILD
W/SurfaceFlinger( 3665): Ignoring duplicate VSYNC event from HWC (t=8725085583)
D/MDnsDS ( 3673): MDnsSdListener::Hander starting up
D/MDnsDS ( 3673): MDnsSdListener starting to monitor
D/MDnsDS ( 3673): Going to poll with pollCount 1
D/wrapperGPS( 3685): wrapperConnect_RILD
D/BootAnimation( 3837): Use save memory method, maybe small fps in actual.
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
W/SurfaceFlinger( 3665): Ignoring duplicate VSYNC event from HWC (t=14125161792)
D/wrapperGPS( 3685): wrapperConnect_RILD
I/dex2oat ( 3839): Explicit concurrent mark sweep GC freed 50264(7MB) AllocSpace objects, 0(0B) LOS objects, 14% free, 24MB/28MB, paused 178us total 95.515ms
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
I/dex2oat ( 3839): Method exceeds compiler instruction limit: 21296 in void org.ccil.cowan.tagsoup.HTMLSchema.<init>()
D/wrapperGPS( 3685): wrapperConnect_RILD
W/dex2oat ( 3839): Compilation of boolean android.app.ActivityManagerNative.onTransact(int, android.os.Parcel, android.os.Parcel, int) took 106.206ms
W/SurfaceFlinger( 3665): Ignoring duplicate VSYNC event from HWC (t=18025095793)
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
W/dex2oat ( 3839): Compilation of void android.os.BatteryStats.dumpLocked(android.content.Context, java.io.PrintWriter, java.lang.String, int, int, boolean) took 140.323ms
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
W/SurfaceFlinger( 3665): Ignoring duplicate VSYNC event from HWC (t=24040092127)
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
D/wrapperGPS( 3685): wrapperConnect_RILD
W/SurfaceFlinger( 3665): Ignoring duplicate VSYNC event from HWC (t=26770073294)
I/dex2oat ( 3839): Explicit concurrent mark sweep GC freed 193242(15MB) AllocSpace objects, 0(0B) LOS objects, 23% free, 12MB/16MB, paused 276us total 61.087ms
D/wrapperGPS( 3685): wrapperConnect_RILD
I/dex2oat ( 3839): dex2oat took 20.166s (threads: 8)
D/wrapperGPS( 3685): wrapperConnect_RILD
E/memtrack( 3687): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug( 3687): failed to load memtrack module: -2
I/SamplingProfilerIntegration( 3687): Profiling disabled.
D/Zygote ( 3687): begin preload
I/Zygote ( 3687): Preloading classes...
I/art ( 3687): Explicit concurrent mark sweep GC freed 1001(56KB) AllocSpace objects, 0(0B) LOS objects, 98% free, 71KB/4MB, paused 147us total 4.153ms
I/art ( 3687): Counter: 1
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansGujarati-Regular.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansGujarati-Bold.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Regular.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Bold.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansGurmukhi-Regular.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansGurmukhi-Bold.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Regular.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Bold.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansSinhala-Regular.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansSinhala-Bold.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansCherokee-Regular.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansCanadianAboriginal-Regular.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansYi-Regular.ttf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansHans-Regular.otf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansHant-Regular.otf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansJP-Regular.otf
E/Minikin ( 3687): addFont failed to create font /system/fonts/NotoSansKR-Regular.otf
I/art ( 3687): Thread[1,tid=3687,WaitingForJniOnLoad,Thread*=0xb5007800,peer=0x12c33140,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
D/MtpDeviceJNI( 3687): register_android_mtp_MtpDevice
I/art ( 3687): Thread[1,tid=3687,WaitingForJniOnLoad,Thread*=0xb5007800,peer=0x12c33140,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
I/art ( 3687): Thread[1,tid=3687,WaitingForJniOnLoad,Thread*=0xb5007800,peer=0x12c33140,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
D/wrapperGPS( 3685): wrapperConnect_RILD
I/System ( 3687): Loaded time zone names for "" in 49ms (45ms in ICU)
I/System ( 3687): Loaded time zone names for "en_US" in 31ms (26ms in ICU)
I/System ( 3687): Loaded time zone names for "es_US" in 35ms (30ms in ICU)
I/art ( 3687): Explicit concurrent mark sweep GC freed 32378(1963KB) AllocSpace objects, 0(0B) LOS objects, 71% free, 1613KB/5MB, paused 134us total 13.741ms
I/Zygote ( 3687): ...preloaded 3005 classes in 812ms.
I/art ( 3687): VMRuntime.preloadDexCaches starting
I/art ( 3687): VMRuntime.preloadDexCaches strings total=217316 before=40338 after=40338
I/art ( 3687): VMRuntime.preloadDexCaches types total=18704 before=6337 after=6380
I/art ( 3687): VMRuntime.preloadDexCaches fields total=87408 before=32543 after=32871
I/art ( 3687): VMRuntime.preloadDexCaches methods total=154031 before=66779 after=67657
I/art ( 3687): VMRuntime.preloadDexCaches finished
I/art ( 3687): Counter: 0
I/art ( 3687): Counter: 1
I/art ( 3687): Explicit concurrent mark sweep GC freed 175(20KB) AllocSpace objects, 0(0B) LOS objects, 71% free, 1594KB/5MB, paused 158us total 8.948ms
D/idmap ( 4122): error: no read access to /vendor/overlay: No such file or directory
I/Zygote ( 3687): Preloading resources...
I/art ( 3687): Explicit concurrent mark sweep GC freed 4457(156KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 207us total 9.317ms
I/Zygote ( 3687): ...preloaded 430 resources in 401ms.
I/art ( 3687): Explicit concurrent mark sweep GC freed 539(31KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 209us total 8.879ms
I/Zygote ( 3687): ...preloaded 41 resources in 19ms.
I/art ( 3687): Counter: 0
D/libEGL ( 3687): loaded /vendor/lib/egl/libGLES_mali.so
I/Zygote ( 3687): Preloading shared libraries...
D/Zygote ( 3687): end preload
I/art ( 3687): Explicit concurrent mark sweep GC freed 461(21KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 200us total 8.561ms
I/art ( 3687): Explicit concurrent mark sweep GC freed 41(1568B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 263us total 9.170ms
I/art ( 3687): Explicit concurrent mark sweep GC freed 5(160B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 207us total 8.753ms
I/Zygote ( 3687): System server process 4123 has been created
I/Zygote ( 3687): Accepting command socket connections
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/org.cyanogenmod.hardware.odex' for file location '/system/framework/org.cyanogenmod.hardware.jar': Failed to open oat filename for reading: No such file or directory
I/InstallerConnection( 4123): connecting...
I/installd( 3678): new connection
I/dex2oat ( 4143): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/org.cyanogenmod.hardware.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
D/wrapperGPS( 3685): wrapperConnect_RILD
I/dex2oat ( 4143): dex2oat took 42.546ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/services.odex' for file location '/system/framework/services.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4152): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/services.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
D/wrapperGPS( 3685): wrapperCloseClient_RILD
W/dex2oat ( 4152): Compilation of android.content.pm.PackageParser$Package com.android.server.pm.PackageManagerService.scanPackageDirtyLI(android.content.pm.PackageParser$Package, int, int, long, android.os.UserHandle) took 122.829ms
I/dex2oat ( 4152): dex2oat took 3.523s (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/ethernet-service.odex' for file location '/system/framework/ethernet-service.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4162): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/ethernet-service.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4162): dex2oat took 59.919ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/wifi-service.odex' for file location '/system/framework/wifi-service.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4171): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/wifi-service.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4171): dex2oat took 603.722ms (threads: 8)
I/InstallerConnection( 4123): disconnecting...
E/installd( 3678): eof
E/installd( 3678): failed to read size
I/installd( 3678): closing connection
I/SystemServer( 4123): Entered the Android system server!
V/Fingerprint-JNI( 4123): FingerprintManager JNI ready.
I/ ( 4123): System server: starting sensor init.
D/SensorService( 4123): nuSensorService starting...
I/SystemServiceManager( 4123): Starting com.android.server.pm.Installer
E/Sensors ( 4123): GeoMagneticSensor, ERROR dev_num = -19
I/Installer( 4123): Waiting for installd to be ready.
I/InstallerConnection( 4123): connecting...
I/installd( 3678): new connection
I/SystemServiceManager( 4123): Starting com.android.server.am.ActivityManagerService$Lifecycle
E/Sensors ( 4123): UncalMagneticSensor, ERROR dev_num = -19
E/Sensors ( 4123): UncalGyroSensor, ERROR dev_num = -19
E/Sensors ( 4123): GameRotationVector, ERROR dev_num = -19
D/Sensors ( 4123): HrmSpO2Sensor::HrmSpO2Sensor: Shared version Registered
E/SensorService( 4123): >>>> WARNING <<< Upgrade sensor HAL to version 1_3
I/Sensors ( 4123): HrmSpO2Sensor::enable, handle(16), en(0), what(1/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4123): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4123): HrmSpO2Sensor::enable, handle(17), en(0), what(0/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4123): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4123): HrmSpO2Sensor::enable, handle(18), en(0), what(2/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4123): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/ ( 4123): System server: sensor init done.
D/SensorService( 4123): nuSensorService thread starting...
D/SensorService( 4123): new thread SensorEventAckReceiver
I/ActivityManager( 4123): Memory class: 192
I/ServiceThread( 4123): Enabled StrictMode logging for ActivityManager looper.
I/IntentFirewall( 4123): Read new rules (A:0 B:0 S:0)
I/ServiceThread( 4123): Enabled StrictMode logging for android.ui looper.
I/ServiceThread( 4123): Enabled StrictMode logging for android.display looper.
D/AppOps ( 4123): AppOpsService published
I/SystemServiceManager( 4123): Starting com.android.server.power.PowerManagerService
I/ServiceThread( 4123): Enabled StrictMode logging for PowerManagerService looper.
E/Universal5422 PowerHAL( 4123): Error opening /sys/devices/system/cpu/cpufreq/interactive/timer_rate: No such file or directory
E/Universal5422 PowerHAL( 4123): Error opening /sys/devices/system/cpu/cpufreq/interactive/timer_slack: No such file or directory
E/Universal5422 PowerHAL( 4123): Error opening /sys/devices/system/cpu/cpufreq/interactive/min_sample_time: No such file or directory
E/Universal5422 PowerHAL( 4123): Error opening /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq: No such file or directory
E/Universal5422 PowerHAL( 4123): Error opening /sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load: No such file or directory
E/Universal5422 PowerHAL( 4123): Error opening /sys/devices/system/cpu/cpufreq/interactive/target_loads: No such file or directory
E/Universal5422 PowerHAL( 4123): Error opening /sys/devices/system/cpu/cpufreq/interactive/above_hispeed_delay: No such file or directory
E/Universal5422 PowerHAL( 4123): Error opening /sys/devices/system/cpu/cpufreq/interactive/boostpulse_duration: No such file or directory
E/Universal5422 PowerHAL( 4123): Error opening /sys/devices/system/cpu/cpufreq/interactive/io_is_busy: No such file or directory
W/libsuspend( 4123): Error writing 'on' to /sys/power/state: Invalid argument
I/libsuspend( 4123): Selected wakeup count
E/Universal5422 PowerHAL( 4123): Error opening /sys/class/input/input1/enabled: Permission denied
E/Universal5422 PowerHAL( 4123): Error opening /sys/class/input/input19/enabled: Permission denied
E/Universal5422 PowerHAL( 4123): Error opening /sys/class/input/input17/enabled: Permission denied
E/Universal5422 PowerHAL( 4123): Error opening /sys/class/input/input18/enabled: Permission denied
I/SystemServiceManager( 4123): Starting com.android.server.display.DisplayManagerService
I/SystemServiceManager( 4123): Starting phase 100
I/DisplayManagerService( 4123): 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( 4123): Package Manager
W/SELinuxMMAC( 4123): Error opening /data/system/seapp_hash. Assuming first boot.
W/PackageManager( 4123): No security bridge jar found, using default
W/SystemConfig( 4123): No directory /system/etc/sysconfig, skipping
D/SELinuxMMAC( 4123): Using policy file /system/etc/security/mac_permissions.xml
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/android.test.runner.odex' for file location '/system/framework/android.test.runner.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4198): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/android.test.runner.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4198): dex2oat took 163.051ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/com.android.future.usb.accessory.odex' for file location '/system/framework/com.android.future.usb.accessory.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4207): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/com.android.future.usb.accessory.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4207): dex2oat took 38.059ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/com.android.media.remotedisplay.odex' for file location '/system/framework/com.android.media.remotedisplay.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4216): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/com.android.media.remotedisplay.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4216): dex2oat took 46.054ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/com.android.location.provider.odex' for file location '/system/framework/com.android.location.provider.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4225): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/com.android.location.provider.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4225): dex2oat took 53.724ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/javax.obex.odex' for file location '/system/framework/javax.obex.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4234): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/javax.obex.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4234): dex2oat took 104.235ms (threads: 8)
E/art ( 4123): DexFile_isDexOptNeeded file '/system/framework/com.android.nfc_extras.jar' does not exist
W/PackageManager( 4123): Library not found: /system/framework/com.android.nfc_extras.jar
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/com.android.mediadrm.signer.odex' for file location '/system/framework/com.android.mediadrm.signer.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4243): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/com.android.mediadrm.signer.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4243): dex2oat took 44.090ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/javax.btobex.odex' for file location '/system/framework/javax.btobex.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4252): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/javax.btobex.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4252): dex2oat took 97.881ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/am.odex' for file location '/system/framework/am.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4261): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/am.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4261): dex2oat took 95.395ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/appops.odex' for file location '/system/framework/appops.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4270): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/appops.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4270): dex2oat took 43.200ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/appwidget.odex' for file location '/system/framework/appwidget.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4279): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/appwidget.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4279): dex2oat took 40.274ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/bmgr.odex' for file location '/system/framework/bmgr.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4288): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/bmgr.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4288): dex2oat took 58.713ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/bu.odex' for file location '/system/framework/bu.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4297): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/bu.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4297): dex2oat took 46.190ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/content.odex' for file location '/system/framework/content.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4306): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/content.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4306): dex2oat took 48.443ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/dpm.odex' for file location '/system/framework/dpm.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4315): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/dpm.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4315): dex2oat took 42.264ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/ime.odex' for file location '/system/framework/ime.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4324): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/ime.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4324): dex2oat took 45.200ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/input.odex' for file location '/system/framework/input.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4333): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/input.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4333): dex2oat took 49.727ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/media_cmd.odex' for file location '/system/framework/media_cmd.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4342): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/media_cmd.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@framework@[email protected] --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4342): dex2oat took 51.672ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/monkey.odex' for file location '/system/framework/monkey.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4352): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/monkey.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4352): dex2oat took 144.736ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/pm.odex' for file location '/system/framework/pm.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4361): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/pm.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4361): dex2oat took 113.563ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/requestsync.odex' for file location '/system/framework/requestsync.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4370): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/requestsync.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4370): dex2oat took 45.790ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/settings.odex' for file location '/system/framework/settings.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4379): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/settings.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4379): dex2oat took 45.890ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/svc.odex' for file location '/system/framework/svc.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4388): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/svc.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4388): dex2oat took 43.543ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/tm.odex' for file location '/system/framework/tm.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4397): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/tm.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4397): dex2oat took 47.287ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/uiautomator.odex' for file location '/system/framework/uiautomator.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4406): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/uiautomator.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4406): dex2oat took 104.382ms (threads: 8)
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/framework/arm/wm.odex' for file location '/system/framework/wm.jar': Failed to open oat filename for reading: No such file or directory
I/dex2oat ( 4415): /system/bin/dex2oat --zip-fd=5 --zip-location=/system/framework/wm.jar --oat-fd=6 --oat-location=/data/dalvik-cache/arm/system@[email protected]@classes.dex --instruction-set=arm --instruction-set-features=div --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat ( 4415): dex2oat took 48.177ms (threads: 8)
E/SQLiteLog( 4123): (283) recovered 533 frames from WAL file /data/data/com.android.providers.settings/databases/settings.db-wal
D/PackageManager( 4123): No files in app dir /vendor/overlay
I/PackageManager( 4123): /system/framework/framework-res.apk changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/framework/framework-res.apk: Signature mismatch for shared user : SharedUserSetting{3a86f748 android.uid.system/1000}
I/PackageManager( 4123): /system/priv-app/AudioFX changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/AudioFX/arm/AudioFX.odex' for file location '/system/priv-app/AudioFX/AudioFX.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/BackupRestoreConfirmation changed; collecting certs
W/PackageManager( 4123): System package com.android.backupconfirm signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.backupconfirm issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/BackupRestoreConfirmation/arm/BackupRestoreConfirmation.odex' for file location '/system/priv-app/BackupRestoreConfirmation/BackupRestoreConfirmation.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/CMAccount changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/CMAccount/arm/CMAccount.odex' for file location '/system/priv-app/CMAccount/CMAccount.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/CMUpdater changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/CMUpdater/arm/CMUpdater.odex' for file location '/system/priv-app/CMUpdater/CMUpdater.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/CalendarProvider changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecCalendarProvider to /system/priv-app/CalendarProvider
W/PackageManager( 4123): Failed to parse /system/priv-app/CalendarProvider: Signature mismatch for shared user : SharedUserSetting{4615c0 android.uid.calendar/10046}
I/PackageManager( 4123): /system/priv-app/CellBroadcastReceiver changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/CellBroadcastReceiver/arm/CellBroadcastReceiver.odex' for file location '/system/priv-app/CellBroadcastReceiver/CellBroadcastReceiver.apk': Failed to open oat filename for reading: No such file or directory
W/ResourceType( 4123): Failure getting entry for 0x7f0b023e (t=10 e=574) (error -75)
W/PackageParser( 4123): No actions in intent filter at /system/priv-app/Contacts/Contacts.apk Binary XML file line #362
I/PackageManager( 4123): /system/priv-app/Contacts changed; collecting certs
W/SurfaceFlinger( 3665): Ignoring duplicate VSYNC event from HWC (t=38520145170)
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecContacts to /system/priv-app/Contacts
W/PackageManager( 4123): Failed to parse /system/priv-app/Contacts: Signature mismatch for shared user : SharedUserSetting{149f8a1c android.uid.shared/10020}
I/PackageManager( 4123): /system/priv-app/ContactsProvider changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecContactsProvider to /system/priv-app/ContactsProvider
W/PackageManager( 4123): Failed to parse /system/priv-app/ContactsProvider: Signature mismatch for shared user : SharedUserSetting{149f8a1c android.uid.shared/10020}
I/PackageManager( 4123): /system/priv-app/CyanogenSetupWizard changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/priv-app/CyanogenSetupWizard: Signature mismatch for shared user : SharedUserSetting{3a86f748 android.uid.system/1000}
I/PackageManager( 4123): /system/priv-app/DefaultContainerService changed; collecting certs
W/PackageManager( 4123): System package com.android.defcontainer signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.defcontainer issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/DefaultContainerService/arm/DefaultContainerService.odex' for file location '/system/priv-app/DefaultContainerService/DefaultContainerService.apk': Failed to open oat filename for reading: No such file or directory
W/PackageParser( 4123): No actions in intent filter at /system/priv-app/Dialer/Dialer.apk Binary XML file line #185
I/PackageManager( 4123): /system/priv-app/Dialer changed; collecting certs
W/SurfaceFlinger( 3665): Ignoring duplicate VSYNC event from HWC (t=38925304587)
I/PackageManager( 4123): New shared user com.android.dialer: id=10197
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/Dialer/arm/Dialer.odex' for file location '/system/priv-app/Dialer/Dialer.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/DownloadProvider changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecDownloadProvider to /system/priv-app/DownloadProvider
W/PackageManager( 4123): Failed to parse /system/priv-app/DownloadProvider: Signature mismatch for shared user : SharedUserSetting{39185bd android.media/10047}
I/PackageManager( 4123): /system/priv-app/ExternalStorageProvider changed; collecting certs
W/PackageManager( 4123): System package com.android.externalstorage signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.externalstorage issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/ExternalStorageProvider/arm/ExternalStorageProvider.odex' for file location '/system/priv-app/ExternalStorageProvider/ExternalStorageProvider.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/FusedLocation changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/priv-app/FusedLocation: Signature mismatch for shared user : SharedUserSetting{3a86f748 android.uid.system/1000}
I/PackageManager( 4123): /system/priv-app/InputDevices changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/priv-app/InputDevices: Signature mismatch for shared user : SharedUserSetting{3a86f748 android.uid.system/1000}
I/PackageManager( 4123): /system/priv-app/ManagedProvisioning changed; collecting certs
W/PackageManager( 4123): System package com.android.managedprovisioning signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.managedprovisioning issued.
I/art ( 4123): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/ManagedProvisioning/arm/ManagedProvisioning.odex' for file location '/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/MediaProvider changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecMediaProvider to /system/priv-app/MediaProvider
W/PackageManager( 4123): Failed to parse /system/priv-app/MediaProvider: Signature mismatch for shared user : SharedUserSetting{39185bd android.media/10047}
I/PackageManager( 4123): /system/priv-app/Mms changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
W/PackageManager( 4123): System package com.android.mms signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.mms issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/Mms/arm/Mms.odex' for file location '/system/priv-app/Mms/Mms.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Code path for pkg : com.android.mms changing from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
W/PackageManager( 4123): Resource path for pkg : com.android.mms changing from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
I/PackageManager( 4123): /system/priv-app/MmsService changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/priv-app/MmsService: Signature mismatch for shared user : SharedUserSetting{f4cc096 android.uid.phone/1001}
I/PackageManager( 4123): /system/priv-app/OneTimeInitializer changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/OneTimeInitializer/arm/OneTimeInitializer.odex' for file location '/system/priv-app/OneTimeInitializer/OneTimeInitializer.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/ProxyHandler changed; collecting certs
W/PackageManager( 4123): System package com.android.proxyhandler signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.proxyhandler issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/ProxyHandler/arm/ProxyHandler.odex' for file location '/system/priv-app/ProxyHandler/ProxyHandler.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/Settings changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecSettings to /system/priv-app/Settings
W/PackageManager( 4123): Failed to parse /system/priv-app/Settings: Signature mismatch for shared user : SharedUserSetting{3a86f748 android.uid.system/1000}
I/PackageManager( 4123): /system/priv-app/SettingsProvider changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecSettingsProvider to /system/priv-app/SettingsProvider
W/PackageManager( 4123): Failed to parse /system/priv-app/SettingsProvider: Signature mismatch for shared user : SharedUserSetting{3a86f748 android.uid.system/1000}
I/PackageManager( 4123): /system/priv-app/SharedStorageBackup changed; collecting certs
W/PackageManager( 4123): System package com.android.sharedstoragebackup signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.sharedstoragebackup issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/SharedStorageBackup/arm/SharedStorageBackup.odex' for file location '/system/priv-app/SharedStorageBackup/SharedStorageBackup.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/Shell changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/priv-app/Shell: Signature mismatch for shared user : SharedUserSetting{192f471b android.uid.shell/2000}
I/PackageManager( 4123): /system/priv-app/SystemUI changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/priv-app/SystemUI: Signature mismatch for shared user : SharedUserSetting{1ae92064 android.uid.systemui/10058}
I/PackageManager( 4123): /system/priv-app/TeleService changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/priv-app/TeleService: Signature mismatch for shared user : SharedUserSetting{f4cc096 android.uid.phone/1001}
I/PackageManager( 4123): /system/priv-app/Telecom changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/priv-app/Telecom: Signature mismatch for shared user : SharedUserSetting{f4cc096 android.uid.phone/1001}
I/PackageManager( 4123): /system/priv-app/TelephonyProvider changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecTelephonyProvider_Candy to /system/priv-app/TelephonyProvider
W/PackageManager( 4123): Failed to parse /system/priv-app/TelephonyProvider: Signature mismatch for shared user : SharedUserSetting{f4cc096 android.uid.phone/1001}
I/PackageManager( 4123): /system/priv-app/ThemeChooser changed; collecting certs
I/PackageManager( 4123): New shared user org.cyanogenmod.themes: id=10199
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/ThemeChooser/arm/ThemeChooser.odex' for file location '/system/priv-app/ThemeChooser/ThemeChooser.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/ThemesProvider changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/ThemesProvider/arm/ThemesProvider.odex' for file location '/system/priv-app/ThemesProvider/ThemesProvider.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/Trebuchet changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/Trebuchet/arm/Trebuchet.odex' for file location '/system/priv-app/Trebuchet/Trebuchet.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Permission com.android.launcher.permission.INSTALL_SHORTCUT from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4123): Permission com.android.launcher.permission.UNINSTALL_SHORTCUT from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4123): Permission com.android.launcher3.permission.READ_SETTINGS from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4123): Permission com.android.launcher3.permission.WRITE_SETTINGS from package com.cyanogenmod.trebuchet ignored: no group null
I/PackageManager( 4123): /system/priv-app/VpnDialogs changed; collecting certs
W/PackageManager( 4123): System package com.android.vpndialogs signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.vpndialogs issued.
I/art ( 4123): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@priv-app@[email protected]@classes.dex' for file location '/system/priv-app/VpnDialogs/VpnDialogs.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/VpnDialogs/arm/VpnDialogs.odex' for file location '/system/priv-app/VpnDialogs/VpnDialogs.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/priv-app/WallpaperCropper changed; collecting certs
W/PackageManager( 4123): System package com.android.wallpapercropper signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.wallpapercropper issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/priv-app/WallpaperCropper/arm/WallpaperCropper.odex' for file location '/system/priv-app/WallpaperCropper/WallpaperCropper.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/BasicDreams changed; collecting certs
W/PackageManager( 4123): System package com.android.dreams.basic signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.dreams.basic issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/BasicDreams/arm/BasicDreams.odex' for file location '/system/app/BasicDreams/BasicDreams.apk': Failed to open oat filename for reading: No such file or directory
W/PackageParser( 4123): No actions in intent filter at /system/app/Bluetooth/Bluetooth.apk Binary XML file line #229
I/PackageManager( 4123): /system/app/Bluetooth changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/app/Bluetooth: Signature mismatch for shared user : SharedUserSetting{2d249b9a android.uid.bluetooth/1002}
I/PackageManager( 4123): /system/app/Browser changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Browser/arm/Browser.odex' for file location '/system/app/Browser/Browser.apk': Failed to open oat filename for reading: No such file or directory
W/PackageParser( 4123): No actions in intent filter at /system/app/CMFileManager/CMFileManager.apk Binary XML file line #155
I/PackageManager( 4123): /system/app/CMFileManager changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/CMFileManager/arm/CMFileManager.odex' for file location '/system/app/CMFileManager/CMFileManager.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/CMWallpapers changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/CMWallpapers/arm/CMWallpapers.odex' for file location '/system/app/CMWallpapers/CMWallpapers.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/Calculator changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Calculator/arm/Calculator.odex' for file location '/system/app/Calculator/Calculator.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/Calendar changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/app/SPlanner_OS_UPG to /system/app/Calendar
W/PackageManager( 4123): System package com.android.calendar signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.calendar issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Calendar/arm/Calendar.odex' for file location '/system/app/Calendar/Calendar.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Code path for pkg : com.android.calendar changing from /system/app/SPlanner_OS_UPG to /system/app/Calendar
W/PackageManager( 4123): Resource path for pkg : com.android.calendar changing from /system/app/SPlanner_OS_UPG to /system/app/Calendar
I/PackageManager( 4123): /system/app/Camera2 changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Camera2/arm/Camera2.odex' for file location '/system/app/Camera2/Camera2.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/CaptivePortalLogin changed; collecting certs
W/PackageManager( 4123): System package com.android.captiveportallogin signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.captiveportallogin issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/CaptivePortalLogin/arm/CaptivePortalLogin.odex' for file location '/system/app/CaptivePortalLogin/CaptivePortalLogin.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/CertInstaller changed; collecting certs
W/PackageManager( 4123): System package com.android.certinstaller signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.certinstaller issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/CertInstaller/arm/CertInstaller.odex' for file location '/system/app/CertInstaller/CertInstaller.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/DeskClock changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/DeskClock/arm/DeskClock.odex' for file location '/system/app/DeskClock/DeskClock.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/Development changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/app/Development: Signature mismatch for shared user : SharedUserSetting{3a86f748 android.uid.system/1000}
I/PackageManager( 4123): /system/app/DocumentsUI changed; collecting certs
W/PackageManager( 4123): System package com.android.documentsui signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.documentsui issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/DocumentsUI/arm/DocumentsUI.odex' for file location '/system/app/DocumentsUI/DocumentsUI.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/DownloadProviderUi changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/app/DownloadProviderUi: Signature mismatch for shared user : SharedUserSetting{39185bd android.media/10047}
I/PackageManager( 4123): /system/app/Eleven changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Eleven/arm/Eleven.odex' for file location '/system/app/Eleven/Eleven.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/Email changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4123): System package com.android.email signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.email issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Email/arm/Email.odex' for file location '/system/app/Email/Email.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Code path for pkg : com.android.email changing from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4123): Resource path for pkg : com.android.email changing from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4123): Permission com.android.email.permission.READ_ATTACHMENT from package com.android.email ignored: no group null
I/PackageManager( 4123): /system/app/Exchange2 changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/app/SecExchange to /system/app/Exchange2
W/PackageManager( 4123): System package com.android.exchange signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.exchange issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Exchange2/arm/Exchange2.odex' for file location '/system/app/Exchange2/Exchange2.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Code path for pkg : com.android.exchange changing from /system/app/SecExchange to /system/app/Exchange2
W/PackageManager( 4123): Resource path for pkg : com.android.exchange changing from /system/app/SecExchange to /system/app/Exchange2
I/PackageManager( 4123): /system/app/Galaxy4 changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Galaxy4/arm/Galaxy4.odex' for file location '/system/app/Galaxy4/Galaxy4.apk': Failed to open oat filename for reading: No such file or directory
W/PackageParser( 4123): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #273
W/PackageParser( 4123): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #276
I/PackageManager( 4123): /system/app/Gallery2 changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Gallery2/arm/Gallery2.odex' for file location '/system/app/Gallery2/Gallery2.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/HTMLViewer changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/app/SecHTMLViewer to /system/app/HTMLViewer
W/PackageManager( 4123): System package com.android.htmlviewer signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.htmlviewer issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/HTMLViewer/arm/HTMLViewer.odex' for file location '/system/app/HTMLViewer/HTMLViewer.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Code path for pkg : com.android.htmlviewer changing from /system/app/SecHTMLViewer to /system/app/HTMLViewer
W/PackageManager( 4123): Resource path for pkg : com.android.htmlviewer changing from /system/app/SecHTMLViewer to /system/app/HTMLViewer
I/PackageManager( 4123): /system/app/HoloSpiralWallpaper changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/HoloSpiralWallpaper/arm/HoloSpiralWallpaper.odex' for file location '/system/app/HoloSpiralWallpaper/HoloSpiralWallpaper.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/InCallUI changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/app/LegacyInCallUI to /system/app/InCallUI
W/PackageManager( 4123): Package com.android.incallui shared user changed from android.uid.phone to com.android.dialer; replacing with new
W/PackageManager( 4123): System package com.android.incallui has changed from uid: 1001 to 10197; old data erased
I/PackageManager( 4123): SELinux relabeling of com.android.incallui issued.
I/PackageManager( 4123): /system/app/KeyChain changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/app/KeyChain: Signature mismatch for shared user : SharedUserSetting{3a86f748 android.uid.system/1000}
I/PackageManager( 4123): /system/app/LatinIME changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/LatinIME/arm/LatinIME.odex' for file location '/system/app/LatinIME/LatinIME.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/LiveWallpapers changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/LiveWallpapers/arm/LiveWallpapers.odex' for file location '/system/app/LiveWallpapers/LiveWallpapers.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/LiveWallpapersPicker changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
W/PackageManager( 4123): System package com.android.wallpaper.livepicker signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.wallpaper.livepicker issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/LiveWallpapersPicker/arm/LiveWallpapersPicker.odex' for file location '/system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Code path for pkg : com.android.wallpaper.livepicker changing from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
W/PackageManager( 4123): Resource path for pkg : com.android.wallpaper.livepicker changing from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
I/PackageManager( 4123): /system/app/LockClock changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/LockClock/arm/LockClock.odex' for file location '/system/app/LockClock/LockClock.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/NoiseField changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/NoiseField to /system/app/NoiseField
W/PackageManager( 4123): System package com.android.noisefield signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.noisefield issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/NoiseField/arm/NoiseField.odex' for file location '/system/app/NoiseField/NoiseField.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Code path for pkg : com.android.noisefield changing from /system/priv-app/NoiseField to /system/app/NoiseField
W/PackageManager( 4123): Resource path for pkg : com.android.noisefield changing from /system/priv-app/NoiseField to /system/app/NoiseField
I/PackageManager( 4123): /system/app/PacProcessor changed; collecting certs
W/PackageManager( 4123): System package com.android.pacprocessor signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.pacprocessor issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/PacProcessor/arm/PacProcessor.odex' for file location '/system/app/PacProcessor/PacProcessor.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/PackageInstaller changed; collecting certs
W/PackageManager( 4123): System package com.android.packageinstaller signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.packageinstaller issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/PackageInstaller/arm/PackageInstaller.odex' for file location '/system/app/PackageInstaller/PackageInstaller.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/PhaseBeam changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
W/PackageManager( 4123): System package com.android.phasebeam signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.phasebeam issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/PhaseBeam/arm/PhaseBeam.odex' for file location '/system/app/PhaseBeam/PhaseBeam.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Code path for pkg : com.android.phasebeam changing from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
W/PackageManager( 4123): Resource path for pkg : com.android.phasebeam changing from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
I/PackageManager( 4123): /system/app/PhotoPhase changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/PhotoPhase/arm/PhotoPhase.odex' for file location '/system/app/PhotoPhase/PhotoPhase.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/PhotoTable changed; collecting certs
W/PackageManager( 4123): System package com.android.dreams.phototable signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.dreams.phototable issued.
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/PhotoTable/arm/PhotoTable.odex' for file location '/system/app/PhotoTable/PhotoTable.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/PicoTts changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/PicoTts/arm/PicoTts.odex' for file location '/system/app/PicoTts/PicoTts.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/PrintSpooler changed; collecting certs
W/PackageManager( 4123): Trying to update system app code path from /system/app/SPrintSpooler to /system/app/PrintSpooler
W/PackageManager( 4123): System package com.android.printspooler signature changed; retaining data.
I/PackageManager( 4123): SELinux relabeling of com.android.printspooler issued.
I/art ( 4123): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/system@app@[email protected]@classes.dex' for file location '/system/app/PrintSpooler/PrintSpooler.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/PrintSpooler/arm/PrintSpooler.odex' for file location '/system/app/PrintSpooler/PrintSpooler.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Code path for pkg : com.android.printspooler changing from /system/app/SPrintSpooler to /system/app/PrintSpooler
W/PackageManager( 4123): Resource path for pkg : com.android.printspooler changing from /system/app/SPrintSpooler to /system/app/PrintSpooler
I/PackageManager( 4123): /system/app/Provision changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Provision/arm/Provision.odex' for file location '/system/app/Provision/Provision.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/SoundRecorder changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/SoundRecorder/arm/SoundRecorder.odex' for file location '/system/app/SoundRecorder/SoundRecorder.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/Stk changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/app/Stk: Signature mismatch for shared user : SharedUserSetting{f4cc096 android.uid.phone/1001}
I/PackageManager( 4123): /system/app/Terminal changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/Terminal/arm/Terminal.odex' for file location '/system/app/Terminal/Terminal.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/UserDictionaryProvider changed; collecting certs
W/PackageManager( 4123): Failed to parse /system/app/UserDictionaryProvider: Signature mismatch for shared user : SharedUserSetting{149f8a1c android.uid.shared/10020}
I/PackageManager( 4123): /system/app/VisualizationWallpapers changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/VisualizationWallpapers/arm/VisualizationWallpapers.odex' for file location '/system/app/VisualizationWallpapers/VisualizationWallpapers.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/WAPPushManager changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/WAPPushManager/arm/WAPPushManager.odex' for file location '/system/app/WAPPushManager/WAPPushManager.apk': Failed to open oat filename for reading: No such file or directory
I/PackageManager( 4123): /system/app/WhisperPush changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/WhisperPush/arm/WhisperPush.odex' for file location '/system/app/WhisperPush/WhisperPush.apk': Failed to open oat filename for reading: No such file or directory
W/PackageManager( 4123): Failed to parse /system/app/mcRegistry: Missing base APK in /system/app/mcRegistry
I/PackageManager( 4123): /system/app/webview changed; collecting certs
I/art ( 4123): 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 ( 4123): DexFile_isDexOptNeeded failed to open oat file '/system/app/webview/arm/webview.odex' for file location '/system/app/webview/webview.apk': Failed to open oat filename for reading: No such file or directory
D/PackageManager( 4123): No files in app dir /system/vendor/app
D/PackageManager( 4123): No files in app dir /oem/app
D/PackageManager( 4123): No files in app dir /vendor/bundled-app
W/PackageManager( 4123): System package com.sec.esdk.elm no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.taskmanager no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.sbrowsertry no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.mmapp no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.service.health no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.soundalive no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.chromecustomizations no longer exists; wiping its data
W/PackageManager( 4123): System package com.dsi.ant.server no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.providers.userdictionary no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.FileShareClient no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.apps.tag no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.apps.docs.editors.docs no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.GeoLookout no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.chaton no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.enterprise.knox.cloudmdm.smdms no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.googlequicksearchbox no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.securitylogagent no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.filtermanager no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.easylauncher no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.providers.partnerbookmarks no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.sbrowser no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.RilServiceModeApp no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.app.video no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.scloud.quota no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.FlashBarService no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.nearby.mediaserver no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.play.games no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.emergencylauncher no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.feedback no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.assistantmenu no longer exists; wiping its data
W/PackageManager( 4123): System package flipboard.app no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.sounddetector no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.service.sm no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.dsm.system no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.snsimagecache no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.onetimeinitializer no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.storycam no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.inputdevices no longer exists; wiping its data
W/PackageManager( 4123): System package com.blurb.checkout no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.knox.switcher no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.beaconmanager no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.bluetooth no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.allsharecastplayer no longer exists; wiping its data
W/PackageManager( 4123): System package com.fmm.dm no longer exists; wiping its data
W/PackageManager( 4123): System package com.dsi.ant.service.socket no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.servicemodeapp no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.enterprise.mdm.services.simpin no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.gestureservice no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.easyonehand no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.apps.maps no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.mt no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.MtpApplication no longer exists; wiping its data
W/PackageManager( 4123): System package com.lifevibes.trimapp no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.contacts no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.providers.context no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.phone no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.hearingadjust no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.server.telecom no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.bcservice no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.stub.paywithpaypal no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.sdk.spenv10 no longer exists; wiping its data
W/PackageManager( 4123): System package com.monotype.android.font.rosemary no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.videoplayer no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.provider.emergencymode no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.Kies no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.gm no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.systemui no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.nfc no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.knox.shortcutsms no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.safetyassurance no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.providers.calendar no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.vending no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.providers.downloads no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.gsf no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.factorykeystring no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.colorblind no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.app.RilErrorNotifier no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.scloud.backup no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.youtube no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.sdk.samsunglink no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.location.fused no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.airwakeupview no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.automotive.drivelink no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.scloud.proxy.memo no longer exists; wiping its data
W/PackageManager( 4123): System package com.dropbox.android no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.providers.contacts no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.automation no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.mimage.photoretouching no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.widgetapp.activeapplicationwidget no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.FileShareServer no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.scloud.proxy.calendar no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.setupwizard no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.apps.magazines no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.pcw.device no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.bluetoothtest no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.usbsettings no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.providers.settingsearch no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.provider.shootingmodeprovider no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.mirrorlink no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.mimage.sstudio no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.shareaccessibilitysettings no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.knox.containeragent2 no longer exists; wiping its data
W/PackageManager( 4123): System package com.monotype.android.font.cooljazz no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.wlantest no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.scloud.proxy.contacts no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.gms no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.configupdater no longer exists; wiping its data
W/PackageManager( 4123): System package com.gd.mobicore.pa no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.knox.bridge no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.magnifier no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.personalpage.service no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.emergencymode.service no longer exists; wiping its data
W/PackageManager( 4123): System package com.dsi.ant.plugins.antplus no longer exists; wiping its data
W/PackageManager( 4123): System package com.wsomacp no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.headlines no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.scloud.proxy.snote3 no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.bcocr no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.tourviewer no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.app.samsungprintservice no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.preloadinstaller no longer exists; wiping its data
W/PackageManager( 4123): System package com.infraware.polarisviewer5 no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.billing no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.launcher no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.apps.books no longer exists; wiping its data
W/PackageManager( 4123): System package com.arcsoft.magicshotstudio no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.providers.security no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.clockpackage no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.hwmoduletest no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.service.travel no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.Preconfig no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.stk no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.gsf.login no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.diagmonagent no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.voicenote no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.provider.badge no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.sconnect no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.ofviewer no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.mdm no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.gallery3d no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.smartcard.manager no longer exists; wiping its data
W/PackageManager( 4123): System package com.wssyncmldm no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.provider.filterprovider no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.sdk.professionalaudio.app.audioconnectionservice no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.widgetapp.easymodecontactswidget no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.factory.camera no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.directconnect no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.knox.packageverifier no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.samsungapps no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.providers.tasks no longer exists; wiping its data
W/PackageManager( 4123): System package com.monotype.android.font.samsungsans no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.DataCreate no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.shell no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.cloudagent no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.chrome no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.klmsagent no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.dictionary no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.marvin.talkback no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.ringtoneBR no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.wfdbroker no longer exists; wiping its data
W/PackageManager( 4123): System package com.osp.app.signin no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.sysscope no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.keychain no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.SMT no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.directshare no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.personalization no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.parser no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.tcpdumpservice no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.galaxyfinder no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.browser.provider no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.factory no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.minimode.res no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.gallery3d.panorama360view no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.filter no longer exists; wiping its data
W/PackageManager( 4123): System package com.dsi.ant.sample.acquirechannels no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.street no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.enterprise.knox.attestation no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.everglades.video no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.easysettings no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.myfiles no longer exists; wiping its data
W/PackageManager( 4123): System package com.fixmo.isa no longer exists; wiping its data
W/PackageManager( 4123): System package com.policydm no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.allshare.service.mediashare no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.fotaclient no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.widgetapp.digitalclock no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.scloud.auth no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.provider.logsprovider no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.phone no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.widgetapp.digitalclockeasy no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.apps.plus no longer exists; wiping its data
W/PackageManager( 4123): System package android no longer exists; wiping its data
E/installd( 3678): Couldn't opendir /data/data/android: No such file or directory
W/PackageManager( 4123): System package com.sec.android.widget.samsungapps no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.providers.telephony no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.scloud.sync no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.webview no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.pagebuddynotisvc no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.mediasync no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.wallpaperchooser no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.knox.knoxsetupwizardclient no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.groupcast no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.clipboardsaveservice no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.location no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.clipboarduiservice no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.fingerprint.service no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.knox.rcp.components no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.kidsplat.installer no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.scloud.proxy.sbrowser no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.filterinstaller no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.widgetapp.dualclockdigital no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.visualeffect.res no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.music no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.safetyinformation no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.setdefaultlauncher no longer exists; wiping its data
W/PackageManager( 4123): System package eu.chainfire.supersu no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.popupcalculator no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.widgetapp.webmanual no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.soagent no longer exists; wiping its data
W/PackageManager( 4123): System package com.vlingo.midas no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.talk no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.popupuireceiver no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.camera no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.settings no longer exists; wiping its data
W/PackageManager( 4123): System package org.simalliance.openmobileapi.service no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.app.watchmanagerstub no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.android.allshare.service.fileshare no longer exists; wiping its data
W/PackageManager( 4123): System package com.samsung.sec.android.application.csc no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.msc.nts.android.proxy no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.daemonapp no longer exists; wiping its data
W/PackageManager( 4123): System package com.LocalFota no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.spp.push no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.SamsungContentsAgent no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.videos no longer exists; wiping its data
W/PackageManager( 4123): System package com.android.providers.settings no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.syncadapters.contacts no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.app.SecSetupWizard no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.syncadapters.calendar no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.enterprise.mdm.vpn no longer exists; wiping its data
W/PackageManager( 4123): System package tv.peel.smartremote no longer exists; wiping its data
W/PackageManager( 4123): System package com.google.android.backuptransport no longer exists; wiping its data
W/PackageManager( 4123): System package com.sec.android.cloudagent.dropboxoobe no longer exists; wiping its data