如何获取app版本?

发布于 2024-12-03 21:02:52 字数 706 浏览 2 评论 0原文

有没有办法获取 Titanium 应用程序的版本号?

例如,当安装在 iOS 设备上时,可能会获取 CFBundleVersion;当安装在 Android 上时,可能会获取其版本号。


更新:我在 Titanium.Platform 文档中查找应用程序版本号。应用程序版本号位于 Titanium.App 下。

这是我的代码,用于将应用程序的版本号发送到服务器,以便服务器可以根据应用程序版本号提供不同的内容。

function obtain_request_header() {
    var caps = Titanium.Platform.displayCaps;
    var s0 = 'appversion=' + Titanium.App.version;
    var s1 = 'osname=' + Titanium.Platform.osname + ',name=' + Titanium.Platform.name + ',version=' + Titanium.Platform.version + ',model=' + Titanium.Platform.model;
    var s2 = 'width=' + caps.platformWidth + ',height=' + caps.platformHeight + ',dpi=' + caps.dpi;
    return s0 + ',' + s1 + ',' + s2;
}

Is there a way to obtain a version number of a Titanium app?

e.g when installed on an iOS device then perhaps obtain the CFBundleVersion and when installed on Android then obtain its version number.


UPDATED: I was looking in the Titanium.Platform documentation for the app version number. The app version number is under Titanium.App.

Here is my code for sending the version number of my app to the server, so that the server can provide different content depending on the app-version-number.

function obtain_request_header() {
    var caps = Titanium.Platform.displayCaps;
    var s0 = 'appversion=' + Titanium.App.version;
    var s1 = 'osname=' + Titanium.Platform.osname + ',name=' + Titanium.Platform.name + ',version=' + Titanium.Platform.version + ',model=' + Titanium.Platform.model;
    var s2 = 'width=' + caps.platformWidth + ',height=' + caps.platformHeight + ',dpi=' + caps.dpi;
    return s0 + ',' + s1 + ',' + s2;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

裂开嘴轻声笑有多痛 2024-12-10 21:02:52

要获取应用程序的版本(无论操作系统如何),只需使用:

Titanium.App.version

To obtain the version of your application regardless of OS, simply use:

Titanium.App.version
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文