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
Post a Comment