-
Notifications
You must be signed in to change notification settings - Fork 1
/
test106.txt
5152 lines (5152 loc) · 634 KB
/
test106.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 ( 3676): type=2000 audit(0.0:1): initialized
W/auditd ( 3676): type=1325 audit(0.0:2): table=filter family=2 entries=0
W/auditd ( 3676): type=1325 audit(0.0:3): table=mangle family=2 entries=0
W/auditd ( 3676): type=1325 audit(0.0:4): table=nat family=2 entries=0
W/auditd ( 3676): type=1325 audit(0.0:5): table=raw family=2 entries=0
W/auditd ( 3676): type=1325 audit(0.0:6): table=security family=2 entries=0
W/auditd ( 3676): type=1325 audit(0.0:7): table=filter family=3 entries=0
W/auditd ( 3676): type=1325 audit(0.0:8): table=filter family=10 entries=0
W/auditd ( 3676): type=1325 audit(0.0:9): table=mangle family=10 entries=0
W/auditd ( 3676): 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): ____ _ _ ____ _ _ ____ ____ ____ _ _ _ _ ____ ___
W/auditd ( 3676): type=1305 audit(0.0:11): audit_pid=3655 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3676): res=1
W/auditd ( 3676): type=1305 audit(0.0:12): audit_rate_limit=20 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3676): res=1
I/lowmemorykiller( 3657): Using in-kernel low memory killer interface
I/cm ( 3668): | \_/ |__| |\ | | | | __ |___ |\ | |\/| | | | \
I/cm ( 3675): |___ | | | | \| |__| |__] |___ | \| | | |__| |__/
--------- beginning of system
I/auditd ( 3677): Starting up
I/Vold ( 3659): Vold 2.1 (the revenge) firing up
D/Vold ( 3659): Volume sdcard1 state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3659): Volume usbdisk state changing -1 (Initializing) -> 0 (No-Media)
I/Cryptfs ( 3659): Check if PFE is activated on Boot
E/Cryptfs ( 3659): Bad magic for real block device /dev/block/platform/12200000.dwmmc0/by-name/USERDATA
E/Cryptfs ( 3659): Error getting crypt footer and key
I/DEBUG ( 3679): debuggerd: Jul 3 2015 03:58:19
I/audit_log( 3677): Previous audit logfile detected, rotating
E/audit_rules( 3677): Could not read audit rules /data/misc/audit/audit.rules: No such file or directory
I/PrProvisioning( 3690): successfully - provisioning start !
I/installd( 3684): installd firing up
I/Netd ( 3678): Netd 1.0 starting
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
I/PrProvisioning( 3690): provisioning already done
I/macloader( 3687): Settting wifi type to wisol in /data/.cid.info
D/macloader( 3687): Change permissions of /data/.cid.info
I/cm ( 3706): Welcome to Android 5.0.2 / CyanogenMod-12-20150711-UNOFFICIAL-k3gxx
I/SurfaceFlinger( 3660): SurfaceFlinger is starting
I/SurfaceFlinger( 3660): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
I/keystore( 3685): SELinux: Keystore SELinux is disabled.
D/gpsd ( 3686): WakeLock(Release,GPSD)
D/gpsd ( 3686): WakeLock(Release,SUPL)
I/gpsd_d ( 3686): GNSS: 219420
D/wrapperGPS( 3686): wrapperOpenClient_RILD
E/wrapperGPS( 3686): wrapperOpenClient_RILD: RegisterUnsolicitedHandler() UNSOL_GPS_NOTI (20009)
D/wrapperGPS( 3686): wrapperRegisterRequestCompleteHandler
D/wrapperGPS( 3686): wrapperRegisterUnsolicitedHandler id(12009), handler(0xb6bc36e9)
D/wrapperGPS( 3686): wrapperRegisterErrorCallback
D/wrapperGPS( 3686): wrapperConnect_RILD
D/libEGL ( 3660): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3660): PLATFORM VERSION : JB-MR-2
I/gralloc ( 3660): using (id=)
I/gralloc ( 3660): xres = 1080 px
I/gralloc ( 3660): yres = 1920 px
I/gralloc ( 3660): width = 65 mm (422.030762 dpi)
I/gralloc ( 3660): height = 115 mm (424.069580 dpi)
I/gralloc ( 3660): refresh rate = 60.00 Hz
D/WVMDrmPlugIn( 3682): WVMDrmPlugin::onGetSupportInfo : 0
D/hwcomposer( 3660): using
D/hwcomposer( 3660): xres = 1080 px
D/hwcomposer( 3660): yres = 1920 px
D/hwcomposer( 3660): width = 65 mm (422.030000 dpi)
D/hwcomposer( 3660): height = 115 mm (424.069000 dpi)
D/hwcomposer( 3660): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 3660): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 3660): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 3660): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3660): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3660): open subdev device /dev/v4l-subdev2
I/hwcomposer( 3660): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 3660): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 3660): Using composer version 1.3
I/SurfaceFlinger( 3660): EGL information:
I/SurfaceFlinger( 3660): vendor : Android
I/SurfaceFlinger( 3660): version : 1.4 Android META-EGL
I/SurfaceFlinger( 3660): 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( 3660): Client API: OpenGL_ES
I/SurfaceFlinger( 3660): EGLSurface: 8-8-8-8, config=0xb6acf2ac
I/SurfaceFlinger( 3660): OpenGL ES informations:
I/SurfaceFlinger( 3660): vendor : ARM
I/SurfaceFlinger( 3660): renderer : Mali-T628
I/SurfaceFlinger( 3660): version : OpenGL ES 3.0
I/SurfaceFlinger( 3660): 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( 3660): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 3660): GL_MAX_VIEWPORT_DIMS = 8192
D/SurfaceFlinger( 3660): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 3660): unblank ioctl failed (display already unblanked)
D/AndroidRuntime( 3688):
D/AndroidRuntime( 3688): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 3688): CheckJNI is OFF
I/art ( 3688): option[0]=-Xzygote
I/art ( 3688): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 3688): option[2]=exit
I/art ( 3688): option[3]=vfprintf
I/art ( 3688): option[4]=sensitiveThread
I/art ( 3688): option[5]=-verbose:gc
I/art ( 3688): option[6]=-Xms16m
I/art ( 3688): option[7]=-Xmx512m
I/art ( 3688): option[8]=-XX:mainThreadStackSize=24K
I/art ( 3688): option[9]=-XX:HeapGrowthLimit=192m
I/art ( 3688): option[10]=-XX:HeapMinFree=2m
I/art ( 3688): option[11]=-XX:HeapMaxFree=8m
I/art ( 3688): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 3688): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 3688): option[14]=-Xlockprofthreshold:500
I/art ( 3688): option[15]=-Ximage-compiler-option
I/art ( 3688): option[16]=--runtime-arg
I/art ( 3688): option[17]=-Ximage-compiler-option
I/art ( 3688): option[18]=-Xms64m
I/art ( 3688): option[19]=-Ximage-compiler-option
I/art ( 3688): option[20]=--runtime-arg
I/art ( 3688): option[21]=-Ximage-compiler-option
I/art ( 3688): option[22]=-Xmx64m
I/art ( 3688): option[23]=-Ximage-compiler-option
I/art ( 3688): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 3688): option[25]=-Ximage-compiler-option
I/art ( 3688): option[26]=--image-classes=preloaded-classes
I/art ( 3688): option[27]=-Xcompiler-option
I/art ( 3688): option[28]=--runtime-arg
I/art ( 3688): option[29]=-Xcompiler-option
I/art ( 3688): option[30]=-Xms64m
I/art ( 3688): option[31]=-Xcompiler-option
I/art ( 3688): option[32]=--runtime-arg
I/art ( 3688): option[33]=-Xcompiler-option
I/art ( 3688): option[34]=-Xmx512m
I/art ( 3688): option[35]=-Duser.language=es
I/art ( 3688): option[36]=-Duser.region=US
I/art ( 3688): Pruning dalvik-cache since we are relocating an image and will need to recompile
W/art ( 3688): Unexpected file type of
W/art ( 3688): encountered.
D/SurfaceFlinger( 3660): SF. shader cache generated - 26 shaders in 79.587456 ms
D/libEGL ( 3831): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3831): PLATFORM VERSION : JB-MR-2
E/BootAnimation( 3831): couldn't find audio_conf.txt
I/art ( 3688): RelocateImage: /system/bin/patchoat --input-image-location=/system/framework/boot.art --output-image-file=/data/dalvik-cache/arm/system@[email protected] --input-oat-location=/system/framework/boot.oat --output-oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --base-offset-delta=-6017024
D/BootAnimation( 3831): Use save memory method, maybe small fps in actual.
D/wrapperGPS( 3686): wrapperConnect_RILD
V/NatController( 3678): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 3678): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 3678): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 3678): runCmd(/system/bin/iptables -t nat -F natctrl_nat_PREROUTING) res=0
V/NatController( 3678): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=1
V/NatController( 3678): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=1
V/NatController( 3678): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 3678): 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( 3686): wrapperConnect_RILD
E/memtrack( 3688): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug( 3688): failed to load memtrack module: -2
I/SamplingProfilerIntegration( 3688): Profiling disabled.
D/Zygote ( 3688): begin preload
I/Zygote ( 3688): Preloading classes...
I/art ( 3688): Explicit concurrent mark sweep GC freed 994(55KB) AllocSpace objects, 0(0B) LOS objects, 98% free, 70KB/4MB, paused 130us total 4.735ms
I/art ( 3688): Counter: 1
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansGujarati-Regular.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansGujarati-Bold.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Regular.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Bold.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansGurmukhi-Regular.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansGurmukhi-Bold.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Regular.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Bold.ttf
D/MDnsDS ( 3678): MDnsSdListener::Hander starting up
D/MDnsDS ( 3678): MDnsSdListener starting to monitor
D/MDnsDS ( 3678): Going to poll with pollCount 1
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansSinhala-Regular.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansSinhala-Bold.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansCherokee-Regular.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansCanadianAboriginal-Regular.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansYi-Regular.ttf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansHans-Regular.otf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansHant-Regular.otf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansJP-Regular.otf
E/Minikin ( 3688): addFont failed to create font /system/fonts/NotoSansKR-Regular.otf
I/art ( 3688): Thread[1,tid=3688,WaitingForJniOnLoad,Thread*=0xb5107800,peer=0x12c33140,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
D/MtpDeviceJNI( 3688): register_android_mtp_MtpDevice
I/art ( 3688): Thread[1,tid=3688,WaitingForJniOnLoad,Thread*=0xb5107800,peer=0x12c33140,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
I/art ( 3688): Thread[1,tid=3688,WaitingForJniOnLoad,Thread*=0xb5107800,peer=0x12c33140,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
D/wrapperGPS( 3686): wrapperConnect_RILD
I/System ( 3688): Loaded time zone names for "" in 45ms (40ms in ICU)
I/System ( 3688): Loaded time zone names for "en_US" in 28ms (24ms in ICU)
I/System ( 3688): Loaded time zone names for "es_US" in 33ms (28ms in ICU)
I/art ( 3688): Explicit concurrent mark sweep GC freed 32378(1963KB) AllocSpace objects, 0(0B) LOS objects, 71% free, 1613KB/5MB, paused 128us total 12.636ms
I/Zygote ( 3688): ...preloaded 3005 classes in 800ms.
I/art ( 3688): VMRuntime.preloadDexCaches starting
I/art ( 3688): VMRuntime.preloadDexCaches strings total=217316 before=40338 after=40338
I/art ( 3688): VMRuntime.preloadDexCaches types total=18704 before=6337 after=6380
I/art ( 3688): VMRuntime.preloadDexCaches fields total=87408 before=32543 after=32871
I/art ( 3688): VMRuntime.preloadDexCaches methods total=154031 before=66779 after=67657
I/art ( 3688): VMRuntime.preloadDexCaches finished
I/art ( 3688): Counter: 0
I/art ( 3688): Counter: 1
I/art ( 3688): Explicit concurrent mark sweep GC freed 175(20KB) AllocSpace objects, 0(0B) LOS objects, 71% free, 1593KB/5MB, paused 128us total 7.116ms
D/idmap ( 4096): error: no read access to /vendor/overlay: No such file or directory
I/Zygote ( 3688): Preloading resources...
D/BootAnimation( 3831): Use save memory method, maybe small fps in actual.
I/art ( 3688): Explicit concurrent mark sweep GC freed 4546(159KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 188us total 8.657ms
I/Zygote ( 3688): ...preloaded 430 resources in 369ms.
I/art ( 3688): Explicit concurrent mark sweep GC freed 564(32KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 191us total 9.023ms
I/Zygote ( 3688): ...preloaded 41 resources in 17ms.
I/art ( 3688): Counter: 0
D/libEGL ( 3688): loaded /vendor/lib/egl/libGLES_mali.so
I/Zygote ( 3688): Preloading shared libraries...
D/Zygote ( 3688): end preload
I/art ( 3688): Explicit concurrent mark sweep GC freed 461(21KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 186us total 7.761ms
I/art ( 3688): Explicit concurrent mark sweep GC freed 41(1568B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 319us total 8.310ms
I/art ( 3688): Explicit concurrent mark sweep GC freed 5(160B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 238us total 8.421ms
I/Zygote ( 3688): System server process 4097 has been created
I/Zygote ( 3688): Accepting command socket connections
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/org.cyanogenmod.hardware.odex needs to be relocated for /system/framework/org.cyanogenmod.hardware.jar
I/InstallerConnection( 4097): connecting...
I/installd( 3684): new connection
E/installd( 4117): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/org.cyanogenmod.hardware.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/services.odex needs to be relocated for /system/framework/services.jar
E/installd( 4118): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/services.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
D/wrapperGPS( 3686): wrapperConnect_RILD
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/ethernet-service.odex needs to be relocated for /system/framework/ethernet-service.jar
E/installd( 4119): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/ethernet-service.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/wifi-service.odex needs to be relocated for /system/framework/wifi-service.jar
E/installd( 4120): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/wifi-service.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/InstallerConnection( 4097): disconnecting...
E/installd( 3684): eof
E/installd( 3684): failed to read size
I/installd( 3684): closing connection
I/SystemServer( 4097): Entered the Android system server!
V/Fingerprint-JNI( 4097): FingerprintManager JNI ready.
I/ ( 4097): System server: starting sensor init.
D/SensorService( 4097): nuSensorService starting...
I/SystemServiceManager( 4097): Starting com.android.server.pm.Installer
I/Installer( 4097): Waiting for installd to be ready.
I/InstallerConnection( 4097): connecting...
I/installd( 3684): new connection
I/SystemServiceManager( 4097): Starting com.android.server.am.ActivityManagerService$Lifecycle
I/ActivityManager( 4097): Memory class: 192
E/Sensors ( 4097): GeoMagneticSensor, ERROR dev_num = -19
I/ServiceThread( 4097): Enabled StrictMode logging for ActivityManager looper.
E/Sensors ( 4097): UncalMagneticSensor, ERROR dev_num = -19
E/Sensors ( 4097): UncalGyroSensor, ERROR dev_num = -19
E/Sensors ( 4097): GameRotationVector, ERROR dev_num = -19
D/Sensors ( 4097): HrmSpO2Sensor::HrmSpO2Sensor: Shared version Registered
E/SensorService( 4097): >>>> WARNING <<< Upgrade sensor HAL to version 1_3
I/Sensors ( 4097): HrmSpO2Sensor::enable, handle(16), en(0), what(1/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4097): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4097): HrmSpO2Sensor::enable, handle(17), en(0), what(0/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4097): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4097): HrmSpO2Sensor::enable, handle(18), en(0), what(2/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4097): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/ ( 4097): System server: sensor init done.
D/SensorService( 4097): nuSensorService thread starting...
D/SensorService( 4097): new thread SensorEventAckReceiver
I/IntentFirewall( 4097): Read new rules (A:0 B:0 S:0)
I/ServiceThread( 4097): Enabled StrictMode logging for android.ui looper.
I/ServiceThread( 4097): Enabled StrictMode logging for android.display looper.
D/AppOps ( 4097): AppOpsService published
I/SystemServiceManager( 4097): Starting com.android.server.power.PowerManagerService
I/ServiceThread( 4097): Enabled StrictMode logging for PowerManagerService looper.
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/multi_enter_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/single_enter_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/param_index: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/timer_rate: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/timer_slack: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/min_sample_time: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/hispeed_freq: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/go_hispeed_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/target_loads: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/above_hispeed_delay: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu0/cpufreq/interactive/boostpulse_duration: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_enter_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_enter_time: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_exit_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_exit_time: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_enter_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_enter_time: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_exit_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_exit_time: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_slack: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/boostpulse_duration: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: Permission denied
E/SEC PowerHAL( 4097): sysfs_write : Error opening /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: Permission denied
W/libsuspend( 4097): Error writing 'on' to /sys/power/state: Invalid argument
I/libsuspend( 4097): Selected wakeup count
I/SystemServiceManager( 4097): Starting com.android.server.display.DisplayManagerService
I/SystemServiceManager( 4097): Starting phase 100
I/DisplayManagerService( 4097): 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( 4097): Package Manager
W/SELinuxMMAC( 4097): Error opening /data/system/seapp_hash. Assuming first boot.
W/PackageManager( 4097): No security bridge jar found, using default
W/SystemConfig( 4097): No directory /system/etc/sysconfig, skipping
D/SELinuxMMAC( 4097): Using policy file /system/etc/security/mac_permissions.xml
D/wrapperGPS( 3686): wrapperConnect_RILD
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/android.test.runner.odex needs to be relocated for /system/framework/android.test.runner.jar
E/installd( 4139): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/android.test.runner.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/com.android.future.usb.accessory.odex needs to be relocated for /system/framework/com.android.future.usb.accessory.jar
E/installd( 4140): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/com.android.future.usb.accessory.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/com.android.media.remotedisplay.odex needs to be relocated for /system/framework/com.android.media.remotedisplay.jar
E/installd( 4141): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/com.android.media.remotedisplay.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/com.android.location.provider.odex needs to be relocated for /system/framework/com.android.location.provider.jar
E/installd( 4142): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/com.android.location.provider.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/javax.obex.odex needs to be relocated for /system/framework/javax.obex.jar
E/installd( 4143): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/javax.obex.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
E/art ( 4097): DexFile_isDexOptNeeded file '/system/framework/com.android.nfc_extras.jar' does not exist
W/PackageManager( 4097): Library not found: /system/framework/com.android.nfc_extras.jar
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/com.android.mediadrm.signer.odex needs to be relocated for /system/framework/com.android.mediadrm.signer.jar
E/installd( 4144): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/com.android.mediadrm.signer.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/javax.btobex.odex needs to be relocated for /system/framework/javax.btobex.jar
E/installd( 4145): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/javax.btobex.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/am.odex needs to be relocated for /system/framework/am.jar
E/installd( 4146): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/am.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/appops.odex needs to be relocated for /system/framework/appops.jar
E/installd( 4147): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/appops.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/appwidget.odex needs to be relocated for /system/framework/appwidget.jar
E/installd( 4148): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/appwidget.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/bmgr.odex needs to be relocated for /system/framework/bmgr.jar
E/installd( 4149): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/bmgr.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/bu.odex needs to be relocated for /system/framework/bu.jar
E/installd( 4150): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/bu.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/content.odex needs to be relocated for /system/framework/content.jar
E/installd( 4151): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/content.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/dpm.odex needs to be relocated for /system/framework/dpm.jar
E/installd( 4152): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/dpm.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/ime.odex needs to be relocated for /system/framework/ime.jar
E/installd( 4153): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/ime.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/input.odex needs to be relocated for /system/framework/input.jar
E/installd( 4154): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/input.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/media_cmd.odex needs to be relocated for /system/framework/media_cmd.jar
E/installd( 4155): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/media_cmd.odex) out-fd=6 (/data/dalvik-cache/arm/system@framework@[email protected])
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/monkey.odex needs to be relocated for /system/framework/monkey.jar
E/installd( 4156): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/monkey.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/pm.odex needs to be relocated for /system/framework/pm.jar
E/installd( 4157): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/pm.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/requestsync.odex needs to be relocated for /system/framework/requestsync.jar
E/installd( 4158): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/requestsync.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/settings.odex needs to be relocated for /system/framework/settings.jar
E/installd( 4159): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/settings.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/svc.odex needs to be relocated for /system/framework/svc.jar
E/installd( 4160): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/svc.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/tm.odex needs to be relocated for /system/framework/tm.jar
E/installd( 4161): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/tm.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/uiautomator.odex needs to be relocated for /system/framework/uiautomator.jar
E/installd( 4162): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/uiautomator.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/framework/arm/wm.odex needs to be relocated for /system/framework/wm.jar
E/installd( 4163): Running /system/bin/patchoat isa=arm in-fd=5 (/system/framework/arm/wm.odex) out-fd=6 (/data/dalvik-cache/arm/system@[email protected]@classes.dex)
E/SQLiteLog( 4097): (283) recovered 927 frames from WAL file /data/data/com.android.providers.settings/databases/settings.db-wal
D/PackageManager( 4097): No files in app dir /vendor/overlay
W/PackageManager( 4097): Failed to parse /system/framework/arm: Missing base APK in /system/framework/arm
I/PackageManager( 4097): /system/framework/framework-res.apk changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/framework/framework-res.apk: Signature mismatch for shared user : SharedUserSetting{3ad6e806 android.uid.system/1000}
I/PackageManager( 4097): /system/priv-app/AudioFX changed; collecting certs
D/wrapperGPS( 3686): wrapperConnect_RILD
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/AudioFX/arm/AudioFX.odex needs to be relocated for /system/priv-app/AudioFX/AudioFX.apk
I/PackageManager( 4097): /system/priv-app/BackupRestoreConfirmation changed; collecting certs
W/PackageManager( 4097): System package com.android.backupconfirm signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.backupconfirm issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/BackupRestoreConfirmation/arm/BackupRestoreConfirmation.odex needs to be relocated for /system/priv-app/BackupRestoreConfirmation/BackupRestoreConfirmation.apk
I/PackageManager( 4097): /system/priv-app/CMAccount changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/CMAccount/arm/CMAccount.odex needs to be relocated for /system/priv-app/CMAccount/CMAccount.apk
I/PackageManager( 4097): /system/priv-app/CMUpdater changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/CMUpdater/arm/CMUpdater.odex needs to be relocated for /system/priv-app/CMUpdater/CMUpdater.apk
I/PackageManager( 4097): /system/priv-app/CalendarProvider changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecCalendarProvider to /system/priv-app/CalendarProvider
W/PackageManager( 4097): Failed to parse /system/priv-app/CalendarProvider: Signature mismatch for shared user : SharedUserSetting{338ab73e android.uid.calendar/10046}
I/PackageManager( 4097): /system/priv-app/CellBroadcastReceiver changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/CellBroadcastReceiver/arm/CellBroadcastReceiver.odex needs to be relocated for /system/priv-app/CellBroadcastReceiver/CellBroadcastReceiver.apk
W/ResourceType( 4097): Failure getting entry for 0x7f0b023e (t=10 e=574) (error -75)
W/PackageParser( 4097): No actions in intent filter at /system/priv-app/Contacts/Contacts.apk Binary XML file line #362
I/PackageManager( 4097): /system/priv-app/Contacts changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecContacts to /system/priv-app/Contacts
W/PackageManager( 4097): Failed to parse /system/priv-app/Contacts: Signature mismatch for shared user : SharedUserSetting{40c58fa android.uid.shared/10020}
I/PackageManager( 4097): /system/priv-app/ContactsProvider changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecContactsProvider to /system/priv-app/ContactsProvider
W/PackageManager( 4097): Failed to parse /system/priv-app/ContactsProvider: Signature mismatch for shared user : SharedUserSetting{40c58fa android.uid.shared/10020}
I/PackageManager( 4097): /system/priv-app/CyanogenSetupWizard changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/priv-app/CyanogenSetupWizard: Signature mismatch for shared user : SharedUserSetting{3ad6e806 android.uid.system/1000}
I/PackageManager( 4097): /system/priv-app/DefaultContainerService changed; collecting certs
W/PackageManager( 4097): System package com.android.defcontainer signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.defcontainer issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/DefaultContainerService/arm/DefaultContainerService.odex needs to be relocated for /system/priv-app/DefaultContainerService/DefaultContainerService.apk
W/PackageParser( 4097): No actions in intent filter at /system/priv-app/Dialer/Dialer.apk Binary XML file line #185
I/PackageManager( 4097): /system/priv-app/Dialer changed; collecting certs
I/PackageManager( 4097): New shared user com.android.dialer: id=10198
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/Dialer/arm/Dialer.odex needs to be relocated for /system/priv-app/Dialer/Dialer.apk
I/PackageManager( 4097): /system/priv-app/DownloadProvider changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecDownloadProvider to /system/priv-app/DownloadProvider
W/PackageManager( 4097): Failed to parse /system/priv-app/DownloadProvider: Signature mismatch for shared user : SharedUserSetting{29a2403 android.media/10047}
I/PackageManager( 4097): /system/priv-app/ExternalStorageProvider changed; collecting certs
W/PackageManager( 4097): System package com.android.externalstorage signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.externalstorage issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/ExternalStorageProvider/arm/ExternalStorageProvider.odex needs to be relocated for /system/priv-app/ExternalStorageProvider/ExternalStorageProvider.apk
I/PackageManager( 4097): /system/priv-app/FusedLocation changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/priv-app/FusedLocation: Signature mismatch for shared user : SharedUserSetting{3ad6e806 android.uid.system/1000}
I/PackageManager( 4097): /system/priv-app/InputDevices changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/priv-app/InputDevices: Signature mismatch for shared user : SharedUserSetting{3ad6e806 android.uid.system/1000}
I/PackageManager( 4097): /system/priv-app/ManagedProvisioning changed; collecting certs
W/PackageManager( 4097): System package com.android.managedprovisioning signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.managedprovisioning issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/ManagedProvisioning/arm/ManagedProvisioning.odex needs to be relocated for /system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
I/PackageManager( 4097): /system/priv-app/MediaProvider changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecMediaProvider to /system/priv-app/MediaProvider
W/PackageManager( 4097): Failed to parse /system/priv-app/MediaProvider: Signature mismatch for shared user : SharedUserSetting{29a2403 android.media/10047}
I/PackageManager( 4097): /system/priv-app/Mms changed; collecting certs
D/wrapperGPS( 3686): wrapperConnect_RILD
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
W/PackageManager( 4097): System package com.android.mms signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.mms issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/Mms/arm/Mms.odex needs to be relocated for /system/priv-app/Mms/Mms.apk
W/PackageManager( 4097): Code path for pkg : com.android.mms changing from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
W/PackageManager( 4097): Resource path for pkg : com.android.mms changing from /system/priv-app/SecMms_Candy to /system/priv-app/Mms
I/PackageManager( 4097): /system/priv-app/MmsService changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/priv-app/MmsService: Signature mismatch for shared user : SharedUserSetting{2423ad04 android.uid.phone/1001}
I/PackageManager( 4097): /system/priv-app/OneTimeInitializer changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/OneTimeInitializer/arm/OneTimeInitializer.odex needs to be relocated for /system/priv-app/OneTimeInitializer/OneTimeInitializer.apk
I/PackageManager( 4097): /system/priv-app/ProxyHandler changed; collecting certs
W/PackageManager( 4097): System package com.android.proxyhandler signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.proxyhandler issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/ProxyHandler/arm/ProxyHandler.odex needs to be relocated for /system/priv-app/ProxyHandler/ProxyHandler.apk
I/PackageManager( 4097): /system/priv-app/Settings changed; collecting certs
D/wrapperGPS( 3686): wrapperConnect_RILD
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecSettings to /system/priv-app/Settings
W/PackageManager( 4097): Failed to parse /system/priv-app/Settings: Signature mismatch for shared user : SharedUserSetting{3ad6e806 android.uid.system/1000}
I/PackageManager( 4097): /system/priv-app/SettingsProvider changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecSettingsProvider to /system/priv-app/SettingsProvider
W/PackageManager( 4097): Failed to parse /system/priv-app/SettingsProvider: Signature mismatch for shared user : SharedUserSetting{3ad6e806 android.uid.system/1000}
I/PackageManager( 4097): /system/priv-app/SharedStorageBackup changed; collecting certs
W/PackageManager( 4097): System package com.android.sharedstoragebackup signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.sharedstoragebackup issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/SharedStorageBackup/arm/SharedStorageBackup.odex needs to be relocated for /system/priv-app/SharedStorageBackup/SharedStorageBackup.apk
I/PackageManager( 4097): /system/priv-app/Shell changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/priv-app/Shell: Signature mismatch for shared user : SharedUserSetting{33290791 android.uid.shell/2000}
I/PackageManager( 4097): /system/priv-app/SystemUI changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/priv-app/SystemUI: Signature mismatch for shared user : SharedUserSetting{25c32c82 android.uid.systemui/10058}
I/PackageManager( 4097): /system/priv-app/TeleService changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/priv-app/TeleService: Signature mismatch for shared user : SharedUserSetting{2423ad04 android.uid.phone/1001}
I/PackageManager( 4097): /system/priv-app/Telecom changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/priv-app/Telecom: Signature mismatch for shared user : SharedUserSetting{2423ad04 android.uid.phone/1001}
I/PackageManager( 4097): /system/priv-app/TelephonyProvider changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecTelephonyProvider_Candy to /system/priv-app/TelephonyProvider
W/PackageManager( 4097): Failed to parse /system/priv-app/TelephonyProvider: Signature mismatch for shared user : SharedUserSetting{2423ad04 android.uid.phone/1001}
I/PackageManager( 4097): /system/priv-app/ThemeChooser changed; collecting certs
I/PackageManager( 4097): New shared user org.cyanogenmod.themes: id=10200
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/ThemeChooser/arm/ThemeChooser.odex needs to be relocated for /system/priv-app/ThemeChooser/ThemeChooser.apk
I/PackageManager( 4097): /system/priv-app/ThemesProvider changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/ThemesProvider/arm/ThemesProvider.odex needs to be relocated for /system/priv-app/ThemesProvider/ThemesProvider.apk
I/PackageManager( 4097): /system/priv-app/Trebuchet changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/Trebuchet/arm/Trebuchet.odex needs to be relocated for /system/priv-app/Trebuchet/Trebuchet.apk
W/PackageManager( 4097): Permission com.android.launcher.permission.INSTALL_SHORTCUT from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4097): Permission com.android.launcher.permission.UNINSTALL_SHORTCUT from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4097): Permission com.android.launcher3.permission.READ_SETTINGS from package com.cyanogenmod.trebuchet ignored: no group null
W/PackageManager( 4097): Permission com.android.launcher3.permission.WRITE_SETTINGS from package com.cyanogenmod.trebuchet ignored: no group null
I/PackageManager( 4097): /system/priv-app/VpnDialogs changed; collecting certs
W/PackageManager( 4097): System package com.android.vpndialogs signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.vpndialogs issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/VpnDialogs/arm/VpnDialogs.odex needs to be relocated for /system/priv-app/VpnDialogs/VpnDialogs.apk
I/PackageManager( 4097): /system/priv-app/WallpaperCropper changed; collecting certs
W/PackageManager( 4097): System package com.android.wallpapercropper signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.wallpapercropper issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/priv-app/WallpaperCropper/arm/WallpaperCropper.odex needs to be relocated for /system/priv-app/WallpaperCropper/WallpaperCropper.apk
I/PackageManager( 4097): /system/app/BasicDreams changed; collecting certs
W/PackageManager( 4097): System package com.android.dreams.basic signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.dreams.basic issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/BasicDreams/arm/BasicDreams.odex needs to be relocated for /system/app/BasicDreams/BasicDreams.apk
W/PackageParser( 4097): No actions in intent filter at /system/app/Bluetooth/Bluetooth.apk Binary XML file line #229
I/PackageManager( 4097): /system/app/Bluetooth changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/app/Bluetooth: Signature mismatch for shared user : SharedUserSetting{2d15d9a8 android.uid.bluetooth/1002}
I/PackageManager( 4097): /system/app/Browser changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Browser/arm/Browser.odex needs to be relocated for /system/app/Browser/Browser.apk
W/PackageParser( 4097): No actions in intent filter at /system/app/CMFileManager/CMFileManager.apk Binary XML file line #155
I/PackageManager( 4097): /system/app/CMFileManager changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/CMFileManager/arm/CMFileManager.odex needs to be relocated for /system/app/CMFileManager/CMFileManager.apk
I/PackageManager( 4097): /system/app/CMWallpapers changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/CMWallpapers/arm/CMWallpapers.odex needs to be relocated for /system/app/CMWallpapers/CMWallpapers.apk
I/PackageManager( 4097): /system/app/Calculator changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Calculator/arm/Calculator.odex needs to be relocated for /system/app/Calculator/Calculator.apk
I/PackageManager( 4097): /system/app/Calendar changed; collecting certs
D/wrapperGPS( 3686): wrapperConnect_RILD
W/PackageManager( 4097): Trying to update system app code path from /system/app/SPlanner_OS_UPG to /system/app/Calendar
W/PackageManager( 4097): System package com.android.calendar signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.calendar issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Calendar/arm/Calendar.odex needs to be relocated for /system/app/Calendar/Calendar.apk
W/PackageManager( 4097): Code path for pkg : com.android.calendar changing from /system/app/SPlanner_OS_UPG to /system/app/Calendar
W/PackageManager( 4097): Resource path for pkg : com.android.calendar changing from /system/app/SPlanner_OS_UPG to /system/app/Calendar
I/PackageManager( 4097): /system/app/Camera2 changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Camera2/arm/Camera2.odex needs to be relocated for /system/app/Camera2/Camera2.apk
I/PackageManager( 4097): /system/app/CaptivePortalLogin changed; collecting certs
W/PackageManager( 4097): System package com.android.captiveportallogin signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.captiveportallogin issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/CaptivePortalLogin/arm/CaptivePortalLogin.odex needs to be relocated for /system/app/CaptivePortalLogin/CaptivePortalLogin.apk
I/PackageManager( 4097): /system/app/CertInstaller changed; collecting certs
W/PackageManager( 4097): System package com.android.certinstaller signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.certinstaller issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/CertInstaller/arm/CertInstaller.odex needs to be relocated for /system/app/CertInstaller/CertInstaller.apk
I/PackageManager( 4097): /system/app/DeskClock changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/DeskClock/arm/DeskClock.odex needs to be relocated for /system/app/DeskClock/DeskClock.apk
I/PackageManager( 4097): /system/app/Development changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/app/Development: Signature mismatch for shared user : SharedUserSetting{3ad6e806 android.uid.system/1000}
I/PackageManager( 4097): /system/app/DocumentsUI changed; collecting certs
W/PackageManager( 4097): System package com.android.documentsui signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.documentsui issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/DocumentsUI/arm/DocumentsUI.odex needs to be relocated for /system/app/DocumentsUI/DocumentsUI.apk
I/PackageManager( 4097): /system/app/DownloadProviderUi changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/app/DownloadProviderUi: Signature mismatch for shared user : SharedUserSetting{29a2403 android.media/10047}
I/PackageManager( 4097): /system/app/Eleven changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Eleven/arm/Eleven.odex needs to be relocated for /system/app/Eleven/Eleven.apk
I/PackageManager( 4097): /system/app/Email changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4097): System package com.android.email signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.email issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Email/arm/Email.odex needs to be relocated for /system/app/Email/Email.apk
W/PackageManager( 4097): Code path for pkg : com.android.email changing from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4097): Resource path for pkg : com.android.email changing from /system/app/SecEmail_K to /system/app/Email
W/PackageManager( 4097): Permission com.android.email.permission.READ_ATTACHMENT from package com.android.email ignored: no group null
I/PackageManager( 4097): /system/app/Exchange2 changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/app/SecExchange to /system/app/Exchange2
W/PackageManager( 4097): System package com.android.exchange signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.exchange issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Exchange2/arm/Exchange2.odex needs to be relocated for /system/app/Exchange2/Exchange2.apk
W/PackageManager( 4097): Code path for pkg : com.android.exchange changing from /system/app/SecExchange to /system/app/Exchange2
W/PackageManager( 4097): Resource path for pkg : com.android.exchange changing from /system/app/SecExchange to /system/app/Exchange2
I/PackageManager( 4097): /system/app/Galaxy4 changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Galaxy4/arm/Galaxy4.odex needs to be relocated for /system/app/Galaxy4/Galaxy4.apk
W/PackageParser( 4097): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #273
W/PackageParser( 4097): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #276
I/PackageManager( 4097): /system/app/Gallery2 changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Gallery2/arm/Gallery2.odex needs to be relocated for /system/app/Gallery2/Gallery2.apk
I/PackageManager( 4097): /system/app/HTMLViewer changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/app/SecHTMLViewer to /system/app/HTMLViewer
W/PackageManager( 4097): System package com.android.htmlviewer signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.htmlviewer issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/HTMLViewer/arm/HTMLViewer.odex needs to be relocated for /system/app/HTMLViewer/HTMLViewer.apk
W/PackageManager( 4097): Code path for pkg : com.android.htmlviewer changing from /system/app/SecHTMLViewer to /system/app/HTMLViewer
W/PackageManager( 4097): Resource path for pkg : com.android.htmlviewer changing from /system/app/SecHTMLViewer to /system/app/HTMLViewer
I/PackageManager( 4097): /system/app/HoloSpiralWallpaper changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/HoloSpiralWallpaper/arm/HoloSpiralWallpaper.odex needs to be relocated for /system/app/HoloSpiralWallpaper/HoloSpiralWallpaper.apk
I/PackageManager( 4097): /system/app/InCallUI changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/app/LegacyInCallUI to /system/app/InCallUI
W/PackageManager( 4097): Package com.android.incallui shared user changed from android.uid.phone to com.android.dialer; replacing with new
W/PackageManager( 4097): System package com.android.incallui has changed from uid: 1001 to 10198; old data erased
I/PackageManager( 4097): SELinux relabeling of com.android.incallui issued.
I/PackageManager( 4097): /system/app/KeyChain changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/app/KeyChain: Signature mismatch for shared user : SharedUserSetting{3ad6e806 android.uid.system/1000}
I/PackageManager( 4097): /system/app/LatinIME changed; collecting certs
D/wrapperGPS( 3686): wrapperConnect_RILD
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/LatinIME/arm/LatinIME.odex needs to be relocated for /system/app/LatinIME/LatinIME.apk
I/PackageManager( 4097): /system/app/LiveWallpapers changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/LiveWallpapers/arm/LiveWallpapers.odex needs to be relocated for /system/app/LiveWallpapers/LiveWallpapers.apk
I/PackageManager( 4097): /system/app/LiveWallpapersPicker changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
W/PackageManager( 4097): System package com.android.wallpaper.livepicker signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.wallpaper.livepicker issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/LiveWallpapersPicker/arm/LiveWallpapersPicker.odex needs to be relocated for /system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk
W/PackageManager( 4097): Code path for pkg : com.android.wallpaper.livepicker changing from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
W/PackageManager( 4097): Resource path for pkg : com.android.wallpaper.livepicker changing from /system/priv-app/SecLiveWallpapersPicker to /system/app/LiveWallpapersPicker
I/PackageManager( 4097): /system/app/LockClock changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/LockClock/arm/LockClock.odex needs to be relocated for /system/app/LockClock/LockClock.apk
I/PackageManager( 4097): /system/app/NoiseField changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/NoiseField to /system/app/NoiseField
W/PackageManager( 4097): System package com.android.noisefield signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.noisefield issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/NoiseField/arm/NoiseField.odex needs to be relocated for /system/app/NoiseField/NoiseField.apk
W/PackageManager( 4097): Code path for pkg : com.android.noisefield changing from /system/priv-app/NoiseField to /system/app/NoiseField
W/PackageManager( 4097): Resource path for pkg : com.android.noisefield changing from /system/priv-app/NoiseField to /system/app/NoiseField
I/PackageManager( 4097): /system/app/PacProcessor changed; collecting certs
W/PackageManager( 4097): System package com.android.pacprocessor signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.pacprocessor issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/PacProcessor/arm/PacProcessor.odex needs to be relocated for /system/app/PacProcessor/PacProcessor.apk
I/PackageManager( 4097): /system/app/PackageInstaller changed; collecting certs
W/PackageManager( 4097): System package com.android.packageinstaller signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.packageinstaller issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/PackageInstaller/arm/PackageInstaller.odex needs to be relocated for /system/app/PackageInstaller/PackageInstaller.apk
I/PackageManager( 4097): /system/app/PhaseBeam changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
W/PackageManager( 4097): System package com.android.phasebeam signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.phasebeam issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/PhaseBeam/arm/PhaseBeam.odex needs to be relocated for /system/app/PhaseBeam/PhaseBeam.apk
W/PackageManager( 4097): Code path for pkg : com.android.phasebeam changing from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
W/PackageManager( 4097): Resource path for pkg : com.android.phasebeam changing from /system/priv-app/PhaseBeam to /system/app/PhaseBeam
I/PackageManager( 4097): /system/app/PhotoPhase changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/PhotoPhase/arm/PhotoPhase.odex needs to be relocated for /system/app/PhotoPhase/PhotoPhase.apk
I/PackageManager( 4097): /system/app/PhotoTable changed; collecting certs
W/PackageManager( 4097): System package com.android.dreams.phototable signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.dreams.phototable issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/PhotoTable/arm/PhotoTable.odex needs to be relocated for /system/app/PhotoTable/PhotoTable.apk
I/PackageManager( 4097): /system/app/PicoTts changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/PicoTts/arm/PicoTts.odex needs to be relocated for /system/app/PicoTts/PicoTts.apk
I/PackageManager( 4097): /system/app/PrintSpooler changed; collecting certs
W/PackageManager( 4097): Trying to update system app code path from /system/app/SPrintSpooler to /system/app/PrintSpooler
W/PackageManager( 4097): System package com.android.printspooler signature changed; retaining data.
I/PackageManager( 4097): SELinux relabeling of com.android.printspooler issued.
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/PrintSpooler/arm/PrintSpooler.odex needs to be relocated for /system/app/PrintSpooler/PrintSpooler.apk
W/PackageManager( 4097): Code path for pkg : com.android.printspooler changing from /system/app/SPrintSpooler to /system/app/PrintSpooler
W/PackageManager( 4097): Resource path for pkg : com.android.printspooler changing from /system/app/SPrintSpooler to /system/app/PrintSpooler
I/PackageManager( 4097): /system/app/Provision changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Provision/arm/Provision.odex needs to be relocated for /system/app/Provision/Provision.apk
I/PackageManager( 4097): /system/app/SoundRecorder changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/SoundRecorder/arm/SoundRecorder.odex needs to be relocated for /system/app/SoundRecorder/SoundRecorder.apk
I/PackageManager( 4097): /system/app/Stk changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/app/Stk: Signature mismatch for shared user : SharedUserSetting{2423ad04 android.uid.phone/1001}
I/PackageManager( 4097): /system/app/Terminal changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/Terminal/arm/Terminal.odex needs to be relocated for /system/app/Terminal/Terminal.apk
I/PackageManager( 4097): /system/app/UserDictionaryProvider changed; collecting certs
W/PackageManager( 4097): Failed to parse /system/app/UserDictionaryProvider: Signature mismatch for shared user : SharedUserSetting{40c58fa android.uid.shared/10020}
I/PackageManager( 4097): /system/app/VisualizationWallpapers changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/VisualizationWallpapers/arm/VisualizationWallpapers.odex needs to be relocated for /system/app/VisualizationWallpapers/VisualizationWallpapers.apk
I/PackageManager( 4097): /system/app/WAPPushManager changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/WAPPushManager/arm/WAPPushManager.odex needs to be relocated for /system/app/WAPPushManager/WAPPushManager.apk
I/PackageManager( 4097): /system/app/WhisperPush changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/WhisperPush/arm/WhisperPush.odex needs to be relocated for /system/app/WhisperPush/WhisperPush.apk
W/PackageManager( 4097): Failed to parse /system/app/mcRegistry: Missing base APK in /system/app/mcRegistry
I/PackageManager( 4097): /system/app/webview changed; collecting certs
I/art ( 4097): 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 ( 4097): DexFile_isDexOptNeeded file /system/app/webview/arm/webview.odex needs to be relocated for /system/app/webview/webview.apk
D/PackageManager( 4097): No files in app dir /system/vendor/app
D/PackageManager( 4097): No files in app dir /oem/app
D/PackageManager( 4097): No files in app dir /vendor/bundled-app
W/PackageManager( 4097): System package com.sec.esdk.elm no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.taskmanager no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.sbrowsertry no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.mmapp no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.service.health no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.soundalive no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.chromecustomizations no longer exists; wiping its data
W/PackageManager( 4097): System package com.dsi.ant.server no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.providers.userdictionary no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.FileShareClient no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.apps.tag no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.apps.docs.editors.docs no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.GeoLookout no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.chaton no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.enterprise.knox.cloudmdm.smdms no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.googlequicksearchbox no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.securitylogagent no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.filtermanager no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.easylauncher no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.providers.partnerbookmarks no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.sbrowser no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.RilServiceModeApp no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.app.video no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.scloud.quota no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.FlashBarService no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.nearby.mediaserver no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.play.games no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.emergencylauncher no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.feedback no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.assistantmenu no longer exists; wiping its data
W/PackageManager( 4097): System package flipboard.app no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.sounddetector no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.service.sm no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.dsm.system no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.snsimagecache no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.onetimeinitializer no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.storycam no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.inputdevices no longer exists; wiping its data
W/PackageManager( 4097): System package com.blurb.checkout no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.knox.switcher no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.beaconmanager no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.bluetooth no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.allsharecastplayer no longer exists; wiping its data
W/PackageManager( 4097): System package com.fmm.dm no longer exists; wiping its data
W/PackageManager( 4097): System package com.dsi.ant.service.socket no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.servicemodeapp no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.enterprise.mdm.services.simpin no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.gestureservice no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.easyonehand no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.apps.maps no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.mt no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.MtpApplication no longer exists; wiping its data
W/PackageManager( 4097): System package com.lifevibes.trimapp no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.contacts no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.providers.context no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.phone no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.hearingadjust no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.server.telecom no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.bcservice no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.stub.paywithpaypal no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.sdk.spenv10 no longer exists; wiping its data
W/PackageManager( 4097): System package com.monotype.android.font.rosemary no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.videoplayer no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.provider.emergencymode no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.Kies no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.gm no longer exists; wiping its data
D/wrapperGPS( 3686): wrapperConnect_RILD
W/PackageManager( 4097): System package com.android.systemui no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.nfc no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.knox.shortcutsms no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.safetyassurance no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.providers.calendar no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.providers.downloads no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.gsf no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.factorykeystring no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.colorblind no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.app.RilErrorNotifier no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.scloud.backup no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.youtube no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.sdk.samsunglink no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.location.fused no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.airwakeupview no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.automotive.drivelink no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.scloud.proxy.memo no longer exists; wiping its data
W/PackageManager( 4097): System package com.dropbox.android no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.providers.contacts no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.automation no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.mimage.photoretouching no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.widgetapp.activeapplicationwidget no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.FileShareServer no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.scloud.proxy.calendar no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.setupwizard no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.apps.magazines no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.pcw.device no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.bluetoothtest no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.usbsettings no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.providers.settingsearch no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.provider.shootingmodeprovider no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.mirrorlink no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.mimage.sstudio no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.shareaccessibilitysettings no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.knox.containeragent2 no longer exists; wiping its data
W/PackageManager( 4097): System package com.monotype.android.font.cooljazz no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.wlantest no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.scloud.proxy.contacts no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.configupdater no longer exists; wiping its data
W/PackageManager( 4097): System package com.gd.mobicore.pa no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.knox.bridge no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.magnifier no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.personalpage.service no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.emergencymode.service no longer exists; wiping its data
W/PackageManager( 4097): System package com.dsi.ant.plugins.antplus no longer exists; wiping its data
W/PackageManager( 4097): System package com.wsomacp no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.app.headlines no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.scloud.proxy.snote3 no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.bcocr no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.tourviewer no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.app.samsungprintservice no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.preloadinstaller no longer exists; wiping its data
W/PackageManager( 4097): System package com.infraware.polarisviewer5 no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.billing no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.launcher no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.apps.books no longer exists; wiping its data
W/PackageManager( 4097): System package com.arcsoft.magicshotstudio no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.providers.security no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.clockpackage no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.hwmoduletest no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.service.travel no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.Preconfig no longer exists; wiping its data
W/PackageManager( 4097): System package com.android.stk no longer exists; wiping its data
W/PackageManager( 4097): System package com.google.android.gsf.login no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.diagmonagent no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.app.voicenote no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.provider.badge no longer exists; wiping its data
W/PackageManager( 4097): System package com.samsung.android.sconnect no longer exists; wiping its data
W/PackageManager( 4097): System package com.sec.android.ofviewer no longer exists; wiping its data
I/art ( 4097): DexFile_isDexOptNeeded failed to open oat file '/data/app/org.videolan.vlc-1/arm/base.odex' for file location '/data/app/org.videolan.vlc-1/base.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4097): DexFile_isDexOptNeeded failed to open oat file '/data/dalvik-cache/arm/data@[email protected]@[email protected]' for file location '/data/app/org.videolan.vlc-1/base.apk': Failed to open oat filename for reading: No such file or directory
I/art ( 4097): DexFile_isDexOptNeeded failed to open oat file '/data/app/org.videolan.vlc-1/arm/base.odex' for file location '/data/app/org.videolan.vlc-1/base.apk': Failed to open oat filename for reading: No such file or directory
D/PackageManager( 4097): No files in app dir /data/app-private
W/PackageManager( 4097): Updated system app + com.android.vending no longer present; removing system privileges for com.android.vending
W/PackageManager( 4097): Updated system app + com.google.android.gms no longer present; removing system privileges for com.google.android.gms
W/PackageManager( 4097): Package com.android.gallery3d desires unavailable shared library com.google.android.media.effects; ignoring!
W/PackageManager( 4097): Package com.android.gallery3d desires unavailable shared library com.google.android.media.effects; ignoring!
E/PackageManager( 4097): updateAllSharedLibrariesLPw failed: Package com.android.dialer requires unavailable shared library com.qualcomm.qti.smartsearch; failing!
W/PackageManager( 4097): Package com.android.calculator2 desires unavailable shared library com.sec.android.app.multiwindow; ignoring!
W/PackageManager( 4097): Package com.google.android.gms desires unavailable shared library com.google.android.ble; ignoring!
W/PackageManager( 4097): Package com.speedsoftware.rootexplorer desires unavailable shared library com.sec.android.app.multiwindow; ignoring!
W/PackageManager( 4097): Package com.android.mms desires unavailable shared library com.qrd.wappush; ignoring!
I/PackageManager( 4097): Time to scan packages: 9.229 seconds
W/PackageManager( 4097): Removing dangling permission tree: com.google.android.googleapps.permission.GOOGLE_AUTH from package com.google.android.gsf
W/PackageManager( 4097): Removing dangling permission: com.sec.android.app.camera.permission.SHOOTING_MODE from package com.sec.android.app.camera
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.internal.headlines.permission.BROADCAST from package com.samsung.android.app.headlines
W/PackageManager( 4097): Removing dangling permission: com.sec.pcw.device.contentprovider.permission.WRITE from package com.sec.pcw.device
W/PackageManager( 4097): Removing dangling permission: android.permission.GET_PACKAGE_SIZE from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.android.phone.permission.AT_COMMAND from package com.android.phone
W/PackageManager( 4097): Removing dangling permission: android.permission.GET_ACCOUNTS from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.chaton.push.BROADCAST_PUSH_MESSAGE from package com.sec.chaton
W/PackageManager( 4097): Removing dangling permission: android.permission.sec.MDM_EXCHANGE from package android
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.magazine.permission.WRITE_CARD_PROVIDER from package com.samsung.android.app.headlines
W/PackageManager( 4097): Removing dangling permission: android.permission.LOCATION_HARDWARE from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.BLUETOOTH_ADMIN from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.android.mmap.broastcasting.permission from package com.sec.android.mmapp
W/PackageManager( 4097): Removing dangling permission: com.sec.android.app.controlpanel.permission.GET_INTENT_ACTION_AFTER_FORCESTOP from package com.sec.android.widgetapp.activeapplicationwidget
W/PackageManager( 4097): Removing dangling permission: com.sec.android.app.snsimagecache.permission.WRITE_SNSIMAGECACHE_DB from package com.sec.android.app.snsimagecache
W/PackageManager( 4097): Removing dangling permission: com.sec.restriction.permission.MTP_DISABLED from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.MANAGE_MEDIA_PROJECTION from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.knox.admin.permission.ACTION_MANAGE_SHORTCUT from package com.sec.knox.knoxsetupwizardclient
W/PackageManager( 4097): Removing dangling permission: android.permission.READ_SYNC_SETTINGS from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.android.daemonapp.ap.yahoostock.stockclock.permission.YAHOO_DAEMON_ACCESS_PROVIDER from package com.sec.android.daemonapp
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.WRITE_CAPTURE_CONTENT from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: com.sec.android.app.snsimagecache.permission.REQUEST_IMAGE from package com.sec.android.app.snsimagecache
W/PackageManager( 4097): Removing dangling permission: com.diagmondm.permission.WSSDM from package com.sec.android.diagmonagent
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.READ_USE_WIFI from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.READ_PROFILE from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: com.sec.android.fotaclient.permission.C2D_MESSAGE from package com.sec.android.fotaclient
W/PackageManager( 4097): Removing dangling permission: com.sec.factory.permission.KEYSTRING from package com.sec.factory
W/PackageManager( 4097): Removing dangling permission: android.permission.ACCESS_BLUETOOTH_SHARE from package com.android.bluetooth
W/PackageManager( 4097): Removing dangling permission: android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS from package com.android.providers.downloads
W/PackageManager( 4097): Removing dangling permission: com.skt.prod.permission.PHONE_SERVICE from package com.android.phone
W/PackageManager( 4097): Removing dangling permission: android.permission.MANAGE_USB from package android
W/PackageManager( 4097): Removing dangling permission: com.google.android.apps.now.OPT_IN_WIZARD from package com.google.android.googlequicksearchbox
W/PackageManager( 4097): Removing dangling permission: android.permission.READ_USER_DICTIONARY from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.android.app.voicenote.service.RECORDER_PERMISSION from package com.sec.android.app.voicenote
W/PackageManager( 4097): Removing dangling permission: android.permission.HARDWARE_TEST from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.ACCESS_KEYGUARD_SECURE_STORAGE from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.FILTER_EVENTS from package android
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.READ_BROWSE_WEB from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: com.google.android.gm.email.permission.READ_ATTACHMENT from package com.google.android.gm
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.WRITE_USE_APP from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: android.permission.CAPTURE_TV_INPUT from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.SUBSCRIBED_FEEDS_READ from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.android.app.voicenote.Controller from package com.sec.android.app.voicenote
W/PackageManager( 4097): Removing dangling permission: android.permission.CHANGE_BACKGROUND_DATA_SETTING from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.SET_POINTER_SPEED from package android
W/PackageManager( 4097): Removing dangling permission: com.google.android.launcher.permission.READ_SETTINGS from package com.google.android.googlequicksearchbox
W/PackageManager( 4097): Removing dangling permission: com.sec.enterprise.knox.permission.CUSTOM_RUBENS_FEATURES from package android
W/PackageManager( 4097): Removing dangling permission: com.coolots.chatonv.permission.provider.LIVE_SHARE from package com.sec.chaton
W/PackageManager( 4097): Removing dangling permission: com.samsung.helphub.permission.WRITE_DATA from package com.samsung.helphub
W/PackageManager( 4097): Removing dangling permission: com.android.launcher.permission.UNINSTALL_SHORTCUT from package android
W/PackageManager( 4097): Removing dangling permission: com.google.android.apps.maps.permission.PREFETCH from package com.google.android.apps.maps
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.READ_MOVE_PLACE from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: com.samsung.index.SEARCH.READ from package com.samsung.indexservice
W/PackageManager( 4097): Removing dangling permission: android.permission.BROADCAST_PACKAGE_REMOVED from package android
W/PackageManager( 4097): Removing dangling permission: com.google.android.gm.permission.READ_CONTENT_PROVIDER from package com.google.android.gm
W/PackageManager( 4097): Removing dangling permission: android.permission.BIND_DEVICE_ADMIN from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.android.videowall.permission.WRITE from package com.sec.android.app.videoplayer
W/PackageManager( 4097): Removing dangling permission: com.sec.factory.permission.ALLOWFTCLIENTCPOBIND from package com.sec.factory
W/PackageManager( 4097): Removing dangling permission: android.permission.CHANGE_WIFI_MULTICAST_STATE from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.sec.MDM_PHONE_RESTRICTION from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.knox.permission.KEYGUARD_SERVICE from package com.sec.knox.containeragent2
W/PackageManager( 4097): Removing dangling permission: android.permission.REMOVE_TASKS from package android
W/PackageManager( 4097): Removing dangling permission: provider.settingsearch.permission.WRITE from package com.sec.providers.settingsearch
W/PackageManager( 4097): Removing dangling permission: android.permission.RECOVERY from package android
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.WRITE_TRACK_ROAMING from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: android.permission.sec.MDM_INVENTORY from package android
W/PackageManager( 4097): Removing dangling permission: com.google.android.googleapps.permission.GOOGLE_AUTH.sierraqa from package com.google.android.gsf
W/PackageManager( 4097): Removing dangling permission: com.google.android.googleapps.permission.GOOGLE_AUTH.notebook from package com.google.android.gsf
W/PackageManager( 4097): Removing dangling permission: com.samsung.permission.SBEAM_SETTINGS from package com.android.settings
W/PackageManager( 4097): Removing dangling permission: tv.peel.samsung.app.REMOTE_CONTROL from package tv.peel.smartremote
W/PackageManager( 4097): Removing dangling permission: com.google.android.gsf.permission.C2D_MESSAGE from package com.google.android.gsf
W/PackageManager( 4097): Removing dangling permission: android.permission.WRITE_CALENDAR from package android
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.sconnect.permission.START_BLE_PROXY from package com.samsung.android.sconnect
W/PackageManager( 4097): Removing dangling permission: com.sec.enterprise.knox.permission.KNOX_CCM from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.CAPTURE_AUDIO_HOTWORD from package android
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.magazine.permission.READ_CARD_PROVIDER from package com.samsung.android.app.headlines
W/PackageManager( 4097): Removing dangling permission: com.sec.android.kies.calllog.BROADCAST_DETECT from package com.sec.android.provider.logsprovider
W/PackageManager( 4097): Removing dangling permission: com.google.android.googleapps.permission.GOOGLE_AUTH.mail from package com.google.android.gsf
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.READ_EXCHANGE_MESSAGE from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: com.google.android.permission.BROADCAST_DATA_MESSAGE from package com.google.android.gsf
W/PackageManager( 4097): Removing dangling permission: com.sec.android.settings.myplace.permission.READ_DATA from package com.android.settings
W/PackageManager( 4097): Removing dangling permission: android.permission.CONTROL_LOCATION_UPDATES from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.RECEIVE_EMERGENCY_BROADCAST from package android
W/PackageManager( 4097): Removing dangling permission: com.wssyncmldm.permission.WSSDM from package com.wssyncmldm
W/PackageManager( 4097): Removing dangling permission: android.permission.MANAGE_APP_TOKENS from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.SET_SCREEN_COMPATIBILITY from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.WRITE_SYNC_SETTINGS from package android
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.permission.LOCK_TASK_MODE from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.enterprise.knox.KNOX_GENERIC_VPN from package android
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.providers.context.permission.READ_EXCHANGE_CALL from package com.samsung.android.providers.context
W/PackageManager( 4097): Removing dangling permission: com.wssnps.permission.COM_WSSNPS from package com.sec.android.app.wallpaperchooser
W/PackageManager( 4097): Removing dangling permission: com.sec.android.soagent.permission.READ_DATABASES from package com.sec.android.soagent
W/PackageManager( 4097): Removing dangling permission: com.samsung.android.permission.WRITE_PASSWORD_FINGERPRINT from package com.samsung.android.fingerprint.service
W/PackageManager( 4097): Removing dangling permission: android.permission.INJECT_EVENTS from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.bcservice.permission.BCSERVICE from package com.sec.bcservice
W/PackageManager( 4097): Removing dangling permission: android.permission.AUTHENTICATE_ACCOUNTS from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.BIND_INCALL_SERVICE from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.enterprise.knox.cloudmdm.smdms.permission.C2D_MESSAGE from package com.sec.enterprise.knox.cloudmdm.smdms
W/PackageManager( 4097): Removing dangling permission: android.permission.sec.MDM_APP_MGMT from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.sec.MDM_CERTIFICATE from package android
W/PackageManager( 4097): Removing dangling permission: com.sec.android.app.sns3.permission.RECEIVE_SNS_BROADCAST from package com.sec.android.app.sns3
W/PackageManager( 4097): Removing dangling permission: android.permission.SET_ANIMATION_SCALE from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.WRITE_EXTERNAL_STORAGE from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.READ_NETWORK_USAGE_HISTORY from package android
W/PackageManager( 4097): Removing dangling permission: com.google.googlenav.friend.permission.OPT_IN from package com.google.android.apps.maps
W/PackageManager( 4097): Removing dangling permission: android.permission.BIND_PRINT_SERVICE from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.BLUETOOTH from package android
W/PackageManager( 4097): Removing dangling permission: android.permission.ASEC_MOUNT_UNMOUNT from package android
W/PackageManager( 4097): Removing dangling permission: com.google.android.gallery3d.permission.GALLERY_PROVIDER from package com.google.android.apps.plus