Post

Replies

Boosts

Views

Created

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.4k
Aug ’22
iOS 16 beta 5 bugs. "Setup verification codes using" section is gone from passwords.
The "Setup verification codes using" section is gone from the passwords section in Settings. During the first beta or two I saw it there, and could register my app for otpauth in the urls section in Info in XCode. However, now this is completely gone in recent betas. Is this intentional?
Replies
4
Boosts
1
Views
2.1k
Activity
Aug ’22
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) *******"])     } }
Replies
2
Boosts
0
Views
2.4k
Activity
Aug ’22