Hi there. First time poster!
I'm attempting to implement App Intents in my app, as part of the App Intent I have included a parameter requiring the user specify one of their 'to do lists'.
@Parameter(title: "List", description: "One of your Marvelist lists.")
var list: MarvelistModels.List
However, I'm receiving the below error in Xcode...
Type 'MarvelistModels.List' does not conform to protocol '_IntentValue'
When I go to the struct for MarvelistModels.List, and attempt to make it conform to _IntentValue, it adds
typealias Specification = type
to my struct... however, I can't quite figure out how to make it conform.
Any help/advice would be greatly appreicated!
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I'm working on a Password Manager app that integrates with the AutoFill Credential Provider to provide stored passwords and OTPs to the user within Safari and other apps.
Password AutoFill works perfectly.
I'm unable to get iOS to register that the app supports OTPs though.
I've followed the Apple documentation here: https://developer.apple.com/documentation/authenticationservices/providing-one-time-passcodes-to-autofill and added "ProvidesOneTimeCodes" to the AutoFill extension's Info.plist, but iOS just doesn't seem to notice the OTP support.
<key>ASCredentialProviderExtensionCapabilities</key>
<dict>
<key>ProvidesOneTimeCodes</key>
<true/>
<key>ProvidesPasswords</key>
<true/>
</dict>
Any help would be greatly appreicated!
Topic:
Privacy & Security
SubTopic:
General
Tags:
Extensions
Entitlements
Autofill
Authentication Services