I use Android Version 5.0.2
In my React Native, I use the bellow code
import React, { Component } from 'react';import { WebView } from 'react-native-webview';class google extends Component { render() { return (<WebView source={{uri: 'https://www.google.com/'}} style={{marginTop: 20}} ref={ref => { this.webView = ref; }} // onError={ ()=>{ this.webView.reload(); } } /> ); }}export default google;
when I run on iOS, the output is perfect but in Android device it gives error:
Guys kindly fix this error so that I can run my app on every device