Prior to WatchOS 5 beta 7,8, I was able to launch my Watch App via Siri voice shortcut. Now the watch always responds with "Continue on iPhone". Have used a variety of response codes, including .continueInApp (shown below)
class MyIntentHandler: NSObject, MyIntentHandling {
func handle(intent: MyIntent, completion: @escaping (MyIntentResponse) -> Swift.Void) {
completion(MyIntentResponse(code: .continueInApp, userActivity: nil))
}
}
The shortcut works fine when invoking from iPhone. Also the SoupChef example works fine on watch for presenting an IntentUI. This is difficult to trackdown as the console is not connecting to Watch series 0,2,3
Is anyone able to launch their app on the Watch from a shortcut, lately?
Thanks!