"Webpage not available"
"net::ERR_CLEARTEXT_NOT_PERMITTED"
In the past, I had gotten around this by adding...
Code: Select all
android:usesCleartextTraffic="true"Any ideas?
Code: Select all
android:usesCleartextTraffic="true"How do you try to show local files? Since all apps run in a sandbox it's very difficult to access local files from within your apps. I don't think there's any way to access files outside the app using the HTMLview widget. AFAIU it's only possible to show local files that are stored as assets in your APK, e.g. like this:
Code: Select all
moai.Set("htmlview", "url", "file:///android_asset/filename.html")