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?
Post
Replies
Boosts
Views
Activity
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) *******"])
}
}