Earlier, I have uploaded an app to Play Market that used WebView and access local storage to sending files. Despite Google agreed to publish it, I have received an email that tells me to make my app not to access local storage. I didn’t update it, and it was banned soon.
Now I am uploading another app also with webview, but currently without local storage accessing. But I need it.
What should I do, to make my webview app accessing local storage, preventing it banned by Google?
App loads my site where everyone can post news, pinning photo or video.
App is loading the only one https:// url. There is no in-site links to others sites.
Also, currently my app uses
android:usesCleartextTraffic="true"
. It is because at first I set inloadUrl()
method http url and couldn’t load it. I googled how to fix that, and found two solutions - above, and changing url to https. I decided to use both, but seems, I can setusesCleartextTraffic
to false, if it can help with my publishing problem.