1
I have an application that gets js, html, css settings through Webview, to create an offline map.
In android 4.4 works correctly. In android 6.0 no content appears.
I make the call through the Assets
webview.loadUrl("file:///android_asset/www/map.html");
I also put the permissions on Androidmanifest.
EDIT1
The problem is occurring on the way to find the images. The permissions were right.
webview.loadUrl("javascript:loadImg('/storage/14F0-C537/www')");
But the address of the used Sdcard has to be changed.
What permissions you put on Androidmanifest?
– viana
We put Internet permissions, Access_fine_location, Access_coarse_location, Read_external_storage, Write_external_storage
– Carolina Ferreira