Siri is not working in existing project

2.5k views Asked by At

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.

1

There are 1 answers

4
makboney On BEST ANSWER

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