1. Don't waste your time with unmaintained and unneeded libraries.
2. I don't recommend you to use subfolders in the assets folder.
3. This code will work:
	
	
	
	
	
	
	
	
	
		Sub Process_Globals
    Private xui As XUI
End Sub
Sub Globals
    Private web As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
    web.Initialize("")
    Activity.AddView(web,0,0,100%x,100%y)
    web.LoadUrl(xui.FileUri(File.DirAssets, "icon\test.htm")) 'ignore
End Sub
	 
	
	
		
	
 
4. To get it working in debug mode, you will need to add:
	
	
	
	
	
	
	
	
	
		#DebuggerForceStandardAssets: true
	 
	
	
		
	
 
Note that the change is related to a behavior change in the underlying packaging tool (AAPT2).