Questions tagged [intents-extension]

27 questions
0
votes
0 answers

watchOS: How to respond to app being opened via an intent?

I've successfully added a StartWorkoutIntent to my watch app for when the action button is pressed, however I need to be notified when the app was opened via the intent. Apple's docs say to implement this handle function below which I have in my…
GarySabo
  • 5,806
  • 5
  • 49
  • 124
0
votes
1 answer

When running the IntentsExtension, how can I also debug the main app?

I'm trying to implement the StartCallIntent in my app. The intent first goes through the extension to resolve contacts, determine if the app can handle the intent, etc.. So far, I have the extension part working, and I'm able to debug it. However,…
johnny
  • 1,434
  • 1
  • 15
  • 26
0
votes
1 answer

INPlayMediaIntent ignores terms like 'music' and 'radio'

I'm working on a media app, and I'd like to improve its Siri interactions. I've implemented an Intents extension, with "radio" as the media category, and I'm refining the resolveMediaItems method. Typically if I tell Siri Play in…
c_booth
  • 2,185
  • 1
  • 13
  • 22
0
votes
1 answer

In Xcode 11.4/iOS 13.4 I'm finding that NSUserActivity doesn't always respond to setSuggestedInvocationPhrase

I have a project that used to successfully create and update NSUserActivity objects to provide Siri shortcuts and Handoff. I returned to this code for the first time in a while today and was a little surprised to find that if I have a debug build on…
Timothy Sanders
  • 206
  • 3
  • 7
0
votes
1 answer

SiriKit Intents Extension: Avoid / auto resolve parameter when values are provided dynamically

I am building an app that uses Intents Extension to track various metrics, like weight, steps, hearth rate, etc. I want to offer to the user units of measurement to pick from, based on the metric he wants to track. For example, if the user tracks…
mawus
  • 1,178
  • 1
  • 11
  • 25
0
votes
0 answers

INActivateCarSignalIntent SiriKit audible/visual intent confusion

In SiriKit there is INActivateCarSignalIntent which allows you to recognize when a user asks for an "audible" or "visual" signal. For example if you say "Honk my car’s horn." INCarSignalOptions.audible will be passed to your handler. If you say…
jaju
  • 1
  • 2
0
votes
1 answer

xamarin intent extension with netstandard cause MT2001 error

I'm trying to add siri intent to my application. I've created intent extensions project, than created ios library project (kit project as in a documentation) which has reference to .netstandard project with shared logic (core). The core project use…
l1pton17
  • 444
  • 4
  • 16
0
votes
1 answer

How to customise SiriKit intent extension for shortcuts app to ask allow access?

We are allowed to build custom intent for Siri, by extending SiriKit. Moreover, Apples present how to manage basic integrations and customizations to Siri Shortcuts and Shortcuts app Link for shortcuts app Nonetheless, some apps have their own…
0
votes
1 answer

iOS SiriKit: passing data between Intents 'resolve' and 'handle' methods

I am trying out the new iOS13 SiriKit Intents with Customizable Parameters. It's working fine ... I have multiple parameters, and the 'resolve' method is called for each of them, and then the 'confirm', and then the 'handle' as expected. But I'm…
Z S
  • 7,039
  • 12
  • 53
  • 105
0
votes
1 answer

didSelectRowAtIndexPath at Intents UI Extension not being called

I have 3 Targets in my app, the main one, an Intents Extension and a Intents UI Extension. The "Intents UI Extension" target contains an Storyboard with a ViewController containing an UITableView. When I use the voice shortcut I can see results on…
brduca
  • 3,573
  • 2
  • 22
  • 30
0
votes
1 answer

IntentsUI extension not reached for INSearchForNotebookItemsIntent

Implementing both custom and standard SiriKit intents and generally having good success. In principle, in the info.plist of both the Intents and IntentsUI extensions, you include the intent class supported, and the UI extension is run after the…
JKaz
  • 765
  • 6
  • 18
0
votes
1 answer

Code Signing error when building on device

I am just trying to run the test code on the Apple Dev site for CallKit and can get the code to run fine on the onscreen simulator, but not on my actual iPhone X external device. I am getting the error Code Signing Error: Signing for…
douglasrcjames
  • 1,133
  • 3
  • 17
  • 37
1
2