Situatie
Do you know it is possible to debloat WearOS to save a little more battery?
Solutie
-
Downloaded portable version of ADB from here. For more info: xda (just for referrence).
-
Enabled Developer Settings. Here is how.
-
Enabled “Debug over Wi-Fi”. Here is how. Note the IP_Address:PortNumber.
-
Unzipped the “Portable ADB” and double clicked to open “cmd-here.exe” file OR open command prompt and navigate to the unzipped folder.
-
Typed following commands:
adb devices
adb connect IP_Address:PortNumber
-
List packages in .txt file for easy copy pasting.
Enabled package: adb -s IP_Address:PortNumber shell pm list packages -e > enabled_packages.txt
Disabled package: adb -s IP_Address:PortNumber shell pm list packages -d > disabled_packages.txt
To uninstall package, opened shell by: adb shell
Uninstall a specific package: Example: pm uninstall --user 0 com.fossil.elabel
I kept all the com.google and com.android packages. I also kept 3 Fossil packages:
com.fossil.wearables.batterysaver
=> Fossil’s Batterysaver;
com.google.android.theme.darter.fossil
com.google.android.buttons.darter.fossil
Some of the packages that I uninstalled:
com.mobvoi.wear.health.aw
com.dianping.v1
com.sogou.map.android.maps
com.sdu.didi.psnger
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.neteasemusic.aw
com.google.android.inputmethod.pinyin
com.mobvoi.ticwear.aw.appstore
ctrip.android.view
com.gotokeep.androidwear
com.amberweather.watch
com.eg.android.AlipayGphone
adb shell cmd package install-existing <name of package>
Leave A Comment?