-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcarrier.json
1096 lines (1096 loc) · 44.8 KB
/
carrier.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": "ca.bell.wt.android.tunesappswidget",
"label": "App Widget",
"description": "Developped by Bell Canada, it is a home screen widget which shows advertisements, promotions, news, sports & entertainment.",
"web": [
"https://play.google.com/store/apps/details?id=ca.bell.wt.android.tunesappswidget"
],
"removal": "delete"
},
{
"id": "com.LogiaGroup.LogiaDeck",
"label": "Mobile Services Manager",
"description": "\"Mobile Services Manager/DTIGNITE malware, rooted to your device by express agreement between the app's publisher and your carrier.\"",
"web": [
"https://www.reddit.com/r/lgv20/comments/6u0wnf/what_is_mobile_services_manager_did_i_catch_a/"
],
"removal": "delete"
},
{
"id": "com.aetherpal.attdh.se",
"label": "Device Help",
"description": "Device Help for AT&T Samsung device.\nDeveloped by Aetherpal, a company which sells smart remote controls tools.\nI guess this app is used for tech support.",
"web": [
"https://docs.samsungknox.com/CCMode/G935A_O.pdf",
"https://en.wikipedia.org/wiki/AetherPal"
],
"removal": "delete"
},
{
"id": "com.aetherpal.attdh.zte",
"label": "Device Help",
"description": "Device Help for AT&T ZTE devices.\nDeveloped by Aetherpal, a company which sells smart remote controls tools.\nI guess this app is used for tech support.",
"web": [
"https://en.wikipedia.org/wiki/AetherPal"
],
"removal": "delete"
},
{
"id": "com.android.sprint.hiddenmenuapp",
"label": "HiddenMenu",
"description": "Lets you access hidden features tests/settings (you need to type a special code in the dialer).",
"web": [
"https://bestcellular.com/dial-codes/"
],
"removal": "delete"
},
{
"id": "com.asurion.android.mobilerecovery.att",
"label": "AT&T Protect Plus",
"description": "Discontinued and replaced by AT&T ProTech (com.asurion.android.protech.att)\nHelp and support app. Lets you call or chat with a live U.S.-based AT&T ProTech support expert.",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.android.mobilerecovery.sprint",
"label": "Sprint Protect",
"description": "Let you find a phone, secure from viruses, back up data, and more.",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.android.mobilerecovery.sprint.vpl",
"label": "Sprint Protect",
"description": "Let you find a phone, secure from viruses, back up data, and more.",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.android.protech.att",
"label": "AT&T ProTech",
"description": "Help and support app. Lets you call or chat with a live U.S.-based AT&T ProTech support \"expert\".",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.android.verizon.vms",
"label": "Digital Secure",
"description": "Verizon's one-stop suite of privacy and security tools that is supposed to protect your devices from online threats, connect to public Wi-Fi with a secure VPN, take control with always-on dark web monitoring, and get guidance on online security from \"security experts\".",
"web": [
"https://play.google.com/store/apps/details?id=com.asurion.android.verizon.vms",
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.home.sprint",
"label": "Sprint Complete",
"description": "Lets you call or chat with live tech experts! Maybe you will find the love of your life!",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.home.sprint.vpl",
"label": "Tech Expert",
"description": "Replaced by \"Sprint Complete\".",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developped by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.att.android.attsmartwifi",
"label": "AT&T Smart Wi-Fi",
"description": "Finds and auto-connects to available hotspots to minimize cellular data consumption.\nAuto-connects is not a good idea. You are ok if you go on HTTPS websites. Use a VPN if you want to hide the domain names you visit, avoid usage restriction (no P2P, blacklisted websites...) and encrypt HTTP traffic.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.android.attsmartwifi",
"https://www.europol.europa.eu/activities-services/public-awareness-and-prevention-guides/risks-of-using-public-wi-fi",
"https://www.eff.org/deeplinks/2020/01/why-public-wi-fi-lot-safer-you-think",
"https://thatoneprivacysite.net/choosing-the-best-vpn-for-you/"
],
"removal": "delete"
},
{
"id": "com.att.callprotect",
"label": "AT&T Call Protect",
"description": "Spam call blocking app provided by Hiya.",
"web": [
"https://itmunch.com/robocall-caught-sending-customers-confidential-data-without-consent/"
],
"removal": "delete",
"warning": "Never trust an app that automatically blocks spam calls."
},
{
"id": "com.att.csoiam.mobilekey",
"label": "AT&T Sign in Helper",
"description": "Allows AT&T applications to securely authenticate on Android devices.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.csoiam.mobilekey"
],
"removal": "delete"
},
{
"id": "com.att.dh",
"label": "Device Help",
"description": "Troubleshooting app from AT&T.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.dh"
],
"removal": "delete"
},
{
"id": "com.att.dtv.shaderemote",
"label": "DIRECTV Remote App",
"description": "Lets you control DIRECTV HD receivers in your home that are connected to Internet, from your phone. DIRECTV is a susbsidiary of AT&T.",
"web": [
"https://en.wikipedia.org/wiki/DirecTV#Consumer_protection_lawsuits_and_violations"
],
"removal": "delete"
},
{
"id": "com.att.iqi",
"label": "Device Health",
"description": "(AKA Carrier IQ) Gathers, stores and forwards diagnostic measurements on its behalf.\nGreat! A rootkit.",
"web": [
"https://docs.samsungknox.com/CCMode/G935A_O.pdf",
"https://en.wikipedia.org/wiki/Carrier_IQ#Rootkit_discovery_and_media_attention"
],
"removal": "delete"
},
{
"id": "com.att.mobile.android.vvm",
"label": "AT&T Visual Voicemail",
"description": "Lets you manage your voicemail directly from the app without the need to dial into your mailbox.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.mobile.android.vvm"
],
"removal": "delete"
},
{
"id": "com.att.mobilesecurity",
"label": "AT&T ActiveArmor℠",
"description": "AT&T android antivirus.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.mobilesecurity"
],
"removal": "delete"
},
{
"id": "com.att.mobiletransfer",
"label": "AT&T Mobile Transfer",
"description": "Lets you transfer user data from an older AT&T phone to a new one.",
"removal": "delete"
},
{
"id": "com.att.myWireless",
"label": "myAT&T",
"description": "Lets you manage your AT&T account.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.myWireless"
],
"removal": "delete"
},
{
"id": "com.att.personalcloud",
"label": "AT&T Personal Cloud",
"description": "It has paid extra features and data are obviously not E2EE (i.e AT&T can access them)\nPrivacy nightmare and was poorly coded.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.personalcloud",
"https://beta.pithus.org/report/bc54b5e2446ace90d9f992278d0ec320befe4983a76cb4fdcf47e565366e67b6"
],
"removal": "replace",
"suggestions": "cloud_services"
},
{
"id": "com.att.tv",
"label": "DIRECTV",
"description": "Lets you Stream TV live and on demand from your phone.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.tv"
],
"removal": "replace",
"suggestions": "streaming_apps"
},
{
"id": "com.att.tv.watchtv",
"label": "AT&T WatchTV",
"description": "Lets you stream TV live and VOD form your phone.\nNo it's not the same thing than AT&T TV. Yes, it's a mess.",
"web": [
"https://www.cordcuttersnews.com/att-tv-vs-att-tv-now-whats-the-difference/"
],
"removal": "replace",
"suggestions": "streaming_apps"
},
{
"id": "com.aura.oobe.samsung",
"label": "AppCloud",
"description": "It offers the \"Aura Out-Of-the-Box Experience\" (OOBE)\nIt is some kind of post-install recommended apps setup from the carrier. Asks for your age and gender and then recommends you to install popular apps.\nHas way too many permissions.",
"web": [
"https://en.wikipedia.org/wiki/IronSource",
"https://aura.ironsrc.com/tools/drive-app-downloads/",
"https://arxiv.org/pdf/2010.10088.pdf",
"https://github.com/0x192/universal-android-debloater/issues/278"
],
"removal": "delete",
"warning": "This app is developed by IronSource, an Israeli advertising company."
},
{
"id": "com.aura.oobe.samsung.gl",
"label": "AppCloud",
"description": "AppCloud\nIt offers the \"Aura Out-Of-the-Box Experience\" (OOBE)\nIt is some kind of post-install recommended apps setup from the carrier. Asks for your age and gender and then recommends you to install popular apps.\nHas way too many permissions.",
"web": [
"https://en.wikipedia.org/wiki/IronSource",
"https://aura.ironsrc.com/tools/drive-app-downloads/",
"https://arxiv.org/pdf/2010.10088.pdf",
"https://github.com/0x192/universal-android-debloater/issues/278"
],
"removal": "delete",
"warning": "This app is developed by IronSource, an Israeli advertising company."
},
{
"id": "com.customermobile.preload.vzw",
"label": "Verizon Store Demo Mode",
"description": "Verizon Store/Retail Demo Mode.",
"removal": "delete"
},
{
"id": "com.dti.att",
"label": "Mobile Services Manager",
"description": "Formerly known as AT&T App Select.\nI guess it lets you choose AT&T apps to install.\nIt has a LOT of permissions.",
"web": [
"https://knowledge.protektoid.com/apps/com.dti.att/7a36d4f5f00bae044566221400719c75ea2f4f33bc2578a7f8210f36d718a8d6"
],
"removal": "delete"
},
{
"id": "com.hyperlync.Sprint.Backup",
"label": "Sprint Backup",
"description": "Lets you backup your phone’s content to your Sprint Backup account.\nThis app was developed by Hyperlync Technologies an Israel-based company which provides cyber-security solutions. It is now owned by Edition Ltd, a big Singapore based company.",
"web": [
"https://www.reuters.com/companies/EDITol.SI"
],
"removal": "replace",
"suggestions": "backup_apps"
},
{
"id": "com.hyperlync.Sprint.CloudBinder",
"label": "Sprint Cloud Binder",
"description": "Hub for all you cloud accounts.\nThis app was developed by Hyperlync Technologies an Israel-based company which provide cyber-security solutions.\nIt is now owned by Edition Ltd, a big Singapore based company.",
"web": [
"https://www.reuters.com/companies/EDITol.SI"
],
"removal": "delete"
},
{
"id": "com.locationlabs.cni.att",
"label": "AT&T Smart Limits℠",
"description": "A parental Control app.",
"web": [
"https://m.att.com/shopmobile/wireless/features/smart-limits.html"
],
"removal": "delete"
},
{
"id": "com.locationlabs.finder.sprint",
"label": "Sprint Family Locator",
"description": "Lets you locate any phone registered under the Sprint family plan.\nLocation labs is owned by AGV which is owned by Avast.\nYou shouldn't trust Avast.",
"web": [
"https://www.vice.com/en_us/article/qjdkq7/avast-antivirus-sells-user-browsing-data-investigation",
"https://www.pcmag.com/news/the-cost-of-avasts-free-antivirus-companies-can-spy-on-your-clicks"
],
"removal": "replace",
"suggestions": "locators"
},
{
"id": "com.locationlabs.finder.sprint.vpl",
"label": "Sprint Family Locator",
"description": "Lets you locate any phone registered under the Sprint family plan\nLocation labs is owned by AGV which is owned by Avast.\nYou shouldn't trust Avast.",
"web": [
"https://www.vice.com/en_us/article/qjdkq7/avast-antivirus-sells-user-browsing-data-investigation",
"https://www.pcmag.com/news/the-cost-of-avasts-free-antivirus-companies-can-spy-on-your-clicks"
],
"removal": "replace",
"suggestions": "locators"
},
{
"id": "com.matchboxmobile.wisp",
"label": "AT&T Hot Spots",
"description": "Runs in background. Automatically connects you to a free AT&T wifi hotspot at one of their participating partner locations, such as Starbucks.",
"web": [
"https://docs.samsungknox.com/CCMode/G935A_O.pdf"
],
"removal": "delete"
},
{
"id": "com.mobitv.client.sprinttvng",
"label": "Sprint TV & Movies",
"description": "Provided by MobiTV. Lets you watch live TV and VOD.",
"web": [
"https://en.wikipedia.org/wiki/MobiTV"
],
"removal": "replace",
"suggestions": "streaming_apps"
},
{
"id": "com.mobitv.client.tmobiletvhd",
"label": "T-Mobile TV with Mobile HD",
"description": "Discontinued and replaced by nl.tmobiletv.vinson, provided by MobiTV.",
"web": [
"https://en.wikipedia.org/wiki/MobiTV",
"https://play.google.com/store/apps/details?id=nl.tmobiletv.vinson"
],
"removal": "replace",
"suggestions": "streaming_apps"
},
{
"id": "com.mobolize.sprint.securewifi",
"label": "Secure WiFi",
"description": "Sprint VPN app provided by Mobolize. You need to pay for using it.\nYou'd better use a reliable third-party VPN if you really need to use one.\nThis one runs in background all time and every time it sees a \"unsecured network\" it will popup to encourage you to pay for this VPN.",
"removal": "replace",
"suggestions": "vpn_services"
},
{
"id": "com.motorola.att.phone.extensions",
"label": "ATT Phone Extension",
"description": "Provide access to AT&T extensions in you dialer. I'm not sure tho. It's only a supposition.",
"web": [
"https://asecare.att.com/tutorials/adding-and-deleting-an-extension-on-your-officehand-mobile-app-2990/?product=AT&T%20Office@Hand"
],
"removal": "delete"
},
{
"id": "com.motorola.attvowifi",
"label": "Wi-Fi Calling",
"description": "AT&T Wifi-calling app.",
"web": [
"https://www.att.com/shop/wireless/features/wifi-calling.html"
],
"removal": "delete"
},
{
"id": "com.motorola.ltebroadcastservices_vzw",
"label": "com.motorola.ltebroadcastservices_vzw",
"description": "LTE Broadcast services from Verizon. Allows your phone to receive broadcast message from Verizon?",
"removal": "delete"
},
{
"id": "com.motorola.mot5gmod",
"label": "5G Moto Mod",
"description": "Internet sharing using USB tethering and WiFi hotspot.",
"web": [
"https://play.google.com/store/apps/details?id=com.motorola.mot5gmod"
],
"removal": "delete"
},
{
"id": "com.motorola.omadm.sprint",
"label": "SprintDM",
"description": "Configuration of the device (including first time use), enabling and disabling features provided by carriers.\nI believe it's only useful if you want to use a Sprint service with a non branded phone (not sure at all)\nDisplays annoying notifications if you unlocked your bootloader.",
"web": [
"https://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/"
],
"removal": "delete"
},
{
"id": "com.motorola.omadm.vzw",
"label": "VzwDM",
"description": "OMA Device Management for Verizon.\nHandles configuration of the device (including first time use), enabling and disabling features provided by carriers.\nI believe it's only useful if you want to use a Verizon service with a non branded phone (not sure at all)\nDisplays annoying notifications if you unlocked your bootloader.",
"web": [
"https://en.wikipedia.org/wiki/OMA_Device_Management",
"https://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/"
],
"removal": "delete"
},
{
"id": "com.motorola.service.vzw.entitlement",
"label": "entitlement",
"description": "",
"web": [
"https://android.stackexchange.com/questions/226580/how-is-verizon-suddenly-tracking-my-hot-spot-usage-on-android-and-how-do-i-disab"
],
"removal": "caution",
"warning": "Deleting this package whill disable Hotspot functionality if you're a Verizon client. What you can do is preventing the phone from notifying the carrier about when you use hotspot."
},
{
"id": "com.motorola.sprintwfc",
"label": "print Wifi Calling",
"description": "Sprint Wifi Calling\nProvides wifi calling to Sprint customers.",
"removal": "delete"
},
{
"id": "com.motorola.visualvoicemail",
"label": "Verizon Visual Voicemail",
"description": "On non-Verizon phones it has a generic \"Voicemail\" name and icon, and doesn't seem to active.",
"removal": "delete"
},
{
"id": "com.motorola.vzw.cloudsetup",
"label": "Cloud setup",
"description": "The exact functionality is unknown.",
"removal": "delete"
},
{
"id": "com.motorola.vzw.loader",
"label": "com.motorola.vzw.loader",
"description": "Exact functionality is unknown. Doesn't seem to break anything once removed.",
"removal": "delete"
},
{
"id": "com.motorola.vzw.mot5gmod",
"label": "5G Moto Mod",
"description": "Internet sharing using USB tethering and WiFi hotspot.",
"removal": "delete"
},
{
"id": "com.motorola.vzw.pco.extensions.pcoreceiver",
"label": "PcoReceiver",
"description": "Protocol Configuration Options.\nRelated to APN configuration.",
"web": [
"https://www.freshpatents.com/-dt20180607ptan20180159824.php"
],
"removal": "delete"
},
{
"id": "com.motorola.vzw.phone.extensions",
"label": "PhoneExtns",
"description": "Free HD wallpaper from verizon",
"removal": "delete"
},
{
"id": "com.motorola.vzw.provider",
"label": "VzwUnifiedSettingsApp",
"description": "Exact functionality is unknown. Label might be incorrect. Doesn't seem to break anything once removed.",
"removal": "delete"
},
{
"id": "com.motricity.verizon.ssodownloadable",
"label": "Verizon Login",
"description": "Originally by Motricity, now Voltari.\nVoltari provides relevance-driven mobile advertising, mobile marketing, mobile merchandising, and predictive analytics solutions.\nNeeded for \"My Verizon\".",
"web": [
"https://en.wikipedia.org/wiki/Voltari",
"https://www.lightreading.com/motricity-holds-on-to-verizon-account/d/d-id/678478"
],
"removal": "delete"
},
{
"id": "com.orange.aura.oobe",
"label": "Orange Manual Selector",
"description": "Makes unnecessary notifications",
"removal": "delete"
},
{
"id": "com.orange.mail.fr",
"label": "Mail Orange",
"description": "Managing your emails from the Mail Orange application. All your personal data is hosted in France and governed by French law.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.mail.fr"
],
"removal": "replace",
"suggestions": "email_clients"
},
{
"id": "com.orange.miorange",
"label": "Mi Orange",
"description": "Lets you access to your Orange account and services",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.miorange"
],
"removal": "delete"
},
{
"id": "com.orange.mylivebox.fr",
"label": "Ma Livebox",
"description": "Lets you manage your Livebox from your phone.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.mylivebox.fr"
],
"removal": "delete"
},
{
"id": "com.orange.mysosh",
"label": "MySosh France",
"description": "Lets you access to your Sosh account",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.mysosh"
],
"removal": "delete"
},
{
"id": "com.orange.orangeetmoi",
"label": "Orange et moi France",
"description": "Orange customer space.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.orangeetmoi"
],
"removal": "delete"
},
{
"id": "com.orange.owtv",
"label": "TV d'Orange",
"description": "Lets you watch TV/VOD on your phone.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.owtv"
],
"removal": "delete"
},
{
"id": "com.orange.tdd",
"label": "Transfert des données",
"description": "Lets you transfer wirelessly: contacts, SMS, call log, calendar, photos, videos, audio files, etc., all from your old Android.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.tdd"
],
"removal": "delete"
},
{
"id": "com.orange.update",
"label": "App Center",
"description": "Handles Orange apps updates.",
"removal": "delete"
},
{
"id": "com.orange.update.OrangeUpdateApplication",
"label": "com.orange.update.OrangeUpdateApplication",
"description": "Obviously related to update.",
"removal": "delete"
},
{
"id": "com.orange.vvm",
"label": "Messagerie vocale visuelle",
"description": "Lets you manage your voicemail with an app.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.vvm"
],
"removal": "delete"
},
{
"id": "com.orange.wifiorange",
"label": "Mon Réseau",
"description": "Lets you measure your speed connection and find better Orange wifi hotspots.\nInforms you also about near network incidents.",
"removal": "delete"
},
{
"id": "com.samsung.attvvm",
"label": "Samsung AT&T Visual Voicemail",
"description": "A simple GUI for voicemail.",
"removal": "delete"
},
{
"id": "com.sec.android.app.ewidgetatt",
"label": "Entertainment Widget",
"description": "AT&T Widget for One UI.",
"web": [
"https://docs.samsungknox.com/CCMode/F707U_Q.pdf"
],
"removal": "delete"
},
{
"id": "com.sec.omadm",
"label": "OMADM",
"description": "Open Mobile Alliance Device Management. A protocol for management of mobile devices.",
"web": [
"https://en.wikipedia.org/wiki/OMA_Device_Management"
],
"removal": "caution"
},
{
"id": "com.sec.omadmspr.syncmlphoneif",
"label": "Sprint OMADM Phone Interface",
"description": "OMADM = Open Mobile Alliance Device Management. A protocol for management of mobile devices.",
"web": [
"https://docs.samsungknox.com/CCMode/G950U1_P.pdf",
"https://en.wikipedia.org/wiki/OMA_Device_Management"
],
"removal": "caution"
},
{
"id": "com.sec.sprint.wfcstub",
"label": "com.sec.sprint.wfcstub",
"description": "Seems to be related to Wifi-Calling on Samsung phone.",
"removal": "delete"
},
{
"id": "com.securityandprivacy.android.verizon.vms",
"label": "Digital Secure",
"description": "I don't know why this apps is released twice on the Play store under 2 different package name.",
"web": [
"https://play.google.com/store/apps/details?id=com.securityandprivacy.android.verizon.vms"
],
"removal": "delete"
},
{
"id": "com.sfr.android.moncompte",
"label": "SFR & Moi",
"description": "Lets you manage your SFR account.",
"web": [
"https://play.google.com/store/apps/details?id=com.sfr.android.moncompte"
],
"removal": "delete"
},
{
"id": "com.sfr.android.sfrcloud",
"label": "SFR Cloud",
"description": "Cloud provided by SFR",
"web": [
"https://play.google.com/store/apps/details?id=com.sfr.android.sfrcloud"
],
"removal": "replace",
"suggestions": "cloud_services"
},
{
"id": "com.sfr.android.sfrmail",
"label": "SFR Mail",
"description": "SFR Mail",
"web": [
"https://play.google.com/store/apps/details?id=com.sfr.android.sfrmail"
],
"removal": "replace",
"suggestions": "email_clients"
},
{
"id": "com.sfr.android.sfrplay",
"label": "SFR Play",
"description": "VOD streaming from SFR.",
"removal": "delete"
},
{
"id": "com.sfr.android.vvm",
"label": "SFR Répondeur +",
"description": "Lets you use your voice mail and manage your inbox without dialing into your voicemail.",
"web": [
"https://play.google.com/store/apps/details?id=com.sfr.android.vvm"
],
"removal": "delete"
},
{
"id": "com.sprint.android.musicplus2033",
"label": "Sprint Music Plus",
"description": "Sprint’s official Music Store and player.",
"removal": "replace",
"suggestions": "music_apps"
},
{
"id": "com.sprint.android.musicplus2033.vpl",
"label": "Sprint Music Plus",
"description": "Sprint’s official Music Store and player.",
"removal": "replace",
"suggestions": "music_apps"
},
{
"id": "com.sprint.care",
"label": "My Sprint",
"description": "Lets you manage your Sprint Account and pay your bill.",
"web": [
"https://play.google.com/store/apps/details?id=com.sprint.care"
],
"removal": "delete"
},
{
"id": "com.sprint.ce.updater",
"label": "Mobile Installer (ソフトバンク)",
"description": "Used by Sprint to (force) install/update Sprint apps.",
"web": [
"https://community.sprint.com/t5/Samsung/How-to-stop-quot-Mobile-Installer-quot-from-pushing-apps-to/td-p/1036387"
],
"removal": "delete"
},
{
"id": "com.sprint.ecid",
"label": "Caller ID",
"description": "Enables you to hide name and phone number when you make phone calls.",
"web": [
"https://www.sprint.com/en/support/solutions/services/restrict-your-caller-id-information.html"
],
"removal": "delete"
},
{
"id": "com.sprint.fng",
"label": "Sprint Spot",
"description": "Provides Sprint postpaid customers a way to discover and access apps, services, games, TV & video, music, and more.",
"removal": "delete"
},
{
"id": "com.sprint.international.message",
"label": "Sprint Worldwide",
"description": "A help page for international travelers.",
"removal": "delete"
},
{
"id": "com.sprint.ms.cdm",
"label": "Carrier Device Manager",
"description": "Mobile Device Management (MDM) allows company’s IT department to reach inside your phone in the background, allowing them to ensure your device is secure, know where it is, and remotely erase your data if the phone is stolen.",
"web": [
"https://onezero.medium.com/dont-put-your-work-email-on-your-personal-phone-ef7fef956c2f",
"https://blog.cdemi.io/never-accept-an-mdm-policy-on-your-personal-phone/"
],
"removal": "delete",
"warning": "NEVER install a MDM tool on your personal phone."
},
{
"id": "com.sprint.ms.cnap",
"label": "Caller ID",
"description": "CNAP = Caller Name Presentation\nLets you change the name that is displayed on caller ID when making a call.\nStrange is it the same thing than \"com.sprint.ecid\" ?\n",
"web": [
"https://en.wikipedia.org/wiki/Calling_Name_Presentation"
],
"removal": "delete"
},
{
"id": "com.sprint.ms.smf.services",
"label": "Carrier Hub",
"description": "Enables Sprint features (including Wifi calling) and products for devices operating on the Sprint network.",
"web": [
"https://play.google.com/store/apps/details?id=com.sprint.ms.smf.services"
],
"removal": "delete"
},
{
"id": "com.sprint.psdg.sw",
"label": "Carrier Setup Wizard",
"description": "The first time you turn your device on, a Welcome screen is displayed. It guides you through the basics of setting up your device.\nHere it handles the setup of Sprint features/services.",
"removal": "delete"
},
{
"id": "com.sprint.safefound",
"label": "Safe & Found",
"description": "Mobile safety and security application that helps protect and locate your \"loved ones\".\nYou have the ability to track and manage smartphones, tablets and Tracker all in one app.",
"web": [
"https://play.google.com/store/apps/details?id=com.sprint.safefound",
"https://www.sprint.com/en/support/solutions/services/safe-and-found.html"
],
"removal": "delete",
"suggestions": "locators"
},
{
"id": "com.sprint.safefound.vpl",
"label": "Safe & Found",
"description": "Mobile safety and security application that helps protect and locate your \"loved ones\".\nYou have the ability to track and manage smartphones, tablets and Tracker all in one app.",
"web": [
"https://play.google.com/store/apps/details?id=com.sprint.safefound",
"https://www.sprint.com/en/support/solutions/services/safe-and-found.html"
],
"removal": "delete"
},
{
"id": "com.sprint.topup",
"label": "Sprint World Top-Up",
"description": "Doesn't exist anymore?",
"removal": "delete"
},
{
"id": "com.sprint.w.installer",
"label": "Mobile ID",
"description": "Formerly, Sprint ID. \nProvides mobile ID Packs featuring apps, ringers, wallpapers, widgets and more.\nCan (and do) force install apps you disabled.",
"removal": "delete"
},
{
"id": "com.sprint.w.v8",
"label": "Featured Apps",
"description": "Old app Discover App (discontinued / new package name)\nLets you discover Sprint apps?",
"removal": "delete"
},
{
"id": "com.sprint.zone",
"label": "Sprint Zone",
"description": "Helps the user find new apps, in addition to some carrier-specific functionality.",
"removal": "delete"
},
{
"id": "com.synchronoss.dcs.att.r2g",
"label": "AT&T Ready2Go",
"description": "Discontinued. Its purpose was to help you migrating your data to your new Android device.",
"removal": "delete"
},
{
"id": "com.telecomsys.directedsms.android.SCG",
"label": "Verizon Location Agent",
"description": "Location tracking (does not impact GPS function if deleted, don't worry).",
"removal": "delete"
},
{
"id": "com.tmobile.pr.adapt",
"label": "T-Mobile",
"description": "A diagnostic tool for T-Mobile. This app can see all your installed apps, that you have allowed unknown sources on, that your rooted, and will deny your warranty saying your rooted. It constantly runs in the background.",
"removal": "delete"
},
{
"id": "com.tmobile.pr.mytmobile",
"label": "T-Mobile",
"description": "T-mobile app",
"web": [
"https://play.google.com/store/apps/details?id=com.tmobile.pr.mytmobile"
],
"removal": "delete"
},
{
"id": "com.tmobile.services.nameid",
"label": "T-Mobile Scam Shield",
"description": "Name ID T-Mobile (powered by Hiya or cequint if on Samsung devices).",
"web": [
"https://play.google.com/store/apps/details?id=com.tmobile.services.nameid",
"https://techcrunch.com/2019/08/09/many-robocall-blocking-apps-send-your-private-data-without-permission/"
],
"removal": "delete",
"warning": "Never trust a company which promotes call ID/spam blocking features."
},
{
"id": "com.tmobile.simlock",
"label": "Device Unlock",
"description": "Allows you to request and apply a mobile device unlock directly from the device.",
"web": [
"https://support.t-mobile.com/docs/DOC-14011"
],
"removal": "delete"
},
{
"id": "com.tmobile.vvm.application",
"label": "T-Mobile Visual Voicemail",
"description": "Lets you use your voice mail and manage your inbox without dialing into your voicemail.",
"web": [
"https://play.google.com/store/apps/details?id=com.tmobile.vvm.application"
],
"removal": "delete"
},
{
"id": "com.vcast.mediamanager",
"label": "Verizon Cloud",
"description": "Verizon Cloud",
"web": [
"https://play.google.com/store/apps/details?id=com.vcast.mediamanager"
],
"removal": "replace",
"suggestions": "cloud_services"
},
{
"id": "com.verizon.llkagent",
"label": "Llkagent",
"description": "Used for Verizon store demo mode.",
"removal": "delete"
},
{
"id": "com.verizon.loginengine.unbranded",
"label": "Carrier Login Engine",
"description": "Needed for wifi-calling.",
"web": [
"https://forum.xda-developers.com/t/samsung-factory-unlocked-s9-s9-will-now-have-verizon-wi-fi-calling.3841547/"
],
"removal": "delete"
},
{
"id": "com.verizon.messaging.vzmsgs",
"label": "Verizon Messages",
"description": "Verizon Messages",
"web": [
"https://play.google.com/store/apps/details?id=com.verizon.messaging.vzmsgs"
],
"removal": "delete"
},
{
"id": "com.verizon.mips.services",
"label": "My Verizon Services",
"description": "Related to My Verizon app. Required for hotspot.",
"removal": "delete"
},
{
"id": "com.verizon.obdm",
"label": "D-MAT",
"description": "It's a set of metrics-related modules. Google Play uses the version of the Telemetry module to determine\nif updates are available for metrics-related modules and which security patch version to display to the end user.\nThis module doesn’t contain active code and has no functionality on its own.",
"web": [
"https://gitlab.com/W1nst0n/universal-android-debloater/-/issues/27#note_410012436"
],
"removal": "caution",
"warning": "Removing modules-related packages may not be safe since Android 11."
},
{
"id": "com.verizon.obdm_permissions",
"label": "OBDM_Permissions",
"description": "Has a LOT of permissions!\nIt is used to hold shares and securities in dematerialised/electronic format.\nSeems weird that Verizon provides this so it's likely not this.",
"removal": "delete"
},
{
"id": "com.verizon.permissions.appdirectedsms",
"label": "com.verizon.permissions.appdirectedsms",
"description": "Custom permissions for some verizon stuff?",
"removal": "delete"
},
{
"id": "com.verizon.permissions.vzwappapn",
"label": "com.verizon.permissions.vzwappapn",
"description": "Custom permissions used to set Verizon APN?",
"web": [
"https://docs.samsungknox.com/CCMode/N900V.pdf"
],
"removal": "delete"
},
{
"id": "com.verizon.vzwavs",
"label": "VzwAVS",
"description": "Has a scary list of permissions. Doesn't seems to break anything if removed.",
"removal": "delete"
},
{
"id": "com.verizontelematics.verizonhum",
"label": "Hum: GPS Locator",
"description": "Hum is the connected car solution that helps you take care of your car and everyone in it. Keep tabs on your car’s health and track of its location.",
"web": [
"https://play.google.com/store/apps/details?id=com.verizontelematics.verizonhum"
],
"removal": "delete"
},
{
"id": "com.vznavigator.Generic",
"label": "VZ Navigator",
"description": "VZ Navigator (GPS app)",
"removal": "delete"
},
{
"id": "com.vzw.apnlib",
"label": "apnlib",
"description": "Kind of library for Verizon APN?",
"web": [
"https://developer.android.com/reference/android/telephony/data/ApnSetting"
],
"removal": "delete"
},
{
"id": "com.vzw.apnservice",
"label": "VZWAPN",
"description": "APN Services.",
"web": [
"https://developer.android.com/reference/android/telephony/data/ApnSetting"
],
"removal": "delete"
},
{
"id": "com.vzw.ecid",
"label": "Verizon Call Filter",
"description": "Auto-block spam and report any unwanted numbers.\nNOTE : Never trust a company which promotes call ID/spam blocking features.",
"web": [
"https://play.google.com/store/apps/details?id=com.vzw.ecid"
],
"removal": "delete"
},
{
"id": "com.vzw.hss.myverizon",
"label": "My Verizon",
"description": "Lets you manage your Verizon account.",
"web": [
"https://play.google.com/store/apps/details?id=com.vzw.hss.myverizon"
],
"removal": "delete"
},
{