App Version

Improve this doc

Reads the version of your app from the target build settings.

Requires Cordova plugin: cordova-plugin-app-version. For more info, please see the Cordova App Version docs.

Repo: https://github.com/whiteoctober/cordova-plugin-app-version

Installation

  1. Install the Cordova and Ionic Native plugins:
    $ ionic cordova plugin add cordova-plugin-app-version
    $ npm install --save @ionic-native/app-version
    
  2. Add this plugin to your app's module

Supported platforms

Usage

import { AppVersion } from '@ionic-native/app-version';

constructor(private appVersion: AppVersion) { }

...


this.appVersion.getAppName();
this.appVersion.getPackageName();
this.appVersion.getVersionCode();
this.appVersion.getVersionNumber();

Instance Members

getAppName()

Returns the name of the app

Returns: Promise<string>

getPackageName()

Returns the package name of the app

Returns: Promise<string>

getVersionCode()

Returns the build identifier of the app

Returns: Promise<string>

getVersionNumber()

Returns the version of the app

Returns: Promise<string>

API

Native

General