Skip to content

Instantly share code, notes, and snippets.

@lazerl0rd
Last active February 25, 2021 09:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lazerl0rd/372ceffa9157f72529538467238826bf to your computer and use it in GitHub Desktop.
Save lazerl0rd/372ceffa9157f72529538467238826bf to your computer and use it in GitHub Desktop.
Remove bloatware from Fossil and Skagen Wear OS smartwatches
#!/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