Skip to content

Instantly share code, notes, and snippets.

@spectrMeltdown
Last active August 31, 2026 20:44
Show Gist options
  • Select an option

  • Save spectrMeltdown/4bf5bbb03172acabe02721fd4c8729e1 to your computer and use it in GitHub Desktop.

Select an option

Save spectrMeltdown/4bf5bbb03172acabe02721fd4c8729e1 to your computer and use it in GitHub Desktop.
Debloat Script for Tecno
<#
DEBLOAT SCRIPT FOR TECNO PHONES
NOTES/REMINDERS
- Check the "POSSIBLY USEFUL FOR YOU" section before proceeding. Comment out any packages you need.
- I have tested all these removals on my Tecno Pova (last Nov 2023). Should have the same bloat on other Tecno models too.
- Note that some apps will auto install after system update. Just run script again.
- Grabbed the other package names from Universal Android Debloater here on Github (I created this script because UAD was lacking
a lot of packages)
MANUAL COMMANDS
Uninstall app:
- adb shell pm uninstall --user 0 "<PACKAGE NAME>"
Reinstall app:
- adb shell cmd package install-existing "<PACKAGE NAME>"
#>
$debloatList = @(
######################################################
############## POSSIBLY USEFUL FOR YOU ###############
######################################################
# OEM
"com.transsion.smartpanel", # Gamemode, videoassistant, sidepanel. Collects data. Games work fine/great without it.
"com.transsion.magicfont", # Font changer on phone (has questionable permissions)
"com.transsion.filemanagerx", # there are better alternatives
"com.transsion.notebook", # there are better alternatives
"com.transsion.compass", # there are better alternatives (has questionable permissions)
"com.transsion.scanningrecharger", #qr code scanner, there are better alternatives
"com.transsion.zahooc", # peek proof, theft alert, etc
"com.transsion.tabe", # cloud sync for Tecno account
# ANDROID
"com.android.chrome", # Firefox is better and has adblock too.
"com.android.cellbroadcastreceiver", #receive popup about natural disasters. Runs in background whilst in airplane mode
"com.android.emergency", # show emergency info on lockscreen & power menu
# GOOGLE
"com.google.android.apps.youtube.music", # There is a Revanced version of this
"com.google.android.youtube", # Use Youtube Revanced for no ads
"com.google.ar.core", # play services for augmented reality (e.g. pokemon go, etc)
"com.google.android.cellbroadcastreceiver" , # Wireless Emergency Alerts
"com.google.android.cellbroadcastservice", # Wireless Emergency Alerts
"com.google.android.cellbroadcast", # Wireless Emergency Alerts
"com.google.android.apps.googleassistant",
"com.google.android.tts" , # Google speech-to-text.
"com.google.android.projection.gearhead" , # Android Auto
"com.google.android.marvin.talkback", # Android Accessibility
#######################################
############## USELESS ################
#######################################
# OEM
"com.rlk.weathers" , # full with ads
"com.talpa.hibrowser", # default phone browser with lots of ads
"com.transsion.phonemaster" , # old phone master app on playstore
"com.transsion.phonemanager",
"com.transsion.plat.appupdate", # app update for palm store
"net.bat.store", # AHA games. Displays pop-ups
"com.transsnet.store", # Palm store. Has unsecure apps
"com.trassion.batterylab", # ironically, you get better battery without it. Has questionable permissions.
"com.transsion.carlcare", # after sales service app. Full of trackers.
"com.transsion.childmode", # control what user can do to phone. Intrusive and sends data to Google.
"com.transsion.hamal", # user experience logging app
"com.transsion.kolun.assistant", # nearly no code in apk
"com.transsion.magazineservice.hios", # trending news, games, wallpapers on lockscreens
"com.transsion.aivoiceassistant" , # Ella translate
"com.transsion.mol",
"com.transsion.tecnospot" , # useless and full of trackers
"com.transsion.trancare" , # Telemetry
"com.transsion.videocallenhancer", # beauty effect in Whatsapp video call. Talks to google ads service.
"com.trassion.magicshow", # bad video player
"com.transsion.healthlife",
"com.transsion.wezone",
"com.transsion.chromecustomization",
"com.transsion.letswitch",
"com.funbase.xradio", #runs in background, questionable permissions. Other say this displays the ads.
"com.transsion.fmradio",
"com.transsion.statisticalsales", # used by manufacturer
"com.transsion.agingfunction" , # used by manufacturer
"cn.wps.moffice.lite.abroad.transsion",
"com.idea.questionnaire", # occasionally notifies survey questionnaires
# ANDROID
"com.android.tag" , # support from NFC tags (NFC tags will still work without this)
"com.android.bluetoothmidiservice", # for bluetooth MIDI devices
"com.android.egg",
"com.android.calllogbackup", # Runs in background
# GOOGLE
"com.google.android.apps.nbu.files" , # Runs in background
"com.google.android.apps.restore", # use to pull android system backups from google account
"com.google.android.apps.turbo", # device health services. Useless
"com.google.android.ims",
"com.google.android.feedback", # app crash report
"com.google.android.gms.location.history",
"com.google.android.googlequicksearchbox",
"com.google.android.onetimeinitializer",
"com.google.android.partnersetup",
"com.google.android.printservice.recommendation", # printing will still work
"com.android.providers.partnerbookmarks", # some bookmarks by Google
"com.android.traceur", # only useful for android devs
"com.android.hotwordenrollment.okgoogle", # "OK Google" detection
"com.android.hotwordenrollment.xgoogle", # "OK Google" detection
# MEDIATEK
"com.mediatek.callrecorder" ,
"com.mediatek.engineermode" , # that dial secret code in phone app
"com.mediatek.mdmconfig" , # IT department reach inside your phone in background
# OTHER
"com.facebook.appmanager" , # handles facebook updates (you can still update without it)
"com.facebook.services", # searches nearby shops & establishments
"com.facebook.system" # tells you to install FB
# NOT SAFE!!
#"com.tech.palm.id" # disables settings app
#"com.skyroam.silverhelper" # app permissions keep resetting
)
foreach ($package in $debloatList) {
& adb shell pm uninstall --user 0 $package
}
@inscaped

Copy link
Copy Markdown

Thanks a lot! Feels so much better now.

@MarkHwyll

Copy link
Copy Markdown

Thanks alot all this helped so much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment