Hi
How to manage running browser in background without losing its content after closing? Looking for offline persistent web content, which will remain even after closing unity app and opening again.
We have a unity app leveraging from online JS app. JS app has 20mb and contain help and more useful stuff. User works in unity app and sometimes needs to open JS app in browser.
Now, when user opens browser with JS app, he must wait for 20mb to be downloaded every time. We would like to change this to: User first time visit JS app in browser and must wait for download 20mb. Next time the user opens JS, it is cached and JS app is opened immediately without downloading, just right page from cached JS app is opened.
Local storage might be solution => if browser cannot be opened in background or cannot remember/cache last opened data, it might be possible to serialize content of browser before closing and save it into local storage. Then, deserialize it back while opening again. This solution is pretty overwhelming.
Do you have any other suggestion for us?