I want to know the app version on the android store for my app.
I need to know that to show to the user a message offering an update if it's necessary. I can get the app version of my installed version (using a cordova-plugin-app-version) like that:
cordova.getAppVersion.getVersionNumber(function (version) {
console.log("la version de la app es " + version);
$scope.versi = version;
});
but not the android store app version.