I’m working on window using MAUI and I am building for android and ios platfoms.
Here is the code work well on Android but get error ‘Error adding record: MissingEntitlement’ on ios
await SecureStorage.SetAsync("access_token", userAccount.token);
I am using a ios simulator connect from a mac.
In Platforms/iOS/Info.plist, I added these code
<key>keychain-access-groups</key>
<array>
<string>$(AppIdentifierPrefix)com.[my app id here]</string>
</array>
Any idea to solve it?
New contributor
Hoàng Huy Nguyễn Song is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.