8

I have to initiate a voip call through my app using Siri. It is working in demo project but when I am adding the Intents Extension into my existing project then Siri is not working anymore.

In system settings the my app is not showing in App Support section. Plist configuration is like:

Here is my info.plist

Also see the plist configuration of extension:

Extion plist

Whenever i am giving any voice command it's saying "I wish I could, but < app > hasn't set that up with me yet."

I have also tried by enabling Siri from capabilities. Let me know what I am doing wrong there.

Thank you.

makboney
  • 1,808
  • 1
  • 17
  • 34
  • 1
    `When installing your extension for the first time, Siri may not immediately recognize your app extension and you may need to wait several minutes before you can issue any relevant commands. Similarly, when updating your extension’s Info.plist file, you may need to wait several minutes before Siri recognizes any changes.` https://developer.apple.com/documentation/sirikit/creating_an_intents_app_extension – josh527 Sep 19 '18 at 22:10

1 Answers1

25

Finally I found the root cause, whenever I was adding the Intent Extension the default deployment target was set to 10.2(Xcode 8.2). And when I tried on iOS 10.1 device, Siri ignored my app due to that target configuration. That is why my app was not showing in App Support section.

Please check whether the Deployment Info for your Extension Target covers your device OS version or not.

enter image description here

makboney
  • 1,808
  • 1
  • 17
  • 34