我如何在Blackberry设备中为不同版本安装.alx文件?

时间:2012-02-28 06:29:58

标签: blackberry blackberry-eclipse-plugin

  

您好,我已经在黑莓5.0版本中开发了应用程序。现在我想   使用Desktop Manager在设备中安装.alx文件。它安装得很好   当我在设备上安装.alx版本5.0但是当我   在具有6.0 OS的9700Bold设备中安装它会产生以下错误。

     

是否有任何机构知道如何支持Blackberry中的多个操作系统?请   告诉我。   提前完成。

enter image description here

1 个答案:

答案 0 :(得分:4)

我得到了我的问题的解决方案,它适用于所有设备。我们需要在fileset文件中创建新的.alx标记,我们必须为每个版本创建新目录。

假设:您已经在5.0中开发了应用程序,并希望在6.0中安装.alx文件。

Step 1: Make folder, suppose ABC in which paste `.alx` file (After signing the app).
Step 2: Make 2 folders 1. 5.0.0  2. 6.0.0  in ABC folder.
Step 3: open .alx file and change as following:



 <fileset Java="1.54" _blackberryVersion="[5.0.0)">
            <directory >5.0.0</directory>
            <files >Appname.cod</files>
        </fileset>


        <fileset Java="1.54" _blackberryVersion="[6.0.0)">
            <directory >6.0.0</directory>
            <files >Appname.cod</files>
</fileset>

Step 4: Now connect mobile with PC using desktop software.
Step 5: Go to application tab of desktop software -> import app in device.

现在它会正常工作。欲了解更多信息,请访问以下链接

  

http://supportforums.blackberry.com/t5/Testing-and-Deployment/Create-a-single-alx-file-to-install-multiple-versions-of-an/ta-p/445156