UNPKG

cordova-plugin-app-update

Version:
119 lines (83 loc) 2.71 kB
![travis](https://travis-ci.org/vaenow/cordova-plugin-app-update.svg?branch=master) [![NPM](https://nodei.co/npm/cordova-plugin-app-update.png?downloads=true&downloadRank=true)](https://nodei.co/npm/cordova-plugin-app-update/) # cordova-plugin-app-update App updater for Cordova/PhoneGap # Demo Try it yourself: Just clone and install this demo. [cordova-plugin-app-update-DEMO](https://github.com/vaenow/cordova-plugin-app-update-demo) :tada: * 如果喜欢它,请别忘了给我一颗鼓励的星 * Support me a `Star` if it is necessary. :+1: # Preview ![enter image description here](https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update/master/res/img/Screenshot_2015-10-31-13-42-13.jpg) # ![enter image description here](https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update/master/res/img/Screenshot_2015-10-31-13-42-19.jpg) # Install ### Latest published version on npm (with Cordova CLI >= 5.0.0) `cordova plugin add cordova-plugin-app-update --save` # Usage - Simple: ```js var updateUrl = "http://192.168.0.1/version.xml"; window.AppUpdate.checkAppUpdate(onSuccess, onFail, updateUrl); ``` - Verbose ```js var appUpdate = cordova.require('cordova-plugin-app-update.AppUpdate'); var updateUrl = "http://192.168.0.1/version.xml"; appUpdate.checkAppUpdate(onSuccess, onFail, updateUrl); ``` ### versionCode You can simply get the versionCode from typing those code in `Console` ```js var versionCode = AppVersion.build console.log(versionCode) // 302048 ``` versionName | versionCode ------- | ---------------- 0.0.1 | 18 0.3.4 | 3048 3.2.4 | 302048 12.234.221 | 1436218 ### server version.xml file ```xml <update> <version>302048</version> <name>name</name> <url>http://192.168.0.1/android.apk</url> </update> ``` ### `checkAppUpdate` code ```java /** * 对比版本号 */ int VERSION_NEED_UPDATE = 201; //检查到需要更新; need update int VERSION_UP_TO_UPDATE = 202; //软件是不需要更新;version up to date int VERSION_UPDATING = 203; //软件正在更新;version is updating /** * 版本解析错误 */ int VERSION_RESOLVE_FAIL = 301; //版本文件解析错误 version-xml file resolve fail int VERSION_COMPARE_FAIL = 302; //版本文件对比错误 version-xml file compare fail /** * 网络错误 */ int REMOTE_FILE_NOT_FOUND = 404; int NETWORK_ERROR = 405; /** * 没有相应的方法 */ int NO_SUCH_METHOD = 501; /** * 未知错误 */ int UNKNOWN_ERROR = 901; ``` # Platforms Android only # License MIT # :snowflake: :beers: * Please let me know if you have any questions.