-
Notifications
You must be signed in to change notification settings - Fork 788
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS 15 support #530
Comments
Same situation here, and pretty blocking by the way. I'll add more information as soon as I have it. |
This line causing the error as I've looked |
@khose Anything? it's blocker for us too |
@leocallas @khose I can hardly reproduce the problem. Please share the actual code you wrote. If possible, please share a small project that reproduces the problem. Thanks for reporting. |
@kishikawakatsumi Actually, I've reproduced this on KeychainAccess example project as well. Also, further testing shows that It's not happening on every device. For example, error occurs on iPhone 12 (iOS 15.1), but not on iPhone 11 (iOS 15.1), but also occurs on iPhone 12 (iOS 15.0.2). Couldn't catch a pattern yet. :( |
No news from our side. I've debugged it and indeed it doesn't happen on every device. And in our case, it happens on the simulator 100% of times (XCode Version 13.1 (13A1030d), simulators running iOS 15). We have a pretty tight deadline so we can't dedicate much time to this. Our workaround so far is to remove biometric accessibility in simulators and hope our tiny user base doesn't experience the issue on their devices. We have just added so lines to avoid using biometry on simulators:
I'm sorry I can't add a lot more information right now. |
Is there an update on this? This is affecting our production apps. |
This is how I can reproduce it, using Xcode 13.1. In the Example-iOS project, modify
Run the app in a simulator running iOS 15 and add a new entry. When you hit save, line 741 of Keychain.swift throws, If you use a 14.x simulator (which can be installed from Xcode -> Preferences -> Components), the save action succeeds. |
Is there an ETA for this fix? We are likely going to need to look into another pod but we'd rather continue using this one. |
Are we sure this happens on devices as well as the simulator? https://developer.apple.com/forums/thread/685773 |
I have seen it on "some" devices running iOS 15. It seems kind of random and without any patterns. |
the problem could be related to this: if the item already exists it has to be deleted first //removing item if it exists https://coderedirect.com/questions/209955/adding-private-key-into-ios-keychain |
if you add to the apple example app: to line 104 in ViewController the example work's... |
There's an error when adding a Touch ID / Face ID protected item on iOS 15 simulators and devices:
OSStatus error:[-25293] The user name or passphrase you entered is not correct.
It's working on below iOS 15.
The text was updated successfully, but these errors were encountered: