IanMc Well-Known Member Licensed User Longtime User Dec 13, 2012 #1 Is it necessary to add android.permission.INTERNET If you just use a WebView to load a local HTML file for a help screen? How do you link from one local HTML page to another?
Is it necessary to add android.permission.INTERNET If you just use a WebView to load a local HTML file for a help screen? How do you link from one local HTML page to another?
Erel B4X founder Staff member Licensed User Longtime User Dec 14, 2012 #2 The permission is not required. You can remove it with the manifest editor: http://www.b4x.com/forum/basic4andr...auto-start-after-app-update-3.html#post131967 How do you link from one local HTML page to another? Click to expand... The simplest way is to use relative paths. <a href="page2.html">Page2</a> Upvote 0
The permission is not required. You can remove it with the manifest editor: http://www.b4x.com/forum/basic4andr...auto-start-after-app-update-3.html#post131967 How do you link from one local HTML page to another? Click to expand... The simplest way is to use relative paths. <a href="page2.html">Page2</a>