I have a hybrid app I'm working that uses local WebView content as well as native assets. It also includes dynamic updates and user experience customization from a server. I've noticed that the precompiled assets access and load considerably faster than locally stored delivered assets and I get why that is. I am also aware of the general performance issues associated WebView from this topic and this one. We've mitigated this as much as possible. My question is this:
Is there anyway to deliver precompiled assets and add them to the app, or falling that get the device to compile these assets without requiring constant app updates distributed through the play store, which would not work for the user specific content anyway?
EDIT:(Clarification)
When I say native assets, I mean native to the app (precompiled and delivered with the app, as opposed android native assets, or content retrieved from a server which is stored locally and then loaded by the app as opposed during initialization of the app.)