Last active
February 1, 2024 13:50
-
-
Save danpawlik/be1b0c99e8d014f73da36bc257858cf5 to your computer and use it in GitHub Desktop.
Disable MIUI dialer and other apps in xiaomi.eu rom
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
#!/bin/sh | |
# NOTE: Make sure, that you install Google dialer and Google messaging | |
sudo adb shell pm disable-user --user 0 com.android.contacts | |
sudo adb shell pm disable-user --user 0 com.android.thememanager | |
sudo adb shell pm disable-user --user 0 com.android.providers.downloads.ui | |
sudo adb shell pm disable-user --user 0 com.android.mms | |
# TO enable back: sudo adb shell pm enable <NAME> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment