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.
3 Replies
could you publish the code that hjandles this?
you could also be having an issue with the app's sandbox
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.
or this