webview ERR_CACHE_MISS

Please provide the following:
expo sdk: ~39.0.2
react-native: https://github.com/expo/react-native/archive/sdk-39.0.4.tar.gz
react-native-webview: 10.7.0
platform: android: 5

<WebView decelerationRate='normal'
                     originWhitelist={['*']}
                     source={{uri: "https://preach.vip/h5/pages/tabBar/home?p="+new Date().getTime()+"&t=" + this.state.token}}
                     // source={{uri: "http://192.168.1.119:8520/h5/pages/tabBar/home?p="+new Date().getTime()+"&t=" + this.state.token}}
                     ref={webView => this.webView = webView}
                     onMessage={(event) => {
                         let uri = event.nativeEvent.data;
                         this._jump(uri)
                     }}/>


it worked in android 10, but failed in android 5

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.