I am trying to build a companion app for my watch faces and am looking at a code snippet google provided for launching the Play Store link from the phone app on to the watch screen.
The code can be found here.
I’m looking at the end of the code which asks me to identify the “capability” of the watch face, which seems to be like a unique identifier or something. The code in question is this:
// Name of capability listed in Wear app’s wear.xml.
// IMPORTANT NOTE: This should be named differently than your Phone app’s capability.
private const val CAPABILITY_WEAR_APP = “verify_remote_example_wear_app”
Any idea what this is referencing or how we would get that out of WFS?
Thanks!