Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Siri is not working in existing project

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.

like image 512
makboney Avatar asked Dec 30 '16 11:12

makboney


People also ask

How do I fix Siri not working on my iPhone?

If "Hey, Siri!" isn't activated on your iPhone, press and hold the home button or side button to activate Siri. Check for "Hey, Siri!" obstructions. If your iPhone is lying face down on any surface, "Hey, Siri!" won't work. If you have a cover on your iPhone that's closed, open it to use "Hey, Siri!" Turn Low Power Mode off.

Why isn't “Hey Siri” working?

If "Hey Siri" doesn't work. On supported iPhone, iPad, and iPod touch models, you can use “Hey Siri” to talk to Siri without holding down the Home or side button.* If “Hey Siri” isn't working, go to Settings > Siri & Search and make sure that "Hey Siri" is on. “Hey Siri” won't respond when: Your device is face down.

How do I set up Siri to work with my Device?

When the Set Up "Hey Siri" screen appears, tap Continue. Say each command that you see on your screen. Tap Done. By default, Siri won't respond when your device is face down or covered unless you go to Settings > Accessibility > Siri and turn on Always Listen for "Hey Siri."

Why isn't Siri working on my HomePod?

If Siri isn't working on your HomePod, check your settings in the Home app. Use Siri on your AirPods or AirPods Pro. Learn which devices support "Hey Siri." Siri availability, features, and commands varies by language, and country and region.


1 Answers

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

like image 141
makboney Avatar answered Sep 28 '22 01:09

makboney