You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some users of our app are seeing crashes with the UUID library when there is a lock code on their phone. If the phone was locked the keychain system was returning error -25308.
The default access attribute for the kechain system used to be kSecAttrAccessibleAlways, but now it is iskSecAttrAccessibleWhenUnlocked; so we had to add a specific kSecAttrAccessible attribute on the keychain query to fix this problem.
Have seen a similar issue? If yes, did you follow a different approach? Thank you.
The text was updated successfully, but these errors were encountered:
Some users of our app are seeing crashes with the UUID library when there is a lock code on their phone. If the phone was locked the keychain system was returning error -25308.
The default access attribute for the kechain system used to be kSecAttrAccessibleAlways, but now it is iskSecAttrAccessibleWhenUnlocked; so we had to add a specific kSecAttrAccessible attribute on the keychain query to fix this problem.
Have seen a similar issue? If yes, did you follow a different approach? Thank you.
The text was updated successfully, but these errors were encountered: