Here’s the code I use for the webView:
local webView
local doc = “yourfile.html”
webView = native.newWebView( 0, display.contentWidth, 320, 480 )
webView.anchorX = 0
webView.anchorY = 0
webView:request( doc , system.ResourceDirectory )
As long as yourfile.html is located in the same directory as main.lua or a subdirectory it should work.