is the way to display ’ Daily Activity’ from complication via watch Studio
without pressing Daily Activity button on the main screen of the watch
thanks you
is the way to display ’ Daily Activity’ from complication via watch Studio
without pressing Daily Activity button on the main screen of the watch
thanks you
You can create a button and use Action → Tap → Open App → Custom App and enter the App ID.
Try running simple adb commands from the command prompt
Using File manager copy the address where you installed adb by default
C:\Users\USERNAME\AppData\Local\Programs\WatchFaceStudio\tools\window
(copy the address as text from file manger using right click on the address bar)
Open a command prompt
navigate to the folder address
cd C:\Users\USERNAME\AppData\Local\Programs\WatchFaceStudio\tools\window
Then type
adb connect 192.168.x.x:5555 (where 192.168.x.x is your watch’s IP address).
To find the app ID
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
Samsung Developer Relations