5.2.12 • Published 7 years ago
cordova-plugin-liveupdate v5.2.12
Ionic Cordova SDK
Supported platforms: iOS, Android
Setup
cordova plugin add cordova-plugin-liveupdateThe plugin will be available on window as IonicCordova
Live Updates
Preferences
DisableDeploy- Default value isfalse.
Allows to disable deploy updates by adding this preference in the config.xml
<preference name="DisableDeploy" value="true" />API Docs
External modules
Contributing to this plugin
npm install
npm run create-devThis will create a blank Ionic app in a local tmp directory with the plugin and dependencies installed, and the iOS platform added. Native plugin code is installed with --link and any changes to the typescript in www will be copied over into the app's platforms/ios and platforms/android directories.
Some other helpful dev commands
npm run apply-devUpdates the linked plugin in the tmp test app with your JavaScript changes
npm run watchWatches for Typescript changes
npm run watch-devWatches for Typescript changes, then runs the apply-dev script to propogate them to the testing app.