Skip to content

Instantly share code, notes, and snippets.

@chaoscreater
Forked from bogas04/Unbloat-ColorOS.md
Last active March 7, 2024 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chaoscreater/371e0024c41d1dd3018ed070cf51a22a to your computer and use it in GitHub Desktop.
Save chaoscreater/371e0024c41d1dd3018ed070cf51a22a to your computer and use it in GitHub Desktop.
Android - Unbloat-ColorOS #Android

So you bought a ColorOS powered phone (Oppo/Realme) and aren't liking the decisions made by OS.

Launcher

I use Customized Pixel Launcher which allows me to hide apps from App Drawer and get notification drawer by swiping down on homescreen. That pretty much makes the phone look like stock android.

Bloatware Apps

The second thing you would want to do is uninstall useless apps that can't be disabled. Note: You may just hide them using above launcher and not necessarily remove the apps as it might effect some functionality.

You need to get to the ADB Shell. Follow the guide here.

To do this you need to

  • Enable Developer Options on your phone
  • Enable USB Debugging in Developer Options
  • Install adb on your PC/Mac
  • Get into adb shell.

The guide above goes through all these steps, or watch this video to get to step 1 and 2.

Note: The following steps are reversible by reinstalling them again.

adb shell cmd package install-existing com.the.package.name

Find packages

Use following command to find packages

pm list packages -f

Compass App

pm uninstall -k --user 0 com.coloros.compass2

Caveat: No real consequences.

Video App

pm uninstall -k --user 0 com.coloros.video

Caveat: Using inbuilt screen recorder won't be able to open the recorded video from notification, however you can find it in your choice of Video Player.

Photos App

pm uninstall -k --user 0 com.coloros.gallery3d

Caveat: Camera app won't be able to open the photos, and you lose some of the default wallpapers (Static).

Music App

pm uninstall -k --user 0 com.oppo.music

Caveat: I honestly don't care much but I guess Recorder app would fail to recordgings?

Themestore App

pm uninstall -k --user 0 com.nearme.themestore

Cavaet: I guess you would fail to get wallpapers from themestore?

Clone App

pm uninstall -k --user 0 com.coloros.oppomultiapp pm uninstall -k --user 0 com.coloros.backuprestore

I think both are needed to remove it properly. I've never opened the app lol.

Browser App

pm uninstall -k --user 0 com.nearme.browser

Help Mozilla by testing their Firefox Preview!

Google Keep Notes App

pm uninstall -k --user 0 com.google.android.keep

Didn't like the fact I couldn't uninstall this app, so I uninstalled it. lol

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