-
Notifications
You must be signed in to change notification settings - Fork 841
/
Copy pathuad_lists.json
21602 lines (21602 loc) · 805 KB
/
uad_lists.json
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
[
{
"id": "com.sony.tvsideview.videoph",
"list": "Oem",
"description": "Video & TV SideView (replaced by https://play.google.com/store/apps/details?id=com.sony.tvsideview.phone)\nLets you use your smartphone or tablet as a TV remote control for the home. \n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonyericsson.android.addoncamera.artfilter",
"list": "Oem",
"description": "Sony Creative effect\nGives options for various photographic toning effects in the Sony camera app.\nI'm not 100% sure for this one. Can someone confirm ? \n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonyericsson.android.omacp",
"list": "Oem",
"description": "omacp = OMA Client Provisioning. It is a protocol specified by the Open Mobile Alliance (OMA).\nIt is used by carrier to send \"configuration SMS\" which can setup network settings (such as APN).\nIn my case, it was automatic and I never needed configuration messages. I'm pretty sure that in France this package is useless.\nMaybe it's useful if carriers change their APN... but you still can change it manually, it's not difficult.\nThese special \"configuration SMS\" can be abused : \nhttps://www.zdnet.fr/actualites/les-smartphones-samsung-huawei-lg-et-sony-vulnerables-a-des-attaques-par-provisioning-39890045.htm\nhttps://www.csoonline.com/article/3435729/sms-based-provisioning-messages-enable-advanced-phishing-on-android-phones.html\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonyericsson.conversations.res.overlay",
"list": "Oem",
"description": "Used to display a overlay notification (= on top of others app) when you receive a SMS with Sony SMS app ?\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonyericsson.idd.agent",
"list": "Oem",
"description": "Anonymous Usage Stats\nUsed to send \"anonymous\" information about how you use your Sony Smartphone to Sony servers.\nNobody knows how these info are anonymized...\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonyericsson.mtp",
"list": "Oem",
"description": "MTP extension service\nNeeded to transfer data from phone to PC through MTP? (Media Transfer Protocol)",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Expert"
},
{
"id": "com.sonyericsson.mtp.extension.backuprestore",
"list": "Oem",
"description": "Backup/Restore Sony feature.\nEnables you to backup contacts, call logs, text messages, calendar, settings, bookmarks & media files.\nNOTE: I don't think this feature can backup your messages or calendars for instance if you don't use the Sony stock app.\nhttps://support.sonymobile.com/global-en/xperiaz2/userguide/backing-up-and-restoring-content-on-a-device/",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonyericsson.mtp.extension.update",
"list": "Oem",
"description": "Update service for MTP Extension.\nUpdates something for the MTP extension?",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Expert"
},
{
"id": "com.sonyericsson.music",
"list": "Oem",
"description": "Sony music player (https://play.google.com/store/apps/details?id=com.sonyericsson.music)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonyericsson.settings.res.overlay_305",
"list": "Oem",
"description": "Some overlay for settings? Overlays are usually themes.",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Expert"
},
{
"id": "com.sonyericsson.startupflagservice",
"list": "Oem",
"description": "Startup Flag Service\nUsed during the production of the phone to verify that the touch input works. \nIt can be triggered when a specific TA-parameter is not set. This should never be triggered and if it does well it doesn't have any use for you.\n\nTA means Timing Advance and its value correspond to the length of time a signal takes to reach the base station from a mobile phone.\nhttps://www.telecomhall.net/t/parameter-timing-advance-ta/6390\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonyericsson.textinput.chinese",
"list": "Oem",
"description": "Sony chinese keyboard\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonyericsson.trackid.res.overlay_305",
"list": "Oem",
"description": "Overlay for TrackID. Overlays are usually themes.\nTrackID was(now discontinued) a music and audio search engine (like Shazam).",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Expert"
},
{
"id": "com.sonyericsson.trackid.res.overlay",
"list": "Oem",
"description": "Some overlay for TrackID. Overlays are usually themes.\nTrackID was(now discontinued) a music and audio search engine (like Shazam).",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Expert"
},
{
"id": "com.sonyericsson.unsupportedheadsetnotifier",
"list": "Oem",
"description": "Given its name, I think it diplays a notification when you insert a headset not compatible with your phone.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonyericsson.wappush",
"list": "Oem",
"description": "WAP Push\nUsed to display annoying WAP push.\nWAP push is a type of text message that contains a direct link to a particular Web page. \nWhen a user is sent a WAP-push message, he receives an alert, once clicked, directs him to the Web page via his browser.\nPersonally, I don't like this. URLs are now recognized by the SMS instant messaging apps and you just have to click on it.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonyericsson.xhs",
"list": "Oem",
"description": "Sony Xperia Lounge (discontinued by Sony on August 2019)\nThe Xperia Lounge app was meant to provide loyal fans with various rewards for their Xperia smartphones, \nsuch as exclusive Xperia Themes and wallpapers, as well as competitions.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.advancedlogging",
"list": "Oem",
"description": "Advanced Logging\nSends logs to Sony Mobile. These logs contain a wide range of personal information such as unique device IDs, your location, \ndetails regarding running applications, and events/input leading up to a crash.\nLogging is only active for a short time and automatically disabled once logging has been completed. \nLogs are uploaded when connected to Wi-Fi and automatically deleted when the upload is complete.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.advancedwidget.topcontacts",
"list": "Oem",
"description": "Top Contacts widget\nIt will show pictures of your most frequently used contacts right on your home screen.\nREMINDER : Widgets are small applications that you can use directly on the window screen. They also function as shortcuts\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.android.addoncamera.soundphoto",
"list": "Oem",
"description": "Sony Sound Photo\nLets you record a background sound and take a photo at the same time with the Sound Photo app.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.androidapp.cameraaddon.areffect",
"list": "Oem",
"description": "Old package for AR Effect (https://play.google.com/store/apps/details?id=com.sonymobile.androidapp.cameraaddon.areffect)\nLets you add AR (Augmented Reality) effects to your pictures and videos.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.android.externalkeyboard",
"list": "Oem",
"description": "International keyboard layouts\nUseless if you use a latin keyboard\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonymobile.android.contacts.res.overlay_305",
"list": "Oem",
"description": "Overlay for Sony contacts. Overlays are usually themes.",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Expert"
},
{
"id": "com.sonymobile.android.externalkeyboardjp",
"list": "Oem",
"description": "Japanese layout for Sony keyboard.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonymobile.anondata",
"list": "Oem",
"description": "Anonymous Usage Stats (yes just as com.sonyericsson.idd.agent but it's for other phones)\nUsed to send \"anonymous\" information about how you use your Sony Smartphone to Sony servers.\nNobody knows how these info are anonymized...\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.apnupdater",
"list": "Oem",
"description": "Automatically updates APN settings if your carrier changes them? I thought that was the role of com.android.carrierconfig\nAPN: https://tamingthedroid.com/what-apn-settings-mean",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonymobile.apnupdater.res.overlay_305",
"list": "Oem",
"description": "Overlay for APN Updater. Overlays are usually themes.",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Expert"
},
{
"id": "com.sonymobile.aptx.notifier",
"list": "Oem",
"description": "Aptx Notifier\naptX (formerly apt-X) is a family of proprietary audio codec compression algorithms owned by Qualcomm.\nIf you don't mind closed source codec, aptX has lower latency and is less of a drain on your battery than default codec (AAC)\nThis package is used to display a notification when a device using aptX (bluetooth headphone typically) is connected.\nIts only use is to tell you that you use aptX bluetooth with the connected device.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonymobile.assist",
"list": "Oem",
"description": "Xperia Assist (https://play.google.com/store/apps/details?id=com.sonymobile.assist)\nLearns how you use your phone.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.assist.persistent",
"list": "Oem",
"description": "Related to Xperia Assist (see just above) but I don't know its purpose.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.cameracommon.wearablebridge",
"list": "Oem",
"description": "Camera Wearable bridge\nLets you take pictures with your phone by using Sony SmartWatch.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.cellbroadcast.notification",
"list": "Oem",
"description": "Cell information\nCell broadcast is designed to deliver messages to multiple users in an area.\nThis is notably used by ISP to send Emergency/Government alerts.\nhttps://en.wikipedia.org/wiki/Cell_Broadcast\nhttps://www.androidcentral.com/amber-alerts-and-android-what-you-need-know\nI think this package only handles notifications for broadcasts, not the implementation.\nIt seems like broadcast SMS use normal notifications so there is a chance this package provides special notification for Sony SMS app?",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonymobile.coverapp2",
"list": "Oem",
"description": "Style Cover\nThemes for lockscreen.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.demoappchecker",
"list": "Oem",
"description": "Demo app checker\nLets you enter/exit (in) the demonstration mode.\nhttps://en.wikipedia.org/wiki/Demo_mode\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.deviceconfigtool",
"list": "Oem",
"description": "Configuration agent\nSeems to do things cloud related but it's unclear.\nhttps://knowledge.protektoid.com/apps/com.sonymobile.deviceconfigtool/91e44f1e19b364411776d758ff3b27f703bd4b60c9399c43c124f37d0c30df27\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.dualshockmanager",
"list": "Oem",
"description": "DUALSHOCK\nProvide PlayStation DualShock controller support for Android (Settings > Device connection > Dualshock)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.email",
"list": "Oem",
"description": "Sony Email app\nThere are better one (and FOSS)",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.entrance",
"list": "Oem",
"description": "What's New (discontinued in 2014)\nProvided news from Sony products through extremely annoying automated notifications.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.getmore.client",
"list": "Oem",
"description": "Xperia Tips (https://play.google.com/store/apps/details?id=com.sonymobile.getmore.client)\nGives you tips for your Xperia device.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.getset",
"list": "Oem",
"description": "Xperia Actions (discontinued)\nLets you automate some actions (only a few) \nhttps://support.sonymobile.com/global-en/xperiaxz/userguide/xperia-actions/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.getset.priv",
"list": "Oem",
"description": "Xperia Actions System\nSame thing as com.sonymobile.getset.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.gettoknowit",
"list": "Oem",
"description": "Introduction to Xperia (discontinued)\nIntroduces you the features of your phone.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.glovemode",
"list": "Oem",
"description": "Sony Glove mode\nLets you use your smart phone and touch the screen while wearing regular gloves.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.googleanalyticsproxy",
"list": "Oem",
"description": "Google Analytics Proxy\nAllows you to publicly share your Google Analytics reporting data\nhttps://developers.google.com/analytics/solutions/google-analytics-super-proxy\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.intelligent.backlight",
"list": "Oem",
"description": "Smart backlight control\nKeeps the screen on as long as the device is held in your hand. Once you put down the device, the screen turns off according to your sleep setting.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.indeviceintelligence",
"list": "Oem",
"description": "Xperia Intelligence Engine\nThis app is supposed to understand how you use the phone, the apps you prefer, and will suggest tips \nand options based on app usage, how often you use an app, what time of day...\nFor me this just looks like a AI bullshit app who has a huge list of permissions and launch in background at boot\nThis app performs geofencing (check if your are located in a certain perimeter, near your home for instance) \nand this doesn't looks great privacy-wise (https://en.wikipedia.org/wiki/Geo-fence)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.intelligent.gesture",
"list": "Oem",
"description": "Smart call handling\nLets you handle incoming calls without touching the screen.\nhttps://support.sonymobile.com/global-en/xperiaxz/userguide/smart-call-handling/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.intelligent.iengine",
"list": "Oem",
"description": "According to a sony user it is part of Smart Screen rotation (auto screen rotation based on the gyroscope).\nSeems not reliable.\nDoes it break the screen-rotation if removed?\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.intelligent.observer",
"list": "Oem",
"description": "IntelligentObserver\n???? (but intelligent stuff are safe to remove)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.lifelog",
"list": "Oem",
"description": "Lifelog (https://play.google.com/store/apps/details?id=com.sonymobile.lifelog)\nAnother activity tracker app.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.moviecreator.rmm",
"list": "Oem",
"description": "Movie Creator (https://play.google.com/store/apps/details?id=com.sonymobile.moviecreator.rmm)\nAutomatically creates short movies using your photos and videos.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.mtp.extension.fotaupdate",
"list": "Oem",
"description": "fota update service\nFOTA = Firmware Over-The-Air\nFOTA allows manufacturers to remotely install new software updates, features and services.\nGiven there is \"mtp.extension\" in the package name, I think it lets you update your phone via your PC.\nWhat's weird is that it should be called SEUS then (https://www.mobilefun.co.uk/blog/2008/06/software-updates-sony-ericsson/)",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonymobile.music.googlelyricsplugin",
"list": "Oem",
"description": "Google lyrics plugin\nProvides lycris from Google in the sony music app\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.music.wikipediaplugin",
"list": "Oem",
"description": "Wikipedia plugin for sony music app\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.music.youtubekaraokeplugin",
"list": "Oem",
"description": "YouTube karaoke plugin for sony music app\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.music.youtubeplugin",
"list": "Oem",
"description": "YouTube plugin for sony music app\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.pip",
"list": "Oem",
"description": "Sony pip (Picture in Picture)\nAllows videos to shrink down to a small resizable window.\nOnly useful bere Android Oreo which provide native support for Pip ?\nhttps://developer.android.com/guide/topics/ui/picture-in-picture\nhttps://support.sonymobile.com/global-en/xperiaxz1compact/faq/apps-&-settings/8019307455ff6184015e92f63324005926/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.pobox",
"list": "Oem",
"description": "Xperia Japanese keyboard\nDoes someone know what \"popox\" means ? \n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.prediction",
"list": "Oem",
"description": "Sony text prediction (for Sony keyboard) \nIt's only a supposition. Can someone confirm ?\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.retaildemo",
"list": "Oem",
"description": "Retail Demo\nRetail demonstration mode.\nhttps://en.wikipedia.org/wiki/Demo_mode\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.scan3d",
"list": "Oem",
"description": "Sony 3D Creator (https://play.google.com/store/apps/details?id=com.sonymobile.scan3d)\nLets you capture your stuff in 3D, from your smartphone, and turn people and objects into high-resolution 3D avatars.\nhttps://www.sonymobile.com/global-en/apps-services/3d-creator/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.simlockunlockapp",
"list": "Oem",
"description": "Sim Lock\nProvide menu (type *#*#7378423#*#* in dialer) to see if your device is locked to a network carrier\nIt need confirmation because it also could be related to SIM network unlock code.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.smartcharger",
"list": "Oem",
"description": "Battery Care\nDetects your charging patterns and estimates the start and end time of your regular charging period. \nThe rate of charging is controlled so that your battery reaches 100% just before you disconnect the charger.\nhttps://support.sonymobile.com/gb/xperiaxz/userguide/battery-and-power-management/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.support",
"list": "Oem",
"description": "Sony Support (https://play.google.com/store/apps/details?id=com.sonymobile.support)\nUseless support app. \n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.synchub",
"list": "Oem",
"description": "Sony Backup & restore feature to/from Google drive ?\nCan someone confirm ? Does it impact com.sonyericsson.mtp.extension.backuprestore ?\nhttps://support.sonymobile.com/global-en/xperia10/faq/apps-&-settings/801930747866b72a016b307df3b6007faf/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.themes.xperialoops2",
"list": "Oem",
"description": "Sony themes",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Expert"
},
{
"id": "com.sonymobile.xperialounge.services",
"list": "Oem",
"description": "Xperia™ Lounge Pass service (discontinued)\nThe Xperia Lounge app was meant to provide loyal fans with various rewards for their Xperia smartphones, \nsuch as exclusive Xperia Themes and wallpapers, as well as competitions.\nhttps://www.phonearena.com/news/Sony-Xperia-Lounge-shutting-down_id118252\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.xperiaxlivewallpaper.product.res.overlay",
"list": "Oem",
"description": "Some overlay for a live wallaper from Sony? Overlays are usually themes, but not sure about this one as theming seems weird for live wallpapers. Could be that Sony automatically generates theme packages for all or most system apps, which might generate some unnecessary packages.",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonymobile.xperiaservices",
"list": "Oem",
"description": "Xperia services\nI guess it provides things for Sony apps but I don't know what.\nSafe to remove but it would good be to know what Sony apps work without it.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.xperiatransfermobile",
"list": "Oem",
"description": "Xperia Transfer Mobile (https://play.google.com/store/apps/details?id=com.sonymobile.xperiatransfermobile)\nHelps you move your contacts, messages, photos, and much more from your old Android, iOS or Windows Phone device to your new Xperia from Sony.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonymobile.xperiaweather",
"list": "Oem",
"description": "Sony weather app (https://play.google.com/store/apps/details?id=com.sonymobile.xperiaweather)\nNote : Not all location are supported.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.sonyericsson.album",
"list": "Oem",
"description": "Sony gallery app (https://play.google.com/store/apps/details?id=com.sonyericsson.album)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonymobile.camera",
"list": "Oem",
"description": "Sony camera app\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonyericsson.android.camera3d",
"list": "Oem",
"description": "Sony camera app (on older phones)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.sonymobile.android.contacts",
"list": "Oem",
"description": "Sony contacts\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.mobitv.client.tmobiletvhd",
"list": "Carrier",
"description": "T-Mobile TV (discontinued, replaced by nl.tmobiletv.vinson) provided by mobitv (https://en.wikipedia.org/wiki/MobiTV)\nhttps://play.google.com/store/apps/details?id=nl.tmobiletv.vinson&hl=en\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.tmobile.pr.adapt",
"list": "Carrier",
"description": "Diagnostic tool. \nThis app can see all your installed apps, that you have allowed unknown sources on, that your rooted, \nand will deny your warranty saying your rooted. It constantly runs in the background.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.tmobile.pr.mytmobile",
"list": "Carrier",
"description": "T-mobile app (https://play.google.com/store/apps/details?id=com.tmobile.pr.mytmobile)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.tmobile.services.nameid",
"list": "Carrier",
"description": "Name ID T-Mobile (powered by Hiya or cequint if on Samsung devices)\nNOTE : Never trust a company which promotes call ID/spam blocking features.\nhttps://techcrunch.com/2019/08/09/many-robocall-blocking-apps-send-your-private-data-without-permission/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.tmobile.simlock",
"list": "Carrier",
"description": "Device Unlock.\nAllows you to request and apply a mobile device unlock directly from the device.\nhttps://support.t-mobile.com/docs/DOC-14011\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.tmobile.vvm.application",
"list": "Carrier",
"description": "T-Mobile Visual VoiceMail (https://play.google.com/store/apps/details?id=com.tmobile.vvm.application)\nLets you use your voice mail and manage your inbox without dialing into your voicemail. \n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.whitepages.nameid.tmobile",
"list": "Carrier",
"description": "T-mobile NAME ID by WhitePages (https://www.whitepages.com/)\nDiscontinued. Replaced by com.tmobile.services.nameid\nhttps://www.fiercewireless.com/wireless/t-mobile-to-offer-name-id-service-from-whitepages\nhttps://www.geekwire.com/2016/whitepages-spins-caller-id-spam-blocking-app-startup-hiya/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "us.com.dt.iq.appsource.tmobile",
"list": "Carrier",
"description": "App Source (discontinued)\nThis app aimed at organizing all of your existing apps on the phone by category and helping you discover \nnew apps through search and recommendations.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.asurion.android.verizon.vms",
"list": "Carrier",
"description": "Verizon Digital Secure (https://play.google.com/store/apps/details?id=com.asurion.android.verizon.vms)\nNote : This app is developped by Asurion, a US company whose business is to sell insurances.\nAll US carriers use Asurion for the phone insurances.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.customermobile.preload.vzw",
"list": "Carrier",
"description": "Verizon Store/Retail Demo Mode\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.LogiaGroup.LogiaDeck",
"list": "Carrier",
"description": "Mobile Services Manager\nSeems to be a spyware. \nGood explainantion from someone who worked for carrier : \nhttps://www.reddit.com/r/lgv20/comments/6u0wnf/what_is_mobile_services_manager_did_i_catch_a/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.motricity.verizon.ssodownloadable",
"list": "Carrier",
"description": "Verizon Login by Motricity (now Voltari)\nVoltari provides relevance-driven mobile advertising, mobile marketing, mobile merchandising, and predictive analytics solutions.\nNeeded for My Verizon.\nhttps://en.wikipedia.org/wiki/Voltari\nhttps://www.lightreading.com/motricity-holds-on-to-verizon-account/d/d-id/678478?\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.securityandprivacy.android.verizon.vms",
"list": "Carrier",
"description": "Digital Secure (https://play.google.com/store/apps/details?id=com.securityandprivacy.android.verizon.vms&hl=en)\nI don't know why this apps is released twice on the Play store under 2 different package name.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.telecomsys.directedsms.android.SCG",
"list": "Carrier",
"description": "Verizon Location Agent\nLocation tracking (does not impact GPS function if deleted, don't worry)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.vcast.mediamanager",
"list": "Carrier",
"description": "Verizon Cloud (https://play.google.com/store/apps/details?id=com.vcast.mediamanager)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.verizon.llkagent",
"list": "Carrier",
"description": "Used for Verizon store demo mode.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.verizon.loginengine.unbranded",
"list": "Carrier",
"description": "Carrier Login Engine\nNeeded for wifi-calling. (To be confirmed)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.verizon.messaging.vzmsgs",
"list": "Carrier",
"description": "Verizon Messages (https://play.google.com/store/apps/details?id=com.verizon.messaging.vzmsgs)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.verizon.mips.services",
"list": "Carrier",
"description": "My Verizon Services \nRelated to My Verizon app.\nRequired for hotspot",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.verizon.obdm_permissions",
"list": "Carrier",
"description": "D-MAT.\nHas a LOT of permissions! (https://knowledge.protektoid.com/apps/com.verizon.obdm/d48680955d8d58bade2e6620ccb1e30b9bf23cb8e50055e10de3466da558c0ee)\nDMAT Account ? It is used to hold shares and securities in dematerialised/electronic format.\nSeems weird that Verizon provide this so it's likely not this.\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.verizon.permissions.vzwappapn",
"list": "Carrier",
"description": "Custom permissions used to set Verizon APN?\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.verizon.vzwavs",
"list": "Carrier",
"description": "Has a scary list of permissions. Does seems to break anything if removed\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.verizontelematics.verizonhum",
"list": "Carrier",
"description": "Hum Family Locator (https://play.google.com/store/apps/details?id=com.verizontelematics.verizonhum)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.vznavigator.Generic",
"list": "Carrier",
"description": "VZ Navigator (GPS app) (https://play.google.com/store/apps/details?id=com.vznavigator.Generic)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.vzw.apnlib",
"list": "Carrier",
"description": "Kind of library for Verizon APN ?\nREMINDER : https://developer.android.com/reference/android/telephony/data/ApnSetting\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.vzw.apnservice",
"list": "Carrier",
"description": "APN Services.\nREMINDER : https://developer.android.com/reference/android/telephony/data/ApnSetting\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.vzw.hss.myverizon",
"list": "Carrier",
"description": "Verizon Call Filter (https://play.google.com/store/apps/details?id=com.vzw.ecid)\nNOTE : Never trust a company which promotes call ID/spam blocking features.\n \nMy Verizon (https://play.google.com/store/apps/details?id=com.vzw.hss.myverizon)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.vzw.hss.widgets.infozone.large",
"list": "Carrier",
"description": "My InfoZone Widget\nGives weekly tips, access to device info and account information.\nhttps://www.droid-life.com/2013/02/12/verizon-introduces-my-infozone-widget-allows-easy-access-to-tips-device-info-and-account-information/\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.vzw.qualitydatalog",
"list": "Carrier",
"description": "Logging stuff\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.motorola.vzw.mot5gmod",
"list": "Carrier",
"description": "5G Moto Mod (https://play.google.com/store/apps/details?id=com.motorola.mot5gmod)\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.motorola.vzw.phone.extensions",
"list": "Carrier",
"description": "Free HD wallpaper from verizon\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.motorola.service.vzw.entitlement",
"list": "Carrier",
"description": "Deleting this package whill disable Hotspot functionality if you're a Verizon client. \nWhat you can do is preventing the phone from notifying the carrier about when you use hotspot :\nhttps://android.stackexchange.com/questions/226580/how-is-verizon-suddenly-tracking-my-hot-spot-usage-on-android-and-how-do-i-disab\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Advanced"
},
{
"id": "com.motorola.vzw.cloudsetup",
"list": "Carrier",
"description": "Cloud setup\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.motorola.ltebroadcastservices_vzw",
"list": "Carrier",
"description": "LTE Broadcast services from Verizon. Allows your phone to receive broadcast message from Verizon?\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.motorola.vzw.loader",
"list": "Carrier",
"description": "????\nDoesn't seem to break anything once removed.",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},
{
"id": "com.motorola.omadm.vzw",
"list": "Carrier",
"description": "OMA Device Management for Verizon \nHandles configuration of the device (including first time use), enabling and disabling features provided by carriers.\nhttps://en.wikipedia.org/wiki/OMA_Device_Management\nI believe it's only useful if you want to use a Verizon service with a non branded phone (not sure at all)\nhttps://www.androidpolice.com/2015/03/10/android-5-1-includes-new-carrier-provisioning-api-allows-carriers-easier-methods-of-setting-up-services-on-devices-they-dont-control/\nDisplays annoying notifications if you unlocked your bootloader\n",
"dependencies": [],
"neededBy": [],
"labels": [],
"removal": "Recommended"
},