Eclipse生成的JAD文件不会自动安装依赖库
我正在构建一个非常简单的黑莓应用程序,它由两个项目组成:一个应用程序和一个库。我在 Eclipse 中打包了这两个项目,并将 .cod 文件和应用程序的 .jad 文件上传到我们的服务器。当我尝试通过下载 .jad 文件来安装应用程序时,收到此错误消息:
This application require the the following module, which is not install: [name of Library module]
How can I make eclipse生成正确安装依赖模块的 .jad 文件?
I am building a very simple BlackBerry app that consists of two projects, an Application and a Library. I packaged both projects in Eclipse and uploaded the .cod files and the application's .jad file to our server. When I try to install the app by downloading the .jad file, I get this error message:
This application requires the following module, which is not installed: [name of Library module]
How can I make eclipse generate a .jad file that properly installs dependent modules?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以手动合并两个 .JAD 文件,也可以使用 UpdateJad 工具:
updatejad.exe mainapp.jad libraryapp.jad
(更多信息:http://supportforums.blackberry.com/t5/Java -开发/使用一个jad文件-OTA安装两个cod文件/mp/482557#M97136)
You can merge two .JAD files by hand or you can use UpdateJad tool:
updatejad.exe mainapp.jad libraryapp.jad
(more information: http://supportforums.blackberry.com/t5/Java-Development/Install-two-cod-files-using-one-jad-file-OTA/m-p/482557#M97136)