├── LICENSE ├── README.md ├── plugin.xml ├── src ├── android │ ├── UpdateApp.java │ └── softupdate_progress.xml └── ios │ ├── CDVUpdateApp.h │ └── CDVUpdateApp.m └── www └── updateAppPlugin.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south-pacific/cordova-plugin-updateapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south-pacific/cordova-plugin-updateapp/HEAD/README.md -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south-pacific/cordova-plugin-updateapp/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/UpdateApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south-pacific/cordova-plugin-updateapp/HEAD/src/android/UpdateApp.java -------------------------------------------------------------------------------- /src/android/softupdate_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south-pacific/cordova-plugin-updateapp/HEAD/src/android/softupdate_progress.xml -------------------------------------------------------------------------------- /src/ios/CDVUpdateApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south-pacific/cordova-plugin-updateapp/HEAD/src/ios/CDVUpdateApp.h -------------------------------------------------------------------------------- /src/ios/CDVUpdateApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south-pacific/cordova-plugin-updateapp/HEAD/src/ios/CDVUpdateApp.m -------------------------------------------------------------------------------- /www/updateAppPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south-pacific/cordova-plugin-updateapp/HEAD/www/updateAppPlugin.js --------------------------------------------------------------------------------