Post

Replies

Boosts

Views

Activity

App Intents not recognized by Siri, after already being recognized. No code changes.
I setup multiple intents/shortcuts as shown below. I have renamed the shortcuts and omitted the intent code for privacy/security reasons. The code hasn't changed for a few days, and it stopped working. Siri no longer recognizes voiced commands provided in the phrases, when it used to recognize all of them. I have tried deleting the app, disabling Siri/deleting the dictionary, and restarting my phone, but no luck. Nothing can get it working again. Any suggestions or workarounds? I could only find posts where it never worked for some people. I had it working, but it broke. Thanks in advance. import Foundation import AppIntents @available(iOS 16.0, *) struct MyAppShortcuts: AppShortcutsProvider {     static var appShortcuts: [AppShortcut] {         AppShortcut(             intent: ExportAllTransactionsIntent(),             phrases: ["Make a (.applicationName) record", "Make a (.applicationName) *******"])         AppShortcut(             intent: ExportAllTransactionsIntent1(),             phrases: ["Display (.applicationName) ******** codes", "Show (.applicationName)******* *****])         AppShortcut(             intent: ExportAllTransactionsIntent2(),             phrases: ["Display (.applicationName) ********", "Show (.applicationName) *******"])     } }
2
0
2.1k
Aug ’22