-
Notifications
You must be signed in to change notification settings - Fork 17
/
oem.json
7552 lines (7552 loc) · 407 KB
/
oem.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": "android.autoinstalls.config.TCL.PAI",
"description": "AutoInstalls a set of OEM apps on device setup (first boot/factory reset).",
"removal": "delete"
},
{
"id": "android.autoinstalls.config.Xiaomi.cactus",
"description": "Cactus is the device codename.\nAutoInstalls a set of OEM apps on device setup (first boot/factory reset).",
"removal": "delete"
},
{
"id": "android.autoinstalls.config.Xiaomi.cepheus",
"description": "Cepheus is the device codename.\nAutoInstalls a set of OEM apps on device setup (first boot/factory reset).",
"removal": "delete"
},
{
"id": "android.autoinstalls.config.Xiaomi.daisy",
"description": "Daisy is the device codename.\nAutoInstalls a set of OEM apps on device setup (first boot/factory reset).",
"removal": "delete"
},
{
"id": "android.autoinstalls.config.Xiaomi.dipper",
"description": "Dipper is the device codename.\nAutoInstalls a set of OEM apps on device setup (first boot/factory reset).",
"removal": "delete"
},
{
"id": "android.autoinstalls.config.motorola.layout",
"description": "Device configuration for Motorola\nAutoInstalls a set of OEM apps on device setup (first boot/factory reset).\nA layout?",
"removal": "delete"
},
{
"id": "android.autoinstalls.config.oneplus",
"label": "Device configuration",
"description": "Device configuration\nAutoInstalls a set of OEM apps on device setup (first boot/factory reset).",
"removal": "delete"
},
{
"id": "android.autoinstalls.config.samsung",
"description": "AutoInstalls a set of OEM apps on device setup (first boot/factory reset).",
"removal": "delete"
},
{
"id": "android.romstats",
"description": "Misleading package name. This is a Xiaomi-only package.\nCan someone provide the .apk?\nTelemetry stuff\n",
"removal": "delete"
},
{
"id": "android.telephony.overlay.cmcc",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "cn.oneplus.nvbackup",
"description": "NVBackupUI\nRuns in the background on some phones.\nHandles things related to OTA system updates?\nSafe to disable, but might break OTA updates.",
"removal": "caution"
},
{
"id": "cn.oneplus.oem_tcma",
"description": "TCMA = Tiered Contention Multiple Access\nRuns on boot.\nA form of CSMA/CA, a cellular traffic management protocol. TCMA schedules transmission of different types of traffic based on urgency.\nChina-only? (the \"cn\" in cn.oneplus is China's country code)\nhttps://en.wikipedia.org/wiki/Carrier-sense_multiple_access_with_collision_avoidance\nhttps://patents.google.com/patent/US20020163933A1",
"removal": "replace"
},
{
"id": "cn.oneplus.oemtcma",
"description": "TCMA = Tiered Contention Multiple Access\nRuns on boot.\nA form of CSMA/CA, a cellular traffic management protocol. TCMA schedules transmission of different types of traffic based on urgency.\nChina-only? (the \"cn\" in cn.oneplus is China's country code)\nhttps://en.wikipedia.org/wiki/Carrier-sense_multiple_access_with_collision_avoidance\nhttps://patents.google.com/patent/US20020163933A1",
"removal": "replace"
},
{
"id": "cn.oneplus.opmms",
"description": "OPMmsLocation\nDetermines your location when sending SMS/MMS?\nChina-only? (\"cn\" is China's country code)",
"removal": "delete"
},
{
"id": "cn.oneplus.photos",
"description": "Shot On OnePlus\nAccessible through the Wallpapers selection menu.\nProvides photos uploaded by OnePlus users, allowing you to set them as your wallpaper.\nEach day, one new photo appears within the application.",
"removal": "delete"
},
{
"id": "cn.wps.xiaomi.abroad.lite",
"description": "Mi Doc viewer\nDocuments (*.doc/docx, *.ppt/pptx, *.xls/xlsx, *.pdf, *.wps, and *.txt) viewer powered by WPS Office\nFYI: WPS is a Chinese closed-source software. It's as bad as Microsoft Office (privacy-wise)\nhttps://www.wps.com/privacy-policy\n",
"removal": "delete"
},
{
"id": "cn.zte.recorder",
"description": "ZTE Voice Recorder with... 33 permissions and talking with Baidu servers. Pithus analysis: https://beta.pithus.org/report/bab47d32f5b93cdf4d3a3cb082d1d0e7ba3e323356391b2d46e63617c1d15324",
"removal": "delete"
},
{
"id": "com.agui.app.imei",
"description": "IMEI Tool: Change MEID's & IMEI's of both SIM's\nEnter *#*#08#*#* in the dial pad to access\n",
"removal": "caution"
},
{
"id": "com.agui.app.memtester",
"description": "Memory tester\nHidden test menu. Used in diagnostics, normally invoked by MMI(Man-Machine Interface) Codes\n",
"removal": "delete"
},
{
"id": "com.agui.appblock",
"description": "App blocker\nSettings > Intelligent assistance: App blocker\n Unihertz power management service killing background apps to improve battery performance.",
"removal": "caution"
},
{
"id": "com.agui.batterystatsdumper",
"description": "Battery Stats Dumper\nLets you check and clear battery usage statistics.\nEnter *#*#010#*#* in the dial pad to access this hidden menu.",
"removal": "replace"
},
{
"id": "com.agui.game",
"description": "Game (From Unihertz Jelly2)\nRemoves distractions when selected apps are in use.",
"removal": "delete"
},
{
"id": "com.agui.game",
"description": "Game mode\nBlocks calls & notifications when selected APP's are open\n",
"removal": "delete"
},
{
"id": "com.agui.newsos",
"description": "SOS\nNotify emergency contacts. When triggered, will also put the phone in a low comsumption mode\n",
"removal": "delete"
},
{
"id": "com.agui.nfc",
"description": "NFC card emulation: simulates various types of unencrypted entrance cards.\n",
"removal": "delete"
},
{
"id": "com.agui.screenshot",
"description": "Screenshot\nScreenshot utility triggered when double tapping the Red Button\n",
"removal": "replace"
},
{
"id": "com.agui.studentmodel",
"description": "Student mode (From Unihertz Jelly2)\nSets limits to time - range, network, application limits and so on, to use a mobile phone reasonably. Under this mode, user is not allowed to install applications or factory reset. Applications not in white-list are disabled.",
"removal": "delete"
},
{
"id": "com.agui.studentmodel",
"description": "Student Mode\nLocks down your phone to reduce distractions\n",
"removal": "delete"
},
{
"id": "com.agui.update",
"description": "\"Wireless Update\" Settings > About Phone : Sytem update.\nRemoving will prevent Automatic Wireless Updates\n",
"removal": "caution",
"required_by": [
"com.agui.update.overlay"
]
},
{
"id": "com.agui.update.overlay",
"description": "Overlay for com.agui.update. Overlay are usually themes.\n",
"removal": "caution",
"dependencies": [
"com.agui.update"
]
},
{
"id": "com.agui.usbcamera",
"description": "Toolbox > \"USB Camera\" Only usefull if you want to use a USB Camera\n",
"removal": "delete"
},
{
"id": "com.android.LGSetupWizard",
"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.\nIt's the setup for LG services.\n",
"removal": "delete"
},
{
"id": "com.android.backup",
"description": "Xiaomi Backup and Restore feature (mislead package name).\nThis package was replaced by 'com.miui.backup' on newer models.\n",
"removal": "delete"
},
{
"id": "com.android.camera2",
"description": "Xiaomi Camera (I don't know why they kept this package name. It's really confusing.)\nIt's a proprietary app based on the AOSP sources:\nhttps://android.googlesource.com/platform/packages/apps/Camera2/+/master/src/com/android/camera\n",
"removal": "replace"
},
{
"id": "com.android.cellbroadcastreceiver.overlay.base.s600ww",
"description": "Nokia theme overlay for com.android.cellbroadcastreceiver",
"removal": "caution",
"dependencies": [
"com.android.cellbroadcastreceiver"
]
},
{
"id": "com.android.cts.ctsshim",
"description": "Compatibility Test Service. Used by developers to identify and resolve compatibility issues with Android apps.\nA shim is basically a compatibility layer for an API, that makes sure anything that uses the API does so correctly.\nhttps://android.googlesource.com/platform/frameworks/base/+/51e458e/packages/CtsShim\nhttps://en.wikipedia.org/wiki/Shim_(computing)",
"removal": "replace"
},
{
"id": "com.android.email.partnerprovider.overlay",
"description": "Theme overlay for partnerprovider?",
"removal": "caution"
},
{
"id": "com.android.fileexplorer",
"description": "Xiaomi/Mi File Explorer (Again it's a really poor choice for a package name considering it is not the AOSP File explorer)\nIt's a Closed-source app based on the AOSP version.\n",
"removal": "replace"
},
{
"id": "com.android.globalFileexplorer",
"description": "Misleading package name. It's the Xiaomi Files Manager on older phones\n",
"removal": "delete"
},
{
"id": "com.android.hwmirror",
"description": "Mirror\nLets you use your phone as a mirror...\n",
"removal": "delete"
},
{
"id": "com.android.incallui",
"description": "Xiaomi (and OnePlus) Phone dialer (here we go again! Another confusing package name)\n\nClosed-source app built on top of the AOSP package.\nThe name is doubly misleading because this package is the whole dialer. It does not only provide the 'in call' screen.",
"removal": "caution"
},
{
"id": "com.android.keyguard",
"description": "I NEVER HAD AN HUAWEI DEVICE ON HAND. THIS LIST WAS MADE POSSIBLE BY @REDSKULL23\nhttps://forum.xda-developers.com/honor-6x/how-to/guide-list-bloat-software-emui-safe-to-t3700814\nAdditional informaton were taken from https://forum.xda-developers.com/huawei-p40-pro/how-to/adb-debloating-t4088633\nYet, those documentations are not precise enough. If you have additional information, please contribute to this list\nI use [MORE INFO NEEDED] tag as a marker.\nIf you have EMUI 10 or older, check the AOSP file, as Huawei uses AOSP package name for their own app.\n\nHUAWEI magazine unlock (The package name is really confusing)\nIt's a proprietary app based on the AOSP package called com.android.keyguard. That's not clever at all.\nhttps://consumer.huawei.com/en/support/content/en-us00206571/\nLets you customize your lock screen wallpapers\n",
"removal": "delete"
},
{
"id": "com.android.mediacenter",
"description": "Huawei music app. (Yeah they messed up with the package name)\n",
"removal": "delete"
},
{
"id": "com.android.messaging",
"description": "Android default messaging app",
"removal": "replace"
},
{
"id": "com.android.midrive",
"description": "Mi Drive \nMisleading package name. It is indeed a closed-source Xiaomi application.\nAllow for cloud storage (on Mi Cloud) and syncing across multiple Android devices.\n",
"removal": "delete"
},
{
"id": "com.android.mms.overlay.cmcc",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "com.android.mms.overlay.ct",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "com.android.networksettings.overlay.ct",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "com.android.partnerbrowsercustomizations.btl.s600ww.overlay",
"description": "Theme overlay for some browser customization?",
"removal": "caution"
},
{
"id": "com.android.providers.calendar.overlay.base.s600ww",
"description": "Some overlay for a content provider package. Overlays are usually themes.",
"removal": "caution"
},
{
"id": "com.android.providers.settings.btl.s600ww.overlay",
"description": "Some overlay for a content provider package. Overlays are usually themes.",
"removal": "caution"
},
{
"id": "com.android.providers.settings.overlay.base.s600ww",
"description": "Some overlay for a content provider package. Overlays are usually themes.",
"removal": "caution"
},
{
"id": "com.android.retaildemo.overlay.base.s600ww",
"description": "Theme overlay for Retail demonstration mode?\nhttps://en.wikipedia.org/wiki/Demo_mode",
"removal": "caution"
},
{
"id": "com.android.screenshot",
"description": "Default android screenshot tool",
"removal": "replace"
},
{
"id": "com.android.settings.overlay.cmcc",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "com.android.settings.overlay.ct",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "com.android.systemui.overlay.cmcc",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "com.android.systemui.overlay.ct",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "com.android.systemui.overlay.ct",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "com.android.systemui.overlay.ct",
"description": "Likely overlay themes from China Mobile Communications Corporation(CMCC) or China Telecom(CT).",
"removal": "caution"
},
{
"id": "com.android.thememanager",
"description": "MIUI Themes (manager)\nXiaomi seems to love confusing package names.\nLets you select and apply themes provided by Xiaomi.\nNOTE: Disabling will break the ability to change lock-screen wallpaper.",
"removal": "caution"
},
{
"id": "com.android.thememanager.module",
"description": "Something related to Xiaomi's theme manager?",
"removal": "caution"
},
{
"id": "com.android.wifi.resources.overlay.common",
"description": "System Wi-Fi resources Theme pack\nGuessing it's a pack of themes for some Wi-Fi related system UI, based on the name.",
"removal": "caution"
},
{
"id": "com.android.wifi.resources.overlay.target",
"description": "System Wi-Fi resources Theme pack\nGuessing it's a pack of themes for some Wi-Fi related system UI, based on the name.",
"removal": "caution"
},
{
"id": "com.asus.calculator",
"description": "Calculator - unit converter (https://play.google.com/store/apps/details?id=com.asus.calculator)\nHas more permissions than a Calculator app reasonably should have.\nConnects to a few Google and currency exchange-rate servers.\nhttps://beta.pithus.org/report/817514371bbdb76ec52da4c8456bbc116deec179603099deabbe6fcce6f6ccdb",
"removal": "delete"
},
{
"id": "com.asus.easylauncher",
"description": "Asus Easy Mode (https://play.google.com/store/apps/details?id=com.asus.easylauncher)\nAlternative launcher with bigger icons and simpler interface",
"removal": "delete"
},
{
"id": "com.asus.ia.asusapp",
"description": "My Asus (https://play.google.com/store/apps/details?id=com.asus.ia.asusapp)\nAsus service center (support + store)",
"removal": "delete"
},
{
"id": "com.asus.soundrecorder",
"description": "ASUS Sound recorder (https://play.google.com/store/apps/details?id=com.asus.soundrecorder)\nConnects to Google Analytics and some Asus servers, which is a bit sketchy for a sound recording app..\nhttps://beta.pithus.org/report/f4cf38e1c35a04c3579fa198d2abd3ef1ff7be79633d6d3f2bc69c8a69164e1d",
"removal": "delete"
},
{
"id": "com.asus.userfeedback",
"description": "ZenUI Help (https://play.google.com/store/apps/details?id=com.asus.userfeedback)\nCustomer service app that provides FAQs, Mobile care service, user feedback, and public forums.\nLots of telemetry (insecure on top of that):\nhttps://beta.pithus.org/report/e80a1fa70adc097fc9817720b5c8c81cfd156a76e6d062759b2bc3d6937a97e7",
"removal": "delete"
},
{
"id": "com.aura.oobe.kbdi",
"description": "Appcloud\nPersistent notification until you click on it and agree to install games. Sort of game cloud pre-installed in some Xiaomi phones\nSafe to remove.",
"removal": "delete"
},
{
"id": "com.autonavi.minimap",
"description": "高德地图 (Yeah no english translation) (https://play.google.com/store/apps/details?id=com.autonavi.minimap)\nXiaomi GPS\n",
"removal": "delete"
},
{
"id": "com.baidu.duersdk.opensdk",
"description": "Duer stuff from Baidu \nDuer is a virtual AI assistant.\n",
"removal": "delete"
},
{
"id": "com.baidu.input_huawei",
"description": "Woh! 51 permissions! \nHuawei chinese stock input keyboard. You probably shouldn't trust this closed-source keyboard with this much permissions...NOTE: Make sure to have another keyboard installed before removing this package!\n",
"removal": "delete"
},
{
"id": "com.baidu.input_mi",
"description": "Baidu IME (Baidu keyboard)\nYOU SHOULD NEVER USE A CLOSED-SOURCE KEYBOARD ! \nhttps://www.techrepublic.com/blog/asian-technology/japanese-government-warns-baidu-ime-is-spying-on-users/\nArchive : https://web.archive.org/save/https://www.techrepublic.com/blog/asian-technology/japanese-government-warns-baidu-ime-is-spying-on-users/\nNOTE: Make sure you have installed another keyboard before removing this package.\n",
"removal": "replace"
},
{
"id": "com.baidu.input_vivo",
"description": "Default keyboard (Baidu IME customized for Vivo devices).\nThe number of requested permissions for this keyboard is terrifying. You really should use another keyboard. Pithus analysis: https://beta.pithus.org/report/d4cdf8fedcd94436ade720cb8df9b4ef32aca6c7822cae6c8698937d68e20363",
"removal": "replace"
},
{
"id": "com.baidu.searchbox",
"description": "百度 (https://play.google.com/store/apps/details?id=com.baidu.searchbox)\nBaidu App search engine.\n",
"removal": "delete"
},
{
"id": "com.bbk.account",
"description": "Vivo account\nVivo privacy policy is really bad: https://privacy.vivo.com/privacy\nNote: Removing this will obviously break fuctions that require Vivo account authentication: accessibility, data backup etc.",
"removal": "caution"
},
{
"id": "com.bbk.appstore",
"description": "Vivo app store.\nNote: apps from this store can still be upgraded with the built-in check upgrade feature even with this package removed",
"removal": "replace"
},
{
"id": "com.bbk.calendar",
"description": "Default calendar app.\n50 permissions for a calendar app. What could go wrong?\n\nPithus analysis: https://beta.pithus.org/report/db107cb828a1ec9b7cbcd9fd86542da877fdf4cf947c18c8a48a2b09e568ad10",
"removal": "replace"
},
{
"id": "com.bbk.iqoo.logsystem",
"description": "User experience service\nTelemetry app.\nNote:Disabling this will break trial version system upgrade feature.",
"removal": "delete"
},
{
"id": "com.bjbyhd.screenreader_huawei",
"description": "An accessibility feature for visually impaired people\n",
"removal": "delete"
},
{
"id": "com.bkk.theme",
"description": "Vivo theme (https://play.google.com/store/apps/details?id=com.bbk.theme)\nLets you add new themes, fonts and wallpapers.\nIt has annoying notifications that cannot be disabled by going to the app settings. This app use 50 permissions and can install packages (REQUEST_INSTALL_PACKAGES)\nNote: Removing this app will prevent you to change themes.\n\nPithus analysis: https://beta.pithus.org/report/0f15055131637d3dbc55d3a49b8e79b4f76ca09871abf9eb43b5f88afde11800",
"removal": "delete"
},
{
"id": "com.bsp.catchlog",
"description": "bsp = Board support package\nUsed to catch log files obviously.\n",
"removal": "delete"
},
{
"id": "com.chaozhuo.filemanager",
"label": "File Manager",
"description": "Adware file manager aka 'CZ File Manager' that mostly came preinstalled on Lenovo Tablets.\nFile management is a basic necessity, make sure you install a third-party file manager for this purpose.\n",
"web": [
"https://forums.lenovo.com/t5/Security-Malware/Tab4-Preinstalled-file-manager-has-Adware-trying-to-get-your/td-p/4355222",
"https://beta.pithus.org/report/02b0b4c60941960d3ac82177df0e5e93f61ee0f5c181ba50668d4ab0dae8d508"
],
"removal": "replace",
"warning": "You must allow 'location & phone calls' permission to run.",
"suggestions": "file_managers"
},
{
"id": "com.cnn.mobile.android.phone.edgepanel",
"description": "CNN Edge panel. Twitter trends, and news from CNN.\n",
"removal": "delete"
},
{
"id": "com.coloros.activation",
"description": "E-warranty card\nLets you check if your registered phone is still under warranty (will send your IMEI to esa-reg-eup.myoppo.com. Has a lot of permissions and run at boot\n\nPithus analysis: https://beta.pithus.org/report/2a1dc5caedd2347fa009563e9b4d1c11b1cb42726f9046151934c456fdd77d88",
"removal": "caution"
},
{
"id": "com.coloros.appmanager",
"description": "",
"removal": "delete"
},
{
"id": "com.coloros.assistantscreen",
"description": "",
"removal": "delete"
},
{
"id": "com.coloros.backuprestore",
"description": "Most likely Oppo backup/restore feature \n",
"removal": "delete"
},
{
"id": "com.coloros.childrenspace",
"description": "",
"removal": "delete"
},
{
"id": "com.coloros.cloud",
"description": "Oppo Cloud\n",
"removal": "delete"
},
{
"id": "com.coloros.compass2",
"description": "ColorOS default compass app\nKeep in mind that by using this app you give your location to the weather Oppo servers.\nPithus analysis: https://beta.pithus.org/report/9a965f5587fa6ee21c526612f3d72c50ef3cc53679b741260298387c44f5a3dc",
"removal": "replace"
},
{
"id": "com.coloros.directui",
"description": "",
"removal": "delete"
},
{
"id": "com.coloros.filemanager",
"description": "ColorOS File Manager\n",
"removal": "replace"
},
{
"id": "com.coloros.findmyphone",
"description": "Find my phone service\n",
"removal": "delete"
},
{
"id": "com.coloros.gamespace",
"description": "Game Space\nHub for your Games + some performance optimizations\nhttps://community.coloros.com/thread-9962-1-1.html\n",
"removal": "delete"
},
{
"id": "com.coloros.gamespaceui",
"description": "GameSpace\nGaming utility aiming at 'optimizing your gaming experience'. Has a lot of permissions. For instance, it has internet access, will scans all the apps you have on your phones (to find games), can performs Bluetooth scan and has access to the metadata of your media files (e.g the place where you took a picture).",
"removal": "delete"
},
{
"id": "com.coloros.healthcheck",
"description": "",
"removal": "delete"
},
{
"id": "com.coloros.mcs",
"description": "",
"removal": "delete"
},
{
"id": "com.coloros.ocrscanner",
"description": "ColorOS Optical character recognition scanner\n",
"removal": "delete"
},
{
"id": "com.coloros.onekeylockscreen",
"description": "Lock your phone if you click on the app icon. Completely useless unless your physical power button is damaged.\nThis app still has the permission to list all the apps installed on the phone.\n\nPithus analysis: https://beta.pithus.org/report/ece4088357c0a47dffd96bdc46a7b535d448c1a3619d995f7032df3be6cb0a38",
"removal": "delete"
},
{
"id": "com.coloros.oppomultiapp",
"description": "",
"removal": "delete"
},
{
"id": "com.coloros.oshare",
"description": "Oppo Share\nFile sharing app to transfer data from/to Oppo devices only. Seems to use weak crypto (AES ECB mode) and has weird permissions (such as `READ_CONTACTS`).\nWARNING: removing this app will break the functionality to share photos directly from ColorOS Photos app and break the 'share with' prompt after taking a screenshot.\n\nPithus analysis: https://beta.pithus.org/report/170f4a14be24a2e2135cd956a038aae9e2f78c845f3161b84c5545dbec03fad9",
"removal": "replace"
},
{
"id": "com.coloros.phonemanager",
"description": "Phone Manager\nProvides so called 'optimization tools' and various security scanning services.\nThese virus scanning services may have privacy implications.\n\nPithus analysis: https://beta.pithus.org/report/6b7d9e117ffb600b852f3785ede4f3773385fc291376e94a061bf7ed787dec48",
"removal": "delete"
},
{
"id": "com.coloros.phonenoareainquire",
"description": "Number Origin\n",
"removal": "delete"
},
{
"id": "com.coloros.securepay",
"description": "Payment system from Oppo allowing you to pay with your phone\n\nPithus analysis: https://beta.pithus.org/report/65246664d3795a5ac1b402d28456903e1b3bd76176de8298b3ea96c6c592ae9a",
"removal": "delete"
},
{
"id": "com.coloros.smartdrive",
"description": "",
"removal": "delete"
},
{
"id": "com.coloros.soundrecorder",
"description": "ColorOS Sound Recorder",
"removal": "replace"
},
{
"id": "com.coloros.speechassist",
"description": "ColorOS Speech Assistant\n",
"removal": "delete"
},
{
"id": "com.coloros.systemclone",
"description": "System Cloner\nCreates multiple users on device",
"removal": "replace"
},
{
"id": "com.coloros.video",
"description": "Video Player\nDefault Oppo video player with too much permissions (21) for a video player! \nNote: using inbuilt screen recorder you won't be able to open the recorded video from the notification view.\n\nPithus analysis: https://beta.pithus.org/report/4ceb96c23ad0e26ee8eceab293d251f8b1bddaf4a901741ee467e0bb867db6e9",
"removal": "delete"
},
{
"id": "com.coloros.wallet",
"description": "Oppo Wallet\n",
"removal": "delete"
},
{
"id": "com.coloros.weather2",
"description": "ColorOS weather app. Removal seems to trigger a bootloop on some phones. You should try, several users removed this app without any trouble on Oppo/Realme device with Android 11+\nSee: https://github.com/0x192/universal-android-debloater/issues/211",
"removal": "caution"
},
{
"id": "com.coloros.widget.smallweather",
"description": "",
"removal": "delete"
},
{
"id": "com.coremobility.app.vnotes",
"description": "Voicemail App?",
"removal": "replace"
},
{
"id": "com.data.overlay.base.s600ww",
"description": "Some kind of theme overlay for Nokia devices?\nSome users claim to not see any differences when removed.",
"removal": "caution"
},
{
"id": "com.dti.lenovo.tablet",
"label": "Mobile Services",
"description": "Silently installs unwanted packages without user permission.\n",
"web": [
"https://www.andrewnile.co.uk/blog/lenovo-mobile-services/",
"https://beta.pithus.org/report/4ebcc8b5a13851054d85153b0d4086e4b2b5adaee66eaea5843078c6134e9dd7"
],
"removal": "delete"
},
{
"id": "com.duokan.phone.remotecontroller",
"description": "Mi Remote Controller (https://play.google.com/store/apps/details?id=com.duokan.phone.remotecontroller)\nControl your electric appliances with your phone using Mi Remote.\n",
"removal": "delete"
},
{
"id": "com.duokan.phone.remotecontroller.peel.plugin",
"description": "Peel Mi Remote (https://play.google.com/store/apps/details?id=com.duokan.phone.remotecontroller.peel.plugin)\nPeel Mi Remote is a TV guide extension for Xiaomi Mi Remote by \"Peel Smart Remote\".\n",
"removal": "delete"
},
{
"id": "com.elephanttek.faceunlock",
"description": "Standard FaceUnlock functionality?\nUnlock your device by simply looking at the display.\nFace unlock is bad for security and privacy:\nhttps://www.ubergizmo.com/2017/03/galaxy-s8-facial-unlock-photograph/\nhttps://www.kaspersky.com/blog/face-unlock-insecurity/21618/\nhttps://www.freecodecamp.org/news/why-you-should-never-unlock-your-phone-with-your-face-79c07772a28/",
"removal": "caution"
},
{
"id": "com.enhance.gameservice",
"description": "Legacy game Optimizing Service (was replaced by com.samsung.android.game.gos)\nIs supposed to \"improve\" game performance.\n",
"removal": "delete"
},
{
"id": "com.evenwell.AprUploadService",
"description": "Apr Upload Service ???? [MORE INFO NEEDED]",
"removal": "caution"
},
{
"id": "com.evenwell.AprUploadService.data.overlay.base",
"description": "Theme overlay for Apr Upload Service?",
"removal": "caution"
},
{
"id": "com.evenwell.AprUploadService.data.overlay.base.s600id",
"description": "Theme overlay for Apr Upload Service?",
"removal": "caution"
},
{
"id": "com.evenwell.AprUploadService.data.overlay.base.s600ww",
"description": "Theme overlay for Apr Upload Service?",
"removal": "caution"
},
{
"id": "com.evenwell.CPClient",
"description": "CP = Client Provisioning.\nSurely used to push new carrier internet/MMS settings automatically\nMaybe it's useful if carriers change their APN... but you still can change it manually, it's not difficult.\n",
"removal": "replace"
},
{
"id": "com.evenwell.CPClient.overlay.base",
"description": "Theme overlay for CPClient?",
"removal": "caution"
},
{
"id": "com.evenwell.CPClient.overlay.base.s600id",
"description": "Theme overlay for CPClient?",
"removal": "caution"
},
{
"id": "com.evenwell.CPClient.overlay.base.s600ww",
"description": "Theme overlay for CPClient?",
"removal": "caution"
},
{
"id": "com.evenwell.DbgCfgTool",
"description": "Debug Config Tool?",
"removal": "delete"
},
{
"id": "com.evenwell.DbgCfgTool.overlay.base",
"description": "Theme overlay for Debug Config Tool?",
"removal": "caution"
},
{
"id": "com.evenwell.DbgCfgTool.overlay.base.s600id",
"description": "Theme overlay for Debug Config Tool?",
"removal": "caution"
},
{
"id": "com.evenwell.DbgCfgTool.overlay.base.s600ww",
"description": "Theme overlay for Debug Config Tool?",
"removal": "caution"
},
{
"id": "com.evenwell.DeviceMonitorControl",
"description": "Some form of device monitoring?",
"removal": "replace"
},
{
"id": "com.evenwell.DeviceMonitorControl.data.overlay.base",
"description": "Theme overlay for Device Monitor Control?",
"removal": "caution"
},
{
"id": "com.evenwell.DeviceMonitorControl.data.overlay.base.s600id",
"description": "Theme overlay for Device Monitor Control?",
"removal": "caution"
},
{
"id": "com.evenwell.DeviceMonitorControl.data.overlay.base.s600ww",
"description": "Theme overlay for Device Monitor Control?",
"removal": "caution"
},
{
"id": "com.evenwell.OTAUpdate.overlay.base.s600ww",
"description": "Theme overlay for OTA Update UI?",
"removal": "caution"
},
{
"id": "com.evenwell.PowerMonitor",
"description": "Drains more battery than it saves.",
"removal": "delete"
},
{
"id": "com.evenwell.PowerMonitor.overlay.base",
"description": "Theme overlay for Power Monitor?",
"removal": "caution"
},
{
"id": "com.evenwell.PowerMonitor.overlay.base.s600id",
"description": "Theme overlay for Power Monitor?",
"removal": "caution"
},
{
"id": "com.evenwell.PowerMonitor.overlay.base.s600ww",
"description": "Theme overlay for Power Monitor?",
"removal": "caution"
},
{
"id": "com.evenwell.SettingsUtils",
"description": "Settings utils\n(crappy) Audio rendering. \nSee https://gitlab.com/W1nst0n/universal-android-debloater/-/issues/9#note_369056538\n",
"removal": "delete"
},
{
"id": "com.evenwell.SettingsUtils.overlay.base.s600ww",
"description": "Theme overlay for SettingsUtils?",
"removal": "caution"
},
{
"id": "com.evenwell.SetupWizard",
"description": "The first-boot device setup wizard for new/factory reset devices.",
"removal": "delete"
},
{
"id": "com.evenwell.SetupWizard.overlay.base",
"description": "Theme overlay for Setup Wizard?",
"removal": "caution"
},
{
"id": "com.evenwell.SetupWizard.overlay.base.s600ww",
"description": "Theme overlay for Setup Wizard?",
"removal": "caution"
},
{
"id": "com.evenwell.SetupWizard.overlay.d.base.s600ww",
"description": "Theme overlay for Setup Wizard?",
"removal": "caution"
},
{
"id": "com.evenwell.UsageStatsLogReceiver",
"description": "Logging stuff",
"removal": "replace"
},
{
"id": "com.evenwell.UsageStatsLogReceiver.data.overlay.back.s600id",
"description": "Theme overlay for Usage Stats Log?",
"removal": "caution"
},
{
"id": "com.evenwell.UsageStatsLogReceiver.data.overlay.base.s600ww",
"description": "Theme overlay for Usage Stats Log?",
"removal": "caution"
},
{
"id": "com.evenwell.apnwidget.overlay.base.s600ww",
"description": "Some overlay for an APN widget. Overlays are usually themes.\nAPN means Access Point Name and must be configured with carrier values in order for your device to acess the carrier's network.",
"removal": "caution"
},
{
"id": "com.evenwell.autoregistration",
"description": "Spyware app which sends warranty details to China\nhttps://milankragujevic.com/the-trade-of-privacy-for-convenience\nhttps://nitter.net/drwetter/status/1108801189662130176",
"removal": "delete"
},
{
"id": "com.evenwell.autoregistration.overlay.base",
"description": "Theme overlay for a Spyware app?",
"removal": "caution"
},
{
"id": "com.evenwell.autoregistration.overlay.base.s600id",
"description": "Theme overlay for a Spyware app?",
"removal": "caution"
},
{
"id": "com.evenwell.autoregistration.overlay.base.s600ww",
"description": "Theme overlay for a Spyware app?",
"removal": "caution"
},
{
"id": "com.evenwell.autoregistration.overlay.d.base.s600id",
"description": "Theme overlay for a Spyware app?",
"removal": "caution"
},
{
"id": "com.evenwell.autoregistration.overlay.d.base.s600ww",
"description": "Theme overlay for a Spyware app?",
"removal": "caution"
},
{
"id": "com.evenwell.batteryprotect",
"description": "Battery protect is advertised to improve battery performance, but in practice it drains your battery and kills apps aggressively.\nhttps://dontkillmyapp.com/nokia\nNokia decided to stop using this app-killer in the future:\nhttps://www.androidpolice.com/2019/08/27/nokia-hmd-phones-disable-evenwell-background-process-app-killer/",
"removal": "delete"
},
{
"id": "com.evenwell.batteryprotect.overlay.base",
"description": "Theme overlay for Battery Protect?",
"removal": "caution"
},
{
"id": "com.evenwell.batteryprotect.overlay.base.s600id",
"description": "Theme overlay for Battery Protect?",
"removal": "caution"
},
{
"id": "com.evenwell.batteryprotect.overlay.base.s600ww",
"description": "Theme overlay for Battery Protect?",
"removal": "caution"
},
{
"id": "com.evenwell.batteryprotect.overlay.d.base.s600e0",
"description": "Theme overlay for Battery Protect?",
"removal": "caution"
},
{
"id": "com.evenwell.bboxsbox",
"description": "??? [MORE INFO NEEDED]",
"removal": "delete"
},
{
"id": "com.evenwell.bboxsbox.app",
"description": "????\n",
"removal": "delete"
},
{
"id": "com.evenwell.bokeheditor",
"description": "Probably related to adding fake bokeh (a focus blur effect) to photos.",
"removal": "replace"
},
{
"id": "com.evenwell.bokeheditor.overlay.base.s600ww",
"description": "Theme overlay for Bokeh Editor?",
"removal": "caution"
},
{
"id": "com.evenwell.camera2",
"description": "Nokia camera by evenwell (https://play.google.com/store/apps/details?id=com.evenwell.camera2)\n",
"removal": "replace"
},
{
"id": "com.evenwell.custmanager",
"description": "Customer manager\nGiven its name I'd say it is useless but I don't have more info.\n",
"removal": "replace"
},
{
"id": "com.evenwell.custmanager.data.overlay.base",
"description": "Theme overlay for Customer Manager?",
"removal": "caution"
},
{
"id": "com.evenwell.custmanager.data.overlay.base.s600id",
"description": "Theme overlay for Customer Manager?",
"removal": "caution"
},
{
"id": "com.evenwell.custmanager.data.overlay.base.s600ww",
"description": "Theme overlay for Customer Manager?",
"removal": "caution"
},
{
"id": "com.evenwell.customerfeedback.overlay.base.s600ww",
"description": "Theme overlay for Customer Feedback?",
"removal": "caution"
},
{
"id": "com.evenwell.dataagent",
"description": "Data agent\nUsed for backup/restore? [MORE INFO NEEDED]",
"removal": "replace"
},
{
"id": "com.evenwell.dataagent.overlay.base",
"description": "Theme overlay for Data Agent?",
"removal": "caution"
},
{
"id": "com.evenwell.dataagent.overlay.base.s600id",
"description": "Theme overlay for Data Agent?",
"removal": "caution"
},
{
"id": "com.evenwell.dataagent.overlay.base.s600ww",
"description": "Theme overlay for Data Agent?",
"removal": "caution"
},
{
"id": "com.evenwell.defaultappconfigure.overlay.base.s600ww",
"description": "A theme overlay for selecting default apps or something?",
"removal": "caution"
},
{
"id": "com.evenwell.email.data.overlay.base.s600ww",
"description": "Theme overlay for email app?",
"removal": "caution"
},
{
"id": "com.evenwell.factorywizard",
"description": "Likely part of the first-boot device setup (new/factory reset device).",
"removal": "delete"
},
{
"id": "com.evenwell.factorywizard.overlay.base",
"description": "Theme overlay for setup wizard?",
"removal": "caution"
},
{
"id": "com.evenwell.factorywizard.overlay.base.s600ww",
"description": "Theme overlay for setup wizard?",
"removal": "caution"
},
{
"id": "com.evenwell.fmradio.overlay.base.s600ww",
"description": "Theme overlay for Nokia radio app?",
"removal": "caution"
},
{
"id": "com.evenwell.foxlauncher.partner",
"description": "Partner Launcher Customization\nRelated to the Nokia launcher\n",
"removal": "delete"
},
{
"id": "com.evenwell.fqc",
"description": "FQC is a secret test menu. It lets you test the hardware (touch screen, speakers, SD card, SIM card, camera...)\nYou need to type *#*#372733#*#* in the Nokia dialer\n",
"removal": "delete"
},
{
"id": "com.evenwell.hdrservice",
"description": "HDR Service (https://play.google.com/store/apps/details?id=com.evenwell.hdrservice)\nEnhances contrast and sharpness for normal photos, games and videos dynamically.\n",
"removal": "replace"
},
{
"id": "com.evenwell.legalterm",
"description": "Provides terms and conditions (legal notice)",
"removal": "delete"
},
{
"id": "com.evenwell.legalterm.overlay.base.s600ww",
"description": "Theme overlay for some terms and conditions?",
"removal": "caution"
},
{
"id": "com.evenwell.managedprovisioning",
"description": "Nokia implementation of com.android.managedprovisioning? If so it manages Android user accounts, allowing you to add extra accounts. The typical use-case is setting up a corporate profile that is controlled by the employer on an employee's personal device, to keep personal and work data separate.",
"removal": "caution"
},
{
"id": "com.evenwell.managedprovisioning.overlay.base",
"description": "Theme overlay for Managed Provisioning?",
"removal": "caution"
},
{
"id": "com.evenwell.managedprovisioning.overlay.base.s600id",
"description": "Theme overlay for Managed Provisioning?",
"removal": "caution"
},
{
"id": "com.evenwell.managedprovisioning.overlay.base.s600ww",
"description": "Theme overlay for Managed Provisioning?",
"removal": "caution"
},
{
"id": "com.evenwell.mappartner",
"description": "????\n",
"removal": "delete"
},
{
"id": "com.evenwell.nps",
"description": "Net Promoter Score\nPreinstalled survey.",
"removal": "delete"
},
{
"id": "com.evenwell.nps.overlay.base",
"description": "Theme overlay for Net Promoter Score?",
"removal": "caution"
},
{
"id": "com.evenwell.nps.overlay.base.s600id",