Skip to content

Instantly share code, notes, and snippets.

@Elektordi
Last active March 21, 2025 23:24
Show Gist options
  • Save Elektordi/ea60d575a690853badc46fc59b9489e4 to your computer and use it in GitHub Desktop.
Save Elektordi/ea60d575a690853badc46fc59b9489e4 to your computer and use it in GitHub Desktop.
Uninstall all stock apps from new android device
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