getting this error when running my swift program

used firebase:


2018-11-12 22:12:05.398324-0800 QQBCHAT[37807:7011607] [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C4.1:2][0x7fee0fe19300] get output frames failed, state 8196

2018-11-12 22:12:05.398615-0800 QQBCHAT[37807:7011607] TIC Read Status [4:0x0]: 1:57

2018-11-12 22:12:05.398809-0800 QQBCHAT[37807:7011607] TIC Read Status [4:0x0]: 1:57

2018-11-12 22:15:38.035511-0800 QQBCHAT[37807:7016162] [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C1.1:2][0x7fee0fd05130] get output frames failed, state 8196

2018-11-12 22:15:38.035629-0800 QQBCHAT[37807:7016162] [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C1.1:2][0x7fee0fd05130] get output frames failed, state 8196

2018-11-12 22:15:38.035938-0800 QQBCHAT[37807:7016162] TIC Read Status [1:0x0]: 1:57

2018-11-12 22:15:38.036040-0800 QQBCHAT[37807:7016162] TIC Read Status [1:0x0]: 1:57

Replies

This type of problem has been reported several times.

https://forums.developer.apple.com/thread/107229


You should better contact firebase directly.

h ttps://firebase.google.com/support/

This type of problem has been reported several times.

Indeed. I explained the low-level meaning of this error on this thread. That does not, however, help you with the high-level issue (assuming there is a high-level issue) and for that you need to start by looking to see if there’s actually an error with any of your high-level API calls.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

I was able to resolve this issue. I was stuck in this for a long time. Took me almost an hour to resolve this. Delete the app from the simulator and then build and run the xcode project again.


Also, I assume your code for registering the user is right. Also check one, that in your Firebase account, you have changed the rules.

This is what the rules have to be


service cloud.firestore {

match /databases/{database}/documents {

match /{document=**} {

allow read, write: if request.auth != null;

}

}

}


Check if the pods have been installed properly also. Firebase/Auth

This error is showing because your user/email Id or password is wrong. Kindly enter the correct credentials and try it again.


Thanks

Balaji Ks