Cannot show Automatic Strong Passwords for app bundleID: io.blinqpay.blinqpost

i did a firebase user authentication and got the above error in the console, i have enabled keychain but the error is still showing. Kindly see the attached screenshots.
No description
No description
3 Replies
outsharded
outsharded15mo ago
could you publish the code that hjandles this? you could also be having an issue with the app's sandbox
melvisios
melvisios15mo ago
ok this is the user account class CreateUserViewModel { var email: String = "" var password: String = "" func createUser(completion: @escaping (Bool, Error?) -> Void) { let details = ["email": email] Auth.auth().createUser(withEmail: email, password: password) { result, error in if let error = error { completion(false, error) return } guard let uid = result?.user.uid else { return } Database.database().reference().child("users").child(uid).updateChildValues(details) { error, _ in if let error = error { completion(false, error) return } completion(true, nil) } } } } i was not with my laptop when i replied ok. Just got back.
melvisios
melvisios15mo ago
or this
No description
Want results from more Discord servers?
Add your server