sqlite - Wrap website with cordova phonegap. What happens with audio files? -


i have learn new language site, want wrap in cordova phonegap. app needs work offline. want make available on app store.

the project budget low. need find quick way create app within budget , time frame.

my question. possible wrap whole site? , save offline. happens database? need recreate database app, use sqlite ect.

some pages have audio files, user can listen word pronunciations. happens audio files. need rebuild this? or there quicker way.

can of achieved using cache?

if there better way of doing please let me know.

thanks in advance

cordova-plugin-inappbrowser provides web browser view displays when calling cordova.inappbrowser.open().

var ref = cordova.inappbrowser.open('http://apache.org', '_blank', 'location=yes'); 

the cordova.inappbrowser.open() function defined drop-in replacement window.open() function. existing window.open() calls can use inappbrowser window, replacing window.open:

window.open = cordova.inappbrowser.open; 

the inappbrowser window behaves standard web browser, , can't access cordova apis. reason, inappbrowser recommended if need load third-party (untrusted) content, instead of loading main cordova webview. inappbrowser not subject whitelist, nor opening links in system browser.


Comments

Popular posts from this blog

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -