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
pm uninstall --user 0 com.android.inputmethod.latin | |
pm uninstall --user 0 com.android.camera2 | |
pm uninstall --user 0 com.android.providers.partnerbookmarks | |
pm uninstall --user 0 com.android.emergency | |
pm uninstall --user 0 com.android.printspooler | |
pm uninstall --user 0 com.android.apps.tag | |
pm uninstall --user 0 com.android.dreams.basic | |
pm uninstall --user 0 com.android.dreams.phototable | |
pm uninstall --user 0 com.android.magicsmoke | |
pm uninstall --user 0 com.android.managedprovisioning |
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 | |
## Install if jq package doesn't exist | |
if which jq; then echo "jq exists"; | |
else | |
if which yum; then | |
yum jq | |
elif which apt-get; then | |
apt-get install jq | |
elif which apk; then | |
apk add --no-cache jq |