Application not getting deployed on Blackberry simulator

后端 未结 10 1864
耶瑟儿~
耶瑟儿~ 2020-12-03 23:11

I am tried deploying .cod,.alx.jar files on blackberry simulator 8100;the application is not getting deployed on phone.I am using Blackberry plugin for Eclipse. How can I so

相关标签:
10条回答
  • 2020-12-03 23:50

    Just ran through the same kind of problem : project compiled fine but didn't deploy on any device or on any simulator, even though the debugger said it was attached ! The problem came from a .zip file that was located in the ./src directory of the project, deleting or moving it somewhere else resolved this case. I wish I hadn't spend 2+ hours on such a stupid problem :/

    0 讨论(0)
  • 2020-12-03 23:51

    Here are a couple of ideas:

    1) If you have any build errors then the application won't deploy to the Simulator. The Eclipse compiler (that underlines compile errors in red) is different to the "rapc" one that creates the binary for the Simulator. I have heard of situations where the Eclipse build seems to work, but the rapc compile fails - check the Console for the detailed rapc output (this might not look like a normal Eclipse build error).

    2) In the Eclipse menu, open BlackBerry -> Configure BlackBerry Workspace.

    Under BlackBerry JDE choose Code Signing and make sure the three RIM checkboxes are selected. I had compile errors when these weren't selected.

    Under BlackBerry JDE choose Installed Components. Choose to use the Component Package 4.7.0 as I have heard of problems with the 4.5.0 Simulator.

    You should delete all these extra answers you posted, or you might get downvotes - they should be comments instead of answers.

    0 讨论(0)
  • 2020-12-03 23:51

    I had the same problem. The reason was using 'ü' character in the title.

    0 讨论(0)
  • 2020-12-03 23:56

    I have been facing this problem today, but with a MIDlet project. It turned out to be that I forgot to specify the "Name of main MIDlet class" in the BlackBerry Application Descriptor (BlackBerry_App_Descriptor.xml). Once I specified it the application appeared on the simulator correctly.

    0 讨论(0)
提交回复
热议问题