I'm trying to set a cookie using javascript inside a webview. The webview is loaded from the local assets directory like so (where page is a string such as "index.html")
engine.loadUrl("file:///android_asset/" + page);
I have found when the exact same file is loaded from the web (i.e. http://www.domain.com/index.html) then same file can set the cookie as expected.
Older versions of android do allow the creation of cookies on local files, but newer versions do not. I have tested this and it works on Samsung Galaxy Ace, HTC Desire Z and eclipse emulators of lower SDK, but does not work on Samsung SIII nor Samsung Tab 10.1.
I need to set a cookie in order to carry data between pages in my webview; saving search results to be re-displayed.
If anyone knows of any methods/hacks to get around these local file problem I'd really reeeally appreciate it. I've been at this for about 8 weeks now. I asked a simular question which may be helpful for further reading, but the problem has now been identified and is very much a different question so I'm asking this here. Android webview cookie returns null
Thanks.