Android Webview gives net::ERR_CACHE_MISS message

后端 未结 7 1812
深忆病人
深忆病人 2020-12-04 16:56

I built a web app and wants to create an android app that has a webview that shows my web app. After following the instructions from Google Developer to create an app, I suc

相关标签:
7条回答
  • 2020-12-04 17:59

    For anything related to the internet, your app must have the internet permission in ManifestFile. I solved this issue by adding permission in AndroidManifest.xml

    <uses-permission android:name="android.permission.INTERNET" />
    
    0 讨论(0)
提交回复
热议问题