Last active
December 27, 2017 00:24
-
-
Save yoosefi/bbf4222717a72e69da9605b14e10b727 to your computer and use it in GitHub Desktop.
best-effort package removal for android bloatware, via adb
This file contains 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/bash | |
# best-effort package removal via adb. | |
# use on android bloatware. | |
# | |
# the first and only argument to this script is the package name. | |
for x in uninstall disable hide clear; do | |
echo $x | |
adb shell pm $x $1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment