I tried using AppVersion plugin to get the version of app…but in console.log it shows the returned value as undefined…
this.platform.ready().then(() => {
if (this.platform.is('cordova') ) {
AppVersion.getVersionNumber().then( (version)=> {
this.appVersion = version;
});
}
});
console.log("APP VERSION :::", this.appVersion); //this gives back return
Any idea what is wring here?