Automatically inject Cordova platform and plugin scripts into your site.
This plugin supports Android and iOS.
cordova plugin add cordova-plugin-injectview
Adding the plugin to your project is sufficient.
At runtime, when a page loads in the Cordova-hosted web view, this plugin injects Cordova's platform scripts as well as all of your plugin scripts into the web view. By doing this, you can integrate Cordova with a remotely hosted site without needing to explicitly include Cordova script tags or do request rewrites to load your Cordova plugin scripts.
This plugin registers a number of Cordova hooks
in plugin.xml that execute update-manifest.js.
This script parses each of your project configurations located at platforms/{platform}/{platform}.json
and generates a manifest file, cordova-plugin-injectview.json
, that contains relative paths to Cordova's
platform scripts as well as your plugin scripts. This manifest file gets compiled into your app as a resource.
At runtime, this plugin hooks into the web view's page load event: onPageFinished
for Android,
CDVPageDidLoadNotification
for iOS. Once the event fires, this plugin parses the manifest to determine
all script paths, reads each script, concatenates everything into one large script, then evaluates the
whole thing using the web view's JavaScript engine.
Copyright © 2015 Fabian Strachanski \ Copyright © 2016 Sam Beran \ Copyright © 2020 Chris Schmich \ MIT License. See LICENSE for details.