cordova-plugin-app-update

2.0.2 • Public • Published

travis

NPM

cordova-plugin-app-update

App updater for Cordova/PhoneGap

Demo

Try it yourself:

Just clone and install this demo. cordova-plugin-app-update-DEMO 🎉

  • 如果喜欢它,请别忘了给我一颗鼓励的星
  • Support me a Star if it is necessary. 👍

Preview

enter image description here

enter image description here

Install

Latest published version on npm (with Cordova CLI >= 5.0.0)

"cordova-android": "6.3.0"

cordova plugin add cordova-plugin-app-update --save

Usage

  • Simple:
var updateUrl = "http://192.168.0.1/version.xml";
window.AppUpdate.checkAppUpdate(onSuccess, onFail, updateUrl);
  • Verbose
var appUpdate = cordova.require('cordova-plugin-app-update.AppUpdate');
var updateUrl = "http://192.168.0.1/version.xml";
appUpdate.checkAppUpdate(onSuccess, onFail, updateUrl);
  • Auth download MORE
appUpdate.checkAppUpdate(onSuccess, onFail, updateUrl, {
    'authType' : 'basic',
    'username' : 'test',
    'password' : 'test'
})
  • Skip dialog boxes
appUpdate.checkAppUpdate(onSuccess, onFail, updateUrl, {
    'skipPromptDialog' : true,
    'skipProgressDialog' : true
})

versionCode

You can simply get the versionCode from typing those code in Console

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

<update>
    <version>302048</version>
    <name>name</name>
    <url>http://192.168.0.1/android.apk</url>
</update>

checkAppUpdate code

    /**
     * 对比版本号
     */
    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;
 
    /**
     * Permissions
     */
    int PERMISSION_DENIED = 601;
 
    /**
     * 未知错误
     */
    int UNKNOWN_ERROR = 901;

Languages

  • 🇨🇳 zh
  • 🇺🇸 en
  • 🇩🇪 de
  • 🇫🇷 fr
  • 🇵🇹 pt
  • 🇧🇩 bn
  • 🇵🇱 pl
  • 🇮🇹 it
  • 🇪🇸 es
  • 🇷🇺 ru
  • 🇰🇷 ko

Platforms

Android only

License

MIT

❄️ 🍻

  • Please let me know if you have any questions.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
2.0.2110latest

Version History

VersionDownloads (Last 7 Days)Published
2.0.2110
2.0.10
1.6.012
1.5.50
1.5.40
1.5.30
1.5.21
1.5.11
1.4.161
1.4.150
1.4.140
1.4.130
1.4.120
1.4.110
1.4.101
1.4.90
1.4.80
1.4.71
1.4.60
1.4.50
1.4.40
1.4.30
1.4.20
1.4.10
1.3.120
1.3.110
1.3.100
1.3.90
1.3.80
1.3.71
1.3.60
1.3.50
1.3.40
1.3.30
1.3.20
1.3.10
1.2.120
1.2.110
1.2.100
1.2.92
1.2.80
1.2.70
1.2.60
1.2.50
1.2.40
1.2.30
1.2.10
1.2.00
1.1.50
1.1.40
1.1.31
1.1.20
1.1.00
0.1.00
0.0.12

Package Sidebar

Install

npm i cordova-plugin-app-update

Weekly Downloads

133

Version

2.0.2

License

MIT

Unpacked Size

136 kB

Total Files

40

Last publish

Collaborators

  • vaenow