Last active
March 21, 2025 23:24
-
-
Save Elektordi/ea60d575a690853badc46fc59b9489e4 to your computer and use it in GitHub Desktop.
Uninstall all stock apps from new android device
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
Uninstall all stock apps from new android device: | |
``` | |
adb shell pm list packages -f | grep /preloadapp/ | cut -d= -f2 | xargs -I% adb uninstall % | |
adb shell rm /sdcard/test.mp4 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment