After I first build and run my intents project, requesting something from Siri always returns with Sorry, you will need to continue in the app
However, it works every time after that until I rebuild.
I put breakpoints in handler:
override func handler(for intent: INIntent) -> Any {
return self
}
and in handle:
func handle(requestRide intent: INRequestRideIntent, completion: @escaping (INRequestRideIntentResponse) -> Void) {
...
}
The breakpoint in handler
is hit a few seconds after Siri says continue in app
.