Last active
February 25, 2021 09:55
-
-
Save lzlrd/372ceffa9157f72529538467238826bf to your computer and use it in GitHub Desktop.
Remove bloatware from Fossil and Skagen Wear OS smartwatches
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
#!/usr/bin/env bash | |
# A shell script to remove bloatware from Fossil and Skagen Wear OS smartwatches. | |
# Diab Neiroukh - 2/Jul/2020 (Licensed under the GNU GPLv3) | |
ticApps=( | |
"com.mobvoi.wear.fitness.aw" \ | |
"com.mobvoi.ticwear.sidewearvoicesearch" \ | |
"com.mobvoi.wear.social.aw" \ | |
"com.mobvoi.wear.account.aw" \ | |
"com.mobvoi.wear.appsservice" \ | |
"com.mobvoi.wear.health.aw" \ | |
"com.mobvoi.wear.neteasemusic.aw" \ | |
"com.mobvoi.ticwear.aw.appstore" \ | |
"com.mobvoi.ticwear.tts" \ | |
"com.mobvoi.wear.system.aw" | |
) | |
suspiciousApps=( | |
"com.dianping.v1" \ | |
"com.sogou.map.android.maps" \ | |
"com.sdu.didi.psnger" \ | |
"ctrip.android.view" \ | |
"com.gotokeep.androidwear" \ | |
"com.amberweather.watch" \ | |
"com.eg.android.AlipayGphone" | |
) | |
for i in "${ticApps[@]}"; do | |
adb shell pm uninstall -k --user 0 "$i" | |
done | |
for i in "${suspiciousApps[@]}"; do | |
adb shell pm uninstall -k --user 0 "$i" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment