BlackBerry应用程序构建唯一标识符

发布于 2024-11-08 12:21:30 字数 190 浏览 0 评论 0原文

我有黑莓应用程序,我想制作不同的版本,它具有不同的图形和一些常量。应用程序名称和图标也不同。 (同一应用程序的)不同版本应该能够在一台设备上并存。 iOS 有特殊的 ID,在 Android 中需要重命名包,我也尝试在 BlackBerry 中重命名包,但仍然存在一些问题,并且出现重复类错误。那么黑莓应用程序的唯一标识符是什么呢?以及如何安全地制作不同品牌的产品?

I have blackberry application and I want to make different builds, which has different graphics and some constants. Also application name and icon is different. Different builds (of the same application) should be able to live by side on one device. iOS has special ID for that, in Android is renaming packgages needed, I also tryed renaming packages in BlackBerry but there are still some problems and I'm getting duplicate class error. So what's the unique identifier for BlackBerry application? and how to make safely different branded builds?

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

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

发布评论

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

评论(1

小巷里的女流氓 2024-11-15 12:21:30

使用ANT,获取BB Ant工具:http://bb-ant-tools.sourceforge.net/

我使用一个庞大的 ANT 脚本,它可以为 BlackBerry 构建发挥各种作用,根据客户要求复制不同的类和资产。您可以在 ANT 中为 rapc 设置参数,如下所示:

        <rapc nowarn="true"
              output="${codName}"
              srcdir="${sourceDirectory}"
              jdehome="${jdeDirectory}"
              destdir="${ouputBuildDirectory}">
            <jdp title="${jdpTitle}"
                 vendor="${productVendor}"
                 version="${productVersion}"
                 description="${productDescription}"
                 icon="icon_inactive.png"
                 runonstartup="true"
                 />
        </rapc>

如果您为不同的客户端进行不同的构建,则确实需要使用 ANT 设置工具链

Use ANT, get BB Ant Tools: http://bb-ant-tools.sourceforge.net/

I use a massive ANT script that does all sorts of magic for BlackBerry builds, copying different classes and assets around depending on the client requirements. You can have parameters for rapc in ANT like so:

        <rapc nowarn="true"
              output="${codName}"
              srcdir="${sourceDirectory}"
              jdehome="${jdeDirectory}"
              destdir="${ouputBuildDirectory}">
            <jdp title="${jdpTitle}"
                 vendor="${productVendor}"
                 version="${productVersion}"
                 description="${productDescription}"
                 icon="icon_inactive.png"
                 runonstartup="true"
                 />
        </rapc>

If you're doing different builds for different clients you really need to set up a toolchain using ANT

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