Last active
May 1, 2023 11:03
-
-
Save louisroyer/e4461b01301b9735c33ca774c7c4bc8c to your computer and use it in GitHub Desktop.
Remove some bloatwares on Redmi 9 NFC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Redmi 9 NFC | |
| adb shell pm uninstall --user 0 com.google.android.youtube | |
| adb shell pm uninstall --user 0 com.google.android.googlequicksearchbox | |
| adb shell pm uninstall --user 0 com.android.chrome | |
| adb shell pm uninstall --user 0 com.facebook.services | |
| adb shell pm uninstall --user 0 com.facebook.system | |
| adb shell pm uninstall --user 0 com.facebook.appmanager | |
| adb shell pm uninstall --user 0 com.mi.globalbrowser | |
| adb shell pm uninstall --user 0 com.mi.global.shop | |
| adb shell pm uninstall --user 0 com.miui.videoplayer | |
| adb shell pm uninstall --user 0 com.miui.weather2 | |
| adb shell pm uninstall --user 0 com.google.android.apps.googleassistant | |
| # The following is used to change sms notification sound | |
| #adb shell pm uninstall --user 0 com.android.thememanager | |
| #adb shell pm uninstall --user 0 com.android.thememanager.module | |
| adb shell pm uninstall --user 0 com.google.android.calendar | |
| adb shell pm uninstall --user 0 com.google.android.apps.subscriptions.red | |
| adb shell pm uninstall --user 0 com.google.android.apps.maps | |
| adb shell pm uninstall --user 0 com.miui.player | |
| adb shell pm uninstall --user 0 com.miui.calculator | |
| adb shell pm uninstall --user 0 com.xiaomi.glgm | |
| adb shell pm uninstall --user 0 com.amazon.appmanager | |
| adb shell pm uninstall --user 0 com.google.android.apps.docs | |
| adb shell pm uninstall --user 0 com.google.ar.lens | |
| adb shell pm uninstall --user 0 com.mi.globalminusscreen |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment