mirror of
https://github.com/leechuanfeng/hyperos-debloat.git
synced 2025-04-04 10:38:57 -04:00
first commit
This commit is contained in:
commit
46dc026dc0
7 changed files with 37747 additions and 0 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
__pycache__
|
||||
platform-tools/
|
||||
app.txt
|
||||
output/
|
88
README.md
Normal file
88
README.md
Normal file
|
@ -0,0 +1,88 @@
|
|||
# Xiaomi HyperOS Debloat List (JUL 2024)
|
||||
If you're frustrated with the pre-installed applications on your new phone, you're not alone. Many of these apps can be redundant or intrusive, often causing issues such as push notifications and excessive battery drain.
|
||||
|
||||
By using ADB (Android Debug Bridge), you can safely remove these unwanted applications without the need for rooting. This method is less risky than manual removal and ensures that system variables remain intact, allowing you to continue receiving OTA updates without issues.
|
||||
|
||||
This script is designed to help Xiaomi phone users remove unnecessary pre-installed applications and bloatware from their devices.
|
||||
By running this script, you can declutter your phone, improve performance, and free up storage space.
|
||||
|
||||
**DISCLAIMER: Use at your own risk. I am not responsible for anything that could happen to your phone. It is highly recommended to use it on a new phone or on a clean state after your phone is reset.**
|
||||
|
||||
## Debloat List (HyperOS 1.0.7.0.UNAMIXM)
|
||||
This list is curated and tested for **HyperOS 1.0.7.0.UNAMIXM**
|
||||
- Xiaomi 14 Ultra Global Edition
|
||||
- Redmi Note 13 Pro+ 5G
|
||||
|
||||
# Setting Up
|
||||
## Download Python
|
||||
Install python on your computer from https://www.python.org/downloads/
|
||||
|
||||
## Download ADB (Android Debug Bridge)
|
||||
Download the platform-tools for ADB
|
||||
https://developer.android.com/tools/releases/platform-tools
|
||||
|
||||
Unzip the folder into this project.
|
||||
|
||||
## Steps to Enable Developer Mode on HyperOS
|
||||
Steps are to be done on your phone.
|
||||
|
||||
1. Open Settings.
|
||||
2. Tap on About phone.
|
||||
3. Tap on OS version multiple times until Developer Mode is enabled.
|
||||
4. Go back to Settings, then select Additional settings.
|
||||
5. Tap on Developer options and toggle it on.
|
||||
6. Scroll down and find USB debugging, then toggle it on to enable USB Debugging.
|
||||
7. Check the instructions and click OK.
|
||||
|
||||
If unsure, please follow some youtube video.
|
||||
|
||||
## Verify Device Is Connected
|
||||
Use a compatible USB cable to connect your phone to a USB port on your computer. If this is the first time connecting your phone to this computer, you may see a prompt on your phone asking you to authorize the connection. Tap Allow or OK to grant permission.
|
||||
|
||||
To verify if your device is properly connected and recognized by ADB (Android Debug Bridge), open Command Prompt or Terminal on your computer,
|
||||
enter the following and you should be able to see a similar output:
|
||||
```
|
||||
./platform-tools/adb devices
|
||||
|
||||
List of devices attached
|
||||
12345abc device
|
||||
```
|
||||
|
||||
# Debloating
|
||||
## Generate List of App On Phone
|
||||
Run the command to get the list of apps on your phone
|
||||
```
|
||||
./platform-tools/adb shell pm list packages > app.txt
|
||||
```
|
||||
|
||||
## Custom Debloat List
|
||||
To customize the list of apps to be removed, you can add the apps into the `debloat_list/donotuninstall.txt`.
|
||||
|
||||
|
||||
## Generate List of App to Uninstall
|
||||
Run the script to get the list of app to uninstall
|
||||
```
|
||||
python main.py
|
||||
```
|
||||
|
||||
Two list will be generated, one will `uninstall_list.txt` the apps that will be uninstalled and `remaining_list.txt` will be the remaining apps.
|
||||
|
||||
## Uninstalling of Apps
|
||||
On Window:
|
||||
Rename uninstall_list.txt to uninstall_list.bat, run the uninstall_list.bat file
|
||||
```
|
||||
./uninstall_list.bat
|
||||
```
|
||||
|
||||
|
||||
On Linux
|
||||
Rename uninstall_list.txt to uninstall_list.sh, run the uninstall_list.sh file
|
||||
```
|
||||
./uninstall_list.sh
|
||||
```
|
||||
|
||||
Otherwise you can run the uninstall command individually in the `uninstall_list.txt`.
|
||||
|
||||
# Reference
|
||||
The debloat list is taken from \
|
||||
https://github.com/0x192/universal-android-debloater/blob/main/resources/assets/uad_lists.json
|
42
debloat_checker.py
Normal file
42
debloat_checker.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
import json
|
||||
|
||||
# Global debloat list
|
||||
with open("debloat_list/uad_lists.json", 'r', encoding='utf-8') as f:
|
||||
data = json.load(f)
|
||||
|
||||
|
||||
#app_package_names = list(data.keys())
|
||||
app_package_names = []
|
||||
for line in data:
|
||||
if 'removal' in data[line] and data[line]['removal'] == 'Recommended':
|
||||
app_package_names.append(line)
|
||||
|
||||
with open("debloat_list/donotuninstall.txt", 'r') as f:
|
||||
donotuninstall_lines = f.readlines()
|
||||
|
||||
donotuninstall = [line.strip() for line in donotuninstall_lines]
|
||||
|
||||
with open("debloat_list/safetouninstall.txt", 'r') as f:
|
||||
safetouninstall_lines = f.readlines()
|
||||
|
||||
safetouninstall = [line.strip() for line in safetouninstall_lines]
|
||||
|
||||
|
||||
def checkDebloat(items):
|
||||
uninstall_list = []
|
||||
remaining_list = []
|
||||
|
||||
for item in items:
|
||||
if item in app_package_names or item in safetouninstall:
|
||||
uninstall_list.append(item)
|
||||
else:
|
||||
remaining_list.append(item)
|
||||
|
||||
final_uninstall_list = []
|
||||
for item in uninstall_list:
|
||||
if item in donotuninstall:
|
||||
remaining_list.append(item)
|
||||
else:
|
||||
final_uninstall_list.append(item)
|
||||
|
||||
return final_uninstall_list, remaining_list
|
229
debloat_list/donotuninstall.txt
Normal file
229
debloat_list/donotuninstall.txt
Normal file
|
@ -0,0 +1,229 @@
|
|||
com.miui.securitycenter
|
||||
com.miui.securityadd
|
||||
com.xiaomi.finddevice
|
||||
com.lbe.security.miui
|
||||
com.android.updater
|
||||
com.miui.securitycenter
|
||||
com.xiaomi.finddevice
|
||||
com.miui.home
|
||||
com.miui.guardprovider
|
||||
com.xiaomi.market
|
||||
com.xiaomi.account
|
||||
com.miui.packageinstaller
|
||||
com.android.updater
|
||||
com.miui.securitycenter
|
||||
com.xiaomi.finddevice
|
||||
com.xiaomi.market
|
||||
com.miui.powerkeeper
|
||||
com.xiaomi.metoknlp
|
||||
com.miui.tsmclient
|
||||
com.miui.accessibility
|
||||
com.miui.backup
|
||||
com.miui.freeform
|
||||
com.miui.face
|
||||
com.miui.miwallpaper
|
||||
com.miui.aod
|
||||
|
||||
com.android.bluetooth
|
||||
com.android.camera
|
||||
com.android.captiveportallogin
|
||||
com.android.keychain
|
||||
|
||||
com.xiaomi.aicr
|
||||
com.xiaomi.bluetooth
|
||||
com.miui.extraphoto
|
||||
com.miui.touchassistant
|
||||
com.miui.settings.rro.device.hide.statusbar.overlay
|
||||
com.miui.settings.rro.device.type.overlay
|
||||
com.miui.misound
|
||||
com.miui.cleaner
|
||||
com.miui.cit
|
||||
com.miui.mishare.connectivity
|
||||
com.miui.miwallpaper.overlay.customize
|
||||
com.miui.wallpaper.overlay
|
||||
com.miui.wallpaper.overlay.customize
|
||||
com.miui.phone.carriers.overlay.h3g
|
||||
com.miui.phone.carriers.overlay.vodafone
|
||||
com.mi.healthglobal
|
||||
com.miuix.editor
|
||||
com.modemdebug
|
||||
com.xiaomi.cameratools
|
||||
com.xiaomi.trustservice
|
||||
com.xiaomi.xmsf
|
||||
com.xiaomi.xmsfkeeper
|
||||
com.wdstechnology.android.kryten
|
||||
com.google.mainline.adservices
|
||||
com.google.android.safetycenter.resources
|
||||
com.google.android.overlay.modules.documentsui
|
||||
com.google.android.overlay.modules.modulemetadata.forframework
|
||||
com.google.android.overlay.modules.permissioncontroller
|
||||
com.google.android.overlay.modules.permissioncontroller.forframework
|
||||
com.google.android.projection.gearhead
|
||||
com.google.android.overlay.gmsconfig.asi
|
||||
com.google.android.overlay.gmsconfig.comms
|
||||
com.google.android.overlay.gmsconfig.geotz
|
||||
com.google.android.overlay.gmsconfig.personalsafety
|
||||
com.google.android.overlay.healthconnect
|
||||
com.google.android.ondevicepersonalization.services
|
||||
com.google.android.onetimeinitializer
|
||||
com.google.android.gm
|
||||
com.google.android.gms.location.history
|
||||
android.autoinstalls.config.Xiaomi.model
|
||||
com.android.bluetoothmidiservice
|
||||
com.android.calllogbackup
|
||||
com.android.cameraextensions
|
||||
com.android.managedprovisioning.overlay
|
||||
com.android.microdroid.empty_payload
|
||||
com.android.overlay.gmscontactprovider
|
||||
com.android.overlay.gmssettings
|
||||
com.android.overlay.gmstelephony
|
||||
com.android.rkpdapp
|
||||
com.android.role.notes.enabled
|
||||
com.android.settings.overlay.miui
|
||||
com.android.systemui.accessibility.accessibilitymenu
|
||||
com.android.theme.font.notoserifsource
|
||||
com.android.virtualmachine.res
|
||||
|
||||
com.bsp.catchlog
|
||||
com.debug.loggerui
|
||||
com.goodix.fingerprint.setting
|
||||
com.google.ambient.streaming
|
||||
com.google.android.accessibility.switchaccess
|
||||
com.google.android.adservices.api
|
||||
com.google.android.apps.docs
|
||||
com.google.android.apps.healthdata
|
||||
com.google.android.apps.maps
|
||||
com.google.android.apps.restore
|
||||
com.google.android.apps.safetyhub
|
||||
com.google.android.as
|
||||
com.google.android.cellbroadcastservice.overlay.miui
|
||||
com.google.android.federatedcompute
|
||||
com.google.android.feedback
|
||||
|
||||
com.mediatek.MtkSettingsResOverlay
|
||||
com.mediatek.SettingsProviderResOverlay
|
||||
com.mediatek.callrecorder
|
||||
com.mediatek.engineermode
|
||||
com.mediatek.gbaservice
|
||||
com.mediatek.lbs.em2.ui
|
||||
com.mediatek.mdmconfig
|
||||
com.mediatek.mdmlsample
|
||||
com.mediatek.miravision.ui
|
||||
com.mediatek.voicecommand
|
||||
com.mediatek.voiceunlock
|
||||
com.mediatek.ygps
|
||||
com.miui.screenrecorder
|
||||
com.android.soundrecorder
|
||||
com.miui.compass
|
||||
com.miui.calculator
|
||||
com.miui.notes
|
||||
com.miui.mediaeditor
|
||||
com.miui.systemui.carriers.overlay
|
||||
com.miui.backup
|
||||
com.miui.securitycenter
|
||||
|
||||
com.android.simappdialog
|
||||
com.android.providers.telephony
|
||||
com.android.wallpaper.livepicker
|
||||
com.fido.asm
|
||||
com.xiaomi.barrage
|
||||
com.miui.miwallpaper.config.overlay
|
||||
com.android.internal.display.cutout.emulation.waterfall
|
||||
com.miui.qr
|
||||
com.android.providers.settings
|
||||
com.android.overlay.gmssettingprovider
|
||||
com.android.phone
|
||||
com.google.android.overlay.modules.ext.services
|
||||
com.android.internal.systemui.navbar.gestural_extra_wide_back
|
||||
com.android.stk.overlay.miui
|
||||
com.android.systemui.gesture.line.overlay
|
||||
android.aosp.overlay
|
||||
com.android.bluetooth.overlay
|
||||
com.android.traceur
|
||||
com.google.android.as.oss
|
||||
com.android.phone.common.overlay.miui
|
||||
com.google.android.apps.messaging
|
||||
com.android.overlay.gmstelecomm
|
||||
com.android.location.fused
|
||||
com.android.vpndialogs
|
||||
com.android.uwb.resources
|
||||
com.miui.screenshot
|
||||
com.android.cellbroadcastreceiver
|
||||
com.google.android.tts
|
||||
com.google.android.modulemetadata
|
||||
com.google.android.cellbroadcastreceiver.overlay.miui
|
||||
com.mediatek.batterywarning
|
||||
com.android.htmlviewer
|
||||
com.android.vending
|
||||
com.miui.home
|
||||
com.google.android.ext.services
|
||||
com.google.android.configupdater
|
||||
com.google.android.overlay.modules.captiveportallogin.forframework
|
||||
com.miui.system.overlay
|
||||
com.google.android.apps.turbo
|
||||
org.ifaa.aidl.manager
|
||||
com.trustonic.teeservice
|
||||
com.android.providers.settings.overlay
|
||||
com.google.android.gms.supervision
|
||||
com.google.android.overlay.gmsconfig.gsa
|
||||
com.mediatek.capctrl.service
|
||||
com.android.networkstack.tethering.inprocess.overlay
|
||||
com.android.wallpaperpicker
|
||||
com.mediatek.ims
|
||||
com.android.providers.userdictionary
|
||||
com.google.android.overlay.gmsconfig.common
|
||||
com.android.cts.ctsshim
|
||||
com.android.bluetooth
|
||||
com.mediatek.location.lppe.main
|
||||
com.aura.oobe.deutsche
|
||||
com.android.internal.display.cutout.emulation.corner
|
||||
com.google.android.gms
|
||||
com.android.storagemanager
|
||||
com.xiaomi.mtb
|
||||
com.miui.miwallpaper.overlay
|
||||
com.android.systemui.overlay.miui
|
||||
com.milink.service
|
||||
com.mediatek.location.mtkgeofence
|
||||
com.android.thememanager
|
||||
com.android.inputsettings.overlay.miui
|
||||
com.miui.huanji
|
||||
com.android.phone.overlay.miui
|
||||
com.android.printspooler
|
||||
|
||||
vendor.qti.qesdk.sysservice
|
||||
com.xiaomi.mirror
|
||||
com.xiaomi.aiasst.vision
|
||||
com.xiaomi.aon
|
||||
com.qti.dcf
|
||||
com.qti.qcc
|
||||
com.qti.qualcomm.deviceinfo
|
||||
com.qti.service.colorservice
|
||||
com.qti.xdivert
|
||||
com.qualcomm.atfwd
|
||||
com.qualcomm.atfwd2
|
||||
com.qualcomm.location
|
||||
com.qualcomm.qti.biometrics.fingerprint.service
|
||||
com.qualcomm.qti.devicestatisticsservice
|
||||
com.qualcomm.qti.performancemode
|
||||
com.qualcomm.qti.powersavemode
|
||||
com.qualcomm.qti.qcolor
|
||||
com.qualcomm.qti.qms.service.connectionsecurity
|
||||
com.qualcomm.qti.qms.service.trustzoneaccess
|
||||
com.qualcomm.qti.remoteSimlockAuth
|
||||
com.qualcomm.qti.ridemodeaudio
|
||||
com.qualcomm.qti.server.qtiwifi
|
||||
com.qualcomm.qti.services.systemhelper
|
||||
com.qualcomm.qti.simcontacts
|
||||
com.qualcomm.qti.trustedui
|
||||
com.qualcomm.qti.uim
|
||||
com.qualcomm.qti.uimGbaApp
|
||||
com.qualcomm.qti.xrcb
|
||||
com.qualcomm.qti.xrvd.service
|
||||
com.qualcomm.uimremoteclient
|
||||
com.qualcomm.uimremoteserver
|
||||
com.quicinc.voice.activation
|
||||
com.rongcard.eid
|
||||
com.android.systemui.overlay.common
|
||||
com.android.angle
|
||||
com.android.cellbroadcastreceiver.overlay.common
|
||||
android.qvaoverlay.common
|
84
debloat_list/safetouninstall.txt
Normal file
84
debloat_list/safetouninstall.txt
Normal file
|
@ -0,0 +1,84 @@
|
|||
com.xiaomi.ab
|
||||
com.xiaomi.aiasst.service
|
||||
com.xiaomi.bluetooth
|
||||
com.xiaomi.gamecenter.sdk.service
|
||||
com.xiaomi.joyose
|
||||
com.xiaomi.mi_connect_service
|
||||
com.xiaomi.micloud.sdk
|
||||
com.xiaomi.migameservice
|
||||
com.xiaomi.miplay_client
|
||||
com.xiaomi.mircs
|
||||
com.xiaomi.mirror
|
||||
com.xiaomi.payment
|
||||
com.xiaomi.powerchecker
|
||||
com.xiaomi.simactivate.service
|
||||
com.xiaomi.xmsf
|
||||
com.xiaomi.xmsfkeeper
|
||||
com.milink.service
|
||||
com.miui.analytics
|
||||
com.miui.audioeffect
|
||||
com.miui.audiomonitor
|
||||
com.miui.bugreport
|
||||
com.miui.cit
|
||||
com.miui.cloudbackup
|
||||
com.miui.cloudservice
|
||||
com.miui.cloudservice.sysbase
|
||||
com.miui.contentcatcher
|
||||
com.miui.daemon
|
||||
com.miui.hybrid
|
||||
com.miui.hybrid.accessory
|
||||
com.miui.maintenancemode
|
||||
com.miui.micloudsync
|
||||
com.miui.miservice
|
||||
com.miui.mishare.connectivity
|
||||
com.miui.misound
|
||||
com.miui.nextpay
|
||||
com.miui.personalassistant
|
||||
com.miui.phrase
|
||||
com.miui.smsextra
|
||||
com.miui.systemAdSolution
|
||||
com.miui.touchassistant
|
||||
com.miui.translation.kingsoft
|
||||
com.miui.translation.xmcloud
|
||||
com.miui.translation.youdao
|
||||
com.miui.translationservice
|
||||
com.miui.voiceassist
|
||||
com.miui.voicetrigger
|
||||
com.miui.vsimcore
|
||||
com.miui.wmsvc
|
||||
com.mobiletools.systemhelper
|
||||
com.android.chrome
|
||||
com.google.android.apps.youtube.music
|
||||
com.linkedin.android
|
||||
com.jewelsblast.ivygames.Adventure.free
|
||||
com.amazon.mShop.android.shopping
|
||||
com.ss.android.ugc.trill
|
||||
com.booking
|
||||
com.xiaomi.scanner
|
||||
com.miui.weather2
|
||||
com.xiaomi.smarthome
|
||||
com.miui.android.fashiongallery
|
||||
com.crazy.juicer.xm
|
||||
com.spotify.music
|
||||
com.sukhavati.gotoplaying.bubble.BubbleShooter.mint
|
||||
com.netflix.mediaclient
|
||||
com.mi.global.bbs
|
||||
com.agoda.mobile.consumer
|
||||
com.xiaomi.midrop
|
||||
com.block.puzzle.game.hippo.mi
|
||||
com.duokan.phone.remotecontroller
|
||||
com.logame.eliminateintruder3d
|
||||
cn.wps.xiaomi.abroad.lite
|
||||
com.xiaomi.calendar
|
||||
com.nf.snake
|
||||
com.google.android.apps.subscriptions.red
|
||||
com.google.android.googlequicksearchbox
|
||||
com.mintgames.wordtrip
|
||||
ctrip.english
|
||||
com.google.android.apps.photos
|
||||
com.mintgames.triplecrush.tile.fun
|
||||
com.miui.cloudservice
|
||||
com.amazon.appmanager
|
||||
com.mi.global.shop
|
||||
com.facebook.katana
|
||||
com.shopee.sg
|
37273
debloat_list/uad_lists.json
Normal file
37273
debloat_list/uad_lists.json
Normal file
File diff suppressed because it is too large
Load diff
27
main.py
Normal file
27
main.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
import os
|
||||
from debloat_checker import *
|
||||
|
||||
file_path = 'app.txt'
|
||||
|
||||
with open(file_path, 'r', encoding='utf-16') as f:
|
||||
lines = f.readlines()
|
||||
|
||||
items = [line.replace('package:', '', 1).strip() for line in lines]
|
||||
|
||||
uninstall_list, remaining_list = checkDebloat(items)
|
||||
uninstall_list.sort()
|
||||
|
||||
# Create directory if the directory not exists
|
||||
if not os.path.exists("output"):
|
||||
os.makedirs("output")
|
||||
# Open the output file to write
|
||||
with open("output/uninstall_list.txt", 'w') as f_out:
|
||||
# Write each item to the output file
|
||||
for item in uninstall_list:
|
||||
f_out.write('platform-tools/adb.exe shell pm uninstall --user 0 ' + item + '\n')
|
||||
remaining_list.sort()
|
||||
# Open the output file to write
|
||||
with open("output/remaining_list.txt", 'w') as f_out:
|
||||
# Write each item to the output file
|
||||
for item in remaining_list:
|
||||
f_out.write(item + '\n')
|
Loading…
Add table
Reference in a new issue