App Version
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
- Install the Cordova and Ionic Native plugins:
$ ionic cordova plugin add cordova-plugin-app-version $ npm install --save @ionic-native/app-version
- Add this plugin to your app's module
Supported platforms
- Android
- iOS
- Windows
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>