Last active
April 22, 2022 17:23
-
-
Save blundell/7c0c3bb17898b28fe8122b0dc230af50 to your computer and use it in GitHub Desktop.
Uninstall all apps on an Android Device that have the intent-filter category IOT_LAUNCHER
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 | |
sp="/-\|" | |
sc=0 | |
spin() { | |
printf "\b${sp:sc++:1}" | |
((sc==${#sp})) && sc=0 | |
} | |
endspin() { | |
printf "\r" | |
} | |
echo "Uninstalling Android Things category apps" | |
# This script is for > DP8 | |
# for < DP8 you need to replace android.intent.category.HOME with android.intent.category.IOT_LAUNCHER on line 25 | |
spin | |
userInstalledPackages=( $(adb shell pm list packages -3 | sed -e "s/^"package:"//" ) ) | |
iotPackages=() | |
for userPackage in "${userInstalledPackages[@]}" | |
do | |
: | |
spin | |
categoryLauncherText=$( adb shell pm dump $userPackage | grep "android.intent.category.HOME") | |
if [ -n "${categoryLauncherText}" ]; then | |
iotPackages+=(${userPackage}) | |
fi | |
done | |
endspin | |
for iotPackage in "${iotPackages[@]}" | |
do | |
: | |
echo "Uninstalling $iotPackage" | |
adb uninstall $iotPackage | |
done | |
echo "Complete" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great idea, thank you!