Skip to content

Instantly share code, notes, and snippets.

@bogas04
Last active December 5, 2023 12:31
Show Gist options
  • Save bogas04/4d32cc19c653d36b1ce33413b015931f to your computer and use it in GitHub Desktop.
Save bogas04/4d32cc19c653d36b1ce33413b015931f to your computer and use it in GitHub Desktop.

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.
./adb shell

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

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.

SMS/Messages App

pm uninstall -k --user 0 com.android.mms

Call/Contacts App

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

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

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

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

@Xanaxus
Copy link

Xanaxus commented Oct 13, 2021

When I use "pm uninstall -k --user 0 com.nearme.themestore" , it gives me error... "Failure [DELETE_FAILED_INTERNAL_ERROR]" Although all other app removal worked just fine. I could not find package names for 'App Market'

You can try to disable it

@Wrawller117
Copy link

When I use "pm uninstall -k --user 0 com.nearme.themestore" , it gives me error... "Failure [DELETE_FAILED_INTERNAL_ERROR]" Although all other app removal worked just fine. I could not find package names for 'App Market'

You can try to disable it

Are you sure that disabling this application will not get the device into boot loop for my device is no longer in warranty. But if won't, then could you please send the codes for doing so?

@Xanaxus
Copy link

Xanaxus commented Oct 15, 2021

When I use "pm uninstall -k --user 0 com.nearme.themestore" , it gives me error... "Failure [DELETE_FAILED_INTERNAL_ERROR]" Although all other app removal worked just fine. I could not find package names for 'App Market'

You can try to disable it

Are you sure that disabling this application will not get the device into boot loop for my device is no longer in warranty. But if won't, then could you please send the codes for doing so?

It won't I did it to my new phone
adb shell pm disable-user --user 0 whatever pkg

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