Questions tagged [sirikit]

SiriKit is an API exposed by Apple for integrating developer applications with Siri. Use this tag only for questions related to the new Siri APIs in macOS Sierra and iOS 10.

SiriKit related links and guides:

411 questions
0
votes
1 answer

SiriKit: Cannot reply to a message

I just added the Intents Extension to my Project, and decided to try it out using the example code that is added by default. I select the Siri target, run on the device, Siri pops up and I start with: "Search messages in [MyApp]". Method…
Alan Steiman
  • 412
  • 1
  • 4
  • 14
0
votes
1 answer

Siri implementation app getting crash reason Terminating app due to uncaught exception

'com.apple.coreaudio.avfaudio', reason: 'required condition is false: _recordingTap == nil getting crash at the code 1. guard let inputNode = audioEngine.inputNode else { fatalError("Audio engine has no input node") } 2. …
0
votes
0 answers

Simple siri integration

I'm integrating sirikit to my application.ie, searching flights which might come under ride booking category I guess. My requirement is simple. If the user asks the Siri, "Hey Siri, search flights for delhi using my app". it will open my app's…
Nazik
  • 8,696
  • 27
  • 77
  • 123
0
votes
2 answers

Implementing sirikit in my application

I tried implementing sirikit in my mobile application.My requirement is using siri i need to escalate the tickets? And i need to know how to enable siri for the existing provisioning profile in my app.Can we use siri without using provisioning…
ananthi
  • 23
  • 5
0
votes
2 answers

Swift 3 - Run an app with specific keyword by using Siri

According to Intents and thanks to this thread, I know that you can open your app via Siri with "Open [APP NAME]", What I want to know is if it is possible to tell to Siri just only one word like 'Cheese' to open the Camera app or an other specific…
Danyl
  • 2,012
  • 3
  • 19
  • 40
0
votes
2 answers

Siri Kit (Speech to text) disabling my TTS (Text to speech) iOS

I'm trying to run Text To Speech (AVSpeechSynthesizer) along with Speech To Text from Siri Kit, but I'm stuck with it. My TTS works perfectly until I run the code to execute the STT, after that my TTS doesn't work anymore. I debugged the code and…
Rafael Paz
  • 497
  • 7
  • 22
0
votes
1 answer

SIRIKIT not returning bill

I am trying to use sirikit to return a bill that i have stored on firebase. It is not returning the bill that it finds. This is my handle function. I am using getBills function to get my bills from the database: func handle(searchForBills intent:…
0
votes
0 answers

How to close siri UI extension programmatically in swift

I created siri extension include UI, because the way that open my app via url scheme only works in UI extension but not in siri extension. Like this: func configure(with interaction: INInteraction!, context: INUIHostedViewContext, completion:…
0
votes
0 answers

Siri Integration in iOS for Payment transfer without specifying payee

I have to integrate Siri in our application for requesting payments without specifying the payer. It's possible to do? how can I do it? RequestPaymentIntentHandler: #import "RequestPaymentIntentHandler.h" @implementation…
0
votes
1 answer

On my SiriKit demo, application:continueUserActivity:restorationHandler: method did not called

On my SiriKit demo project, I did handle INSendMessageIntent on MyMessageHandler object, and implements the methods define by protocol INSendMessageIntentHandling, one of that: - (void)handleSendMessage:(INSendMessageIntent *)intent completion:(void…
arnoldxiao
  • 21
  • 3
0
votes
1 answer

Resolving parameter for INSendPaymentIntent fails

I am trying to resolve the parameter for the INSendPaymentIntent such that the amount should never be less than zero. The build fails with an error in the else block saying …
Adnan Hussein
  • 261
  • 1
  • 4
  • 14
0
votes
1 answer

SIRI kit INImage

I have been trying to implement SIRI UI. SIRI intent sends image as inimage to Intent UI however, it appear there is no api available to display the content of Inimage I applied to convert using contactImageView =…
Himanshu Ingole
  • 55
  • 2
  • 11
0
votes
2 answers

Sirikit always shows dollar as currency

I'm doing a proof of concept for doing Payments with Siri. I've got everything working except Siri always says dollar instead of euro. I literally say Send 5 euro to Tim. But siri makes dollar out of it. This is my code: class…
user1007522
  • 7,858
  • 17
  • 69
  • 113
0
votes
2 answers

How can I intergrate SiriKit using Objective-C?

I am working on an iOS app similar to Uber and wish to integrate SiriKit to perform various in app functions like requesting a cab, the app has been made using Objective-C and I wish to integrate the SiriKit. What is the best possible way to do…
0
votes
1 answer

SiriKit: call contact with multiple phone numbers

Im make Siri Integration. I have a problem because I don't know how to resolve contacts for contact with two or more numbers. I need something like this: Instead of this Siri offers me to choose two contacts with the same name.
birdy
  • 943
  • 13
  • 25