danmichaelo / cordova-plugin-appinfo

Cordova plugin that provides a method for getting the app version number across platforms (iOs, Android, WP8, Windows)
MIT License
21 stars 16 forks source link

cordova-plugin-appinfo

npm version

Cordova plugin that provides access to the following app info:

Installation

The plugin is on npm, you can install it using:

cordova plugin add cordova-plugin-appinfo

Supported Platforms

Usage

The plugin provides a navigator.appInfo object:

console.log('identifier: %s', navigator.appInfo.identifier);
console.log('version: %s', navigator.appInfo.version);
console.log('build: %s', navigator.appInfo.build);

Before version 2.1, the information had to be accessed through asynchronously. This is no longer needed, but the old method shown below will be kept for backwards compatibility:

navigator.appInfo.getAppInfo(function(appInfo) {
  console.log('identifier: %s', appInfo.identifier);
  console.log('version: %s', appInfo.version);
  console.log('build: %s', appInfo.build);
}, function(err) {
    alert(err);
});

Contributing

Pull requests are welcome.