Plugin to get the version of PhoneGap App?

*爱你&永不变心* 提交于 2019-12-12 09:31:28

问题


I am using PhoneGap build to package my app is there any PhoneGap or 3rd Party Plugin that I can include in my config.xml to get the version of the app in the runtime?

Any suggestion on best way to get the version of the App would be appriciated.


回答1:


This plugin works on iOS, Windows Phone 8 and Android: http://plugreg.com/plugin/whiteoctober/cordova-plugin-app-version

If you're using the Cordova CLI, you can install via:

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

Then it's as simple as:

cordova.getAppVersion(function (version) {
    alert(version);
});

(after the device ready function has been fired)



来源:https://stackoverflow.com/questions/23343902/plugin-to-get-the-version-of-phonegap-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!