Can i upload website webview app on play store?
Hi dear,
I haven’t found much reliable and detailed information about it,
but everyone says:
https://median.co/blog/will-google-play-approve-my-webview-app
Yes, you can, but avoid displaying any “No Internet” error messages. If the Play Store detects errors, your app may be suspended immediately. Additionally, ensure your website is responsive for Android devices.
Is there anything like this in thier documentation? Actually i want to know beacuse most the app i create jusing my website and fetching details from APi/JSON, so for my apps it’s required to user recieve this notification of no internet.
Can you write more elobrately?
Use the network component, and when the user disconnects from the internet, display a no internet layout and hide the webview instead of showing a WebView error.
My console has suspended for this reason: ERR_INTERNET_DISCONNECTED
I think that’s really useful information thank
you
so much for your contribution.
WTH man ![]()
Yes I just read it on Internet
Handling “No Internet” in a WebView
For connectivity issues, the developer must implement a solution within their app to provide a better user experience than the default “Web page not available” error.
Developers can use the following methods:
- Check connectivity with
ConnectivityManagerbefore loading a URL. - Display a custom error message or a local HTML page (stored in the app’s assets) when there is no connection, instead of the default browser error page.
- Implement caching using
WebSettings.LOAD_CACHE_ELSE_NETWORKto load cached content if the user is offline.
Thanks for pointing out, I need to recheck in all my app, and publish new push asap. ![]()
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.