Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

BoringSSL failed

When i try sign in or sign up in Firebase, I get error

2018-09-20 10:59:15.502959+0300 app[1980:18396] TIC Read Status [3:0x0]: 1:57
2018-09-20 10:59:15.503055+0300 app[1980:18396] TIC Read Status [3:0x0]: 1:57
2018-09-20 11:00:45.911678+0300 app[1980:18396] [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C2.1:2][0x7fb1b5810f40] get output frames failed, state 8196
2018-09-20 11:00:45.911833+0300 app[1980:18396] [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C2.1:2][0x7fb1b5810f40] get output frames failed, state 8196

Because of this error, the following code block does not work.

Auth.auth().createUser(withEmail: emailTxt.text, password: passwordTxt.text) { (result, error) in
   if let _eror = error {
      print(_eror.localizedDescription )
   } else {
      //...
   }
}

I use new Xcode 10, swift 4.2.

like image 885
Egor Avatar asked Sep 20 '18 08:09

Egor


1 Answers

I am also having this same problem. It is definitely an iOS12 issue as was not in iOS11. I know it is a simple thing to do and to discount or simply not really consider, but I have just done a Pod Update on my Pods in project and now error has gone. Not saying this is a fix but it has removed the error.

like image 160
James Avatar answered Nov 02 '22 09:11

James