We are experiencing the same issue (using enterprise build 2541).
We use a local html file if there is no internet connection, to show a default webpage. On iOS and the sim this is working fine, but on Android we get the same error that @aisaksen reported. In adb I see this error message:
02-03 10:33:58.718: I/chromium(22764): [INFO:CONSOLE(12)] "Not allowed to load local resource: file:///android\_asset/webkit/android-weberror.png", source: data:text/html,chromewebdata (12)
Having looked on stackoverflow it seems that the error is caused by the webview using
webview.loadData()
instead of
webview.loadDataWithBaseURL()
but I’m not sure which of these Corona would use.