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

(Siri) Create own resolve method

I have created an Intents Extension (Siri). How can I create my own resolve method? Example resolve method: func resolvePickupLocation(for intent: INRequestRideIntent, with completion: @escaping (INPlacemarkResolutionResult) -> Void) { .. } I want…
Andrei Lupu
  • 154
  • 1
  • 7
0
votes
1 answer

Read BLE data using sirikit

Im trying to add Siri integration to my app. Intended for reading measurements from BLE device. How can I prompt user to turn on Bluetooth and continue the discussion with Siri without ending the session. Break in the sense going to settings may…
Saranjith
  • 11,242
  • 5
  • 69
  • 122
0
votes
2 answers

This app contains an app extension that specifies an extension point identifier that is not supported on this version of iOS

I'm trying to execute an app with a SiriKit extension in a physical device (iPhone 7 and iOS 11.1.2) with XCode 9.2. The problem is that the app builds successfully, but it cannot been installed and an error appears: This key in the Info.plist…
beren_00
  • 1
  • 2
0
votes
0 answers

Changing the way that a SiriKit payment can be phrased

I'm trying to make a bill payment app using SiriKit's INPayBillIntent. I've set a custom bill organization type as below: INVocabulary.shared().setVocabularyStrings(["Devon"], of: .paymentsOrganizationName) The problem is with custom vocabulary…
Mohamad Sheikh
  • 283
  • 2
  • 7
0
votes
1 answer

Sirikit - Is there a way siri can allow us to customize the talkback

I am trying to implement an airlines app which will talkback in text and return miles for the users. I am using INSearchForAccountsIntentHandling protocol to implement it. Like I want siri to reply saying "Your miles for the account no: 1000211 is…
lifemoveson
  • 1,661
  • 8
  • 28
  • 55
0
votes
1 answer

How to debug Siri extension in 'Type to Siri' mode?

There is an option in iOS 11 global preferences: General/Accessibility/Type to Siri. If it is enabled, when you open Siri it shows you a text field into which you can type your request instead of saying it. This option works fine when I run Siri…
Dmitry Klochkov
  • 2,484
  • 24
  • 31
0
votes
1 answer

Registering Custom Intent for SiriKit in my ios app

According to the Apple online documentation, SiriKit supports only specific domains for now. Our app is a gift based app that you can send different kind of gifts like birthday gift, mother day gift etc. We want to make a custom Siri domain (like…
ondermerol
  • 524
  • 1
  • 11
  • 29
0
votes
1 answer

Siri cannot access my Appliaction data to do the tasks

I am developing a Siri enabled (Payments Domain) Application. If I open my application first time and do not answer the Siri Authorization pop-up and say "Hey Siri send money with my 'Application Name'", Siri answers as "I need to access your…
ondermerol
  • 524
  • 1
  • 11
  • 29
0
votes
2 answers

SiriKit Intents UI - Payment Domain - Center Area is repeated three times

I am using SiriKit for Payment Domain and when user say "Send 10 $ to Ronoldo", my custom UI is shown. Although there is only 1 label in my custom view, SiriKit shows the IntentsUI as it has three same label as image below. I think my view is…
ondermerol
  • 524
  • 1
  • 11
  • 29
0
votes
0 answers

SiriKit for iOS Email App

I'm creating a 3rd party email app and I wanted to know if it's possible to use SiriKit as part of the Messaging domain? Will it be approved by Apple? Thanks.
Omi
  • 31
  • 2
0
votes
1 answer

iOS | Can I use SiriKit to authenticate user with his/her voice?

I am brainstorming and came up with an idea of authenticating user with his/her voice. Googling around didn't give me anything I need. I've found some resources about voice authentication but can I do it with SiriKit? That's the question. So I'm…
Arda Oğul Üçpınar
  • 881
  • 1
  • 14
  • 38
0
votes
2 answers

How do I embed my app commands with siri or any other voice activation library

Basically, I want my app to be voice activated If user asks my app to open then it should open if the user says something it has to be typed in the textbox if the user says to click on a button it has to be done if the user wants to be voice read…
Rajan M
  • 345
  • 3
  • 22
0
votes
0 answers

Swift - Stop speech recognition on no talk [iOS 10]

I am working on an app that uses the new Speech framework in ios 10 to do some speech-to-text stuff. What is the best way of stopping the recognition when the user stops talking? private func startRecording() { isRecording = true if let…
0
votes
1 answer

INCreateNoteIntent groupName always null

When creating a note with Sirikit, I can resolve the title and the content but not the groupName. Siri understands the folder name but po intent always returns groupName = "". func resolveGroupName(forCreateNote intent: INCreateNoteIntent, with…
Jan F.
  • 1,681
  • 2
  • 15
  • 27
0
votes
1 answer

searchTerms is empty in INSearchForPhotosIntentHandling

I'm developing an app that searches for photos in my database using the SiriKit API. So far, Siri recognizes my app and the command for searching photos, but, when the confirm and the handle (INSearchForPhotosIntentHandling delegate) methods are…
herd
  • 155
  • 2
  • 19