如何更改黑莓应用程序的sdk版本
我正在使用 Eclipse 为 BBOS 6.0 开发 BlackBerry 应用程序。我现在想支持 BBOS 5.0 而不是 6.0。我该怎么做?
I am using Eclipse to develop a BlackBerry app for BBOS 6.0. I now want to support BBOS 5.0 instead of 6.0. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以仅使用一个 Eclipse 进行开发,而不是使用两个(每个 Eclipse 对应一个操作系统版本)。
并在其中切换编译目标。
为此,您应该单击项目上的
JRE System Library
属性,并通过Installed JREs
添加备用黑莓 JRE -Add
并指向您安装的其他黑莓 JDE 中的文件夹。然后,您只需单击两次即可从
JRE 系统库属性
窗口切换 OS5 和 OS6。至于使用特定于 OS6 的类和概念,您应该考虑使用
#preprocess
和#ifdef BlackBerrySDK6.0.0
使您的代码能够在 5.0 和 6.0 中进行编译。You can develop using just one eclipse, not two (each for a OS version).
And switch the compilation target in it.
To do so, you should click properties of
JRE System Library
on your project and add alternate blackberry JRE throughInstalled JREs
-Add
and point to a folder inside your other installed blackberry JDE.Then you can switch OS5 and OS6 from
Properties for JRE System Library
window in two clicks.As for using OS6-specific classes and concepts, you should consider using
#preprocess
and#ifdef BlackBerrySDK6.0.0
for your code to compile in both 5.0 and 6.0.您要做的第一件事是安装 jde 5.0 版本。并使用version5.0 Jde编译您的代码。如果您没有使用
更新的API
或已添加到版本6.0中的某些类,它将运行良好以及稍后
。就像Menuitem
我没有使用过它,所以我不清楚 Version6.0 中添加了哪些类,您可以从文档中进行比较。我附上的一份参考资料 此处请参阅MenuItem 构造函数适用于 6.0 ,而 则适用于5.0 比较两者的构造函数。The First thing you have to do is to install the jde version 5.0. And compile your code with version5.0 Jde. It will run fine if you haven't used the
Updated API
orsome class which have been added into version 6.0 and later
. LikeMenuitem
i haven't used it so i dont have clear idea what are the classes is added in Version6.0 you can compare it from the doc. one refrence i am attaching here see the MenuItemconstructor its for 6.0 and this one for 5.0 compare the constructor of the both.