My application stores web pages for offline access using a WebView.
I need to access the cached images of those pages via native code.
I first tried (unsuccessfully) reading ApplicationCache.db, but according to this answer, it's not a good idea, since the database format changes between Android versions.
I had an idea of using localStorage on my web page. Is it possible to access the stored information from native code?