Hello. I use "@livechat/customer-auth": "0.4.0-alpha.6" and "@livechat/customer-sdk": "2.0.3". And I getting crash on android with following an error:  Code: ``` import * as React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import { AuthWebView } from "@livechat/customer-auth"; import { init } from "@livechat/customer-sdk"; export default class App extends React.Component { componentDidMount() { const customerSDK = init({ licenseId: ..., clientId: '...', redirectUri: '...' }); customerSDK.on("connected", payload => { console.log("connected"); console.log(payload.chatsSummary); console.log(payload.totalChats); }); } render() { return ( <> <AuthWebView key="auth" /> </> ); } } ``` React-Native: 0.60.0 Why is this happening?
Hello. I use

"@livechat/customer-auth": "0.4.0-alpha.6" and
"@livechat/customer-sdk": "2.0.3".
And I getting crash on android with following an error:
Code:
React-Native: 0.60.0
Why is this happening?