Hi,
I have developed INSendPaymentIntent iOS. And when I ask Siri to send money it does.
I am developing the same Siri Intent for watchOS. And, when I ask Siri it asks me to proceed with Open App.
It does not even stop at the break point of intent Handler init.
@available(watchOS 3.2, *)
open class INSendPaymentIntent : INIntent {
public init(payee: INPerson?, currencyAmount: INCurrencyAmount?, note: String?)
@NSCopying open var payee: INPerson? { get }
@NSCopying open var currencyAmount: INCurrencyAmount? { get }
open var note: String? { get }
}INSendPaymentIntent is available on watchOS too!
But, when I handle it, Siri asks to open the app on the phone and proceed.
Can somebody give pointers?