On Tap start tracking activity like walk, run, swimming

I want to add on tap behaviour to icon which would start activity tracking.

Example: Walk icon on tap start activity tracker of walk.

Can this be done? How?

Right now I think you can only open the start page and not a specific activity page.

You can set a tap action to open any app ID. below is how to get an app ID but keep in mind that the app ID can change or not supported on all devices. I’d recommend you’d only want to use this for your personal use.

Try running simple adb commands

adb connect 192.168.xxx.xxx:5555 (your watch IP address & enable debugging)
adb shell
pm list packages

You will get an output list like this
package:com.android.cts.priv.ctsshim
package:com.google.android.ext.services
package:com.android.providers.telephony

The app ID is after package:

com.samsung.android.wear.shealth/com.samsung.android.wear.shealth.app.heartrate.view.HeartRateActivity

go to play store and download the Package names app . open it and you will see the apps that are installed on your phone.

Hope this helps,

Ron

2 Likes