blackberry-eclipse-plugin

eclipse xml error

≯℡__Kan透↙ 提交于 2019-12-12 05:49:03
问题 i am programming in eclipse for the first time and when i create a blackberry project i am getting this error in BlackBerry_App_Descriptor.xml as Description Resource Path Location Type InvalidRegex: Pattern value '([a-zA-Z_]{1,63}[\s-a-zA-Z_0-9.]{0,63}[;]?)*' is not a valid regular expression. The reported error was: ''-' is an invalid character range. Write '-'.' at column '19'. BlackBerry_App_Descriptor.xml /sample Unknown XML Problem please help me out thanks in advance. 回答1: I have had

Blackberry - “[projectname].debug file is missing” and “I/O Error: Cannot find program ”jar"

孤街醉人 提交于 2019-12-12 01:13:45
问题 I'm running eclipse with the Blackberry Java Plug-in, working on a 1.4.5 Blackberry project. The project has been building and debugging in the emulator normally until I started getting: A prompt saying " [projectname].debug file is missing ". A message in the Blackberry Packaging Console saying " I/O Error: Cannot find program "jar": CreateProcess error=2. " Anyone have any ideas what could be causing this? 回答1: It turns out that there can be a few different causes. In some instances,

An internal error occurred during: “Launching test”. org/eclipse/jdt/debug/core/JDIDebugModel In Eclipse

只谈情不闲聊 提交于 2019-12-11 19:09:50
问题 Installed eclipse plugin with the referance this link but i got error when run project as Blackberry Android Launch Please check screenshot 回答1: Make sure that eclipse.ini AND the path variable of Windows uses the version 6 of Java, not the 7. Make sure you have the supported version of eclipse: Eclipse version 3.8 for the latest version of the bb plugin 来源: https://stackoverflow.com/questions/15723104/an-internal-error-occurred-during-launching-test-org-eclipse-jdt-debug-core

Popping multiple screens in a BlackBerry application

孤街浪徒 提交于 2019-12-11 07:26:49
问题 I writing a BlackBerry app which has multiple screens that the user navigates through (like a survey). After submitting the survey the app must return to the start screen, after which, they must not be allowed to navigate back to the screens which were previously shown. What would be the correct way to implement this? Currently I'm calling UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen()); as many times as there were different screens. Is there

blackberry “Error Starting Module not found” adding external jar to eclipse plugin

江枫思渺然 提交于 2019-12-10 18:50:21
问题 Help I'm using BlackBerry Java Plug-in for Eclipse Version: 1.3.0 Simulator 9800 I'm trying to run a Midlet that sucessfully runs on j2me emulator(tested). The project compiles fine, but when I run it in the BB simulator it gives me the error: "error starting MyApp: Module J4ME not found. I added a jar file of J4ME as an external jar file. it seems actual j4me jar is not added to the project which is loaded on BB simulator. Anyway, the major problem is that it cannot run in the simulator. I

Debugging blackberry application in eclipse “source not found” problem

纵然是瞬间 提交于 2019-12-10 17:27:28
问题 I am debugging an application in Eclipse. It works fine but at some methods, for example enterEventDispatcher() , it shows me source not found. Which source files should be attached to avoid this problem? I am not getting it clearly. 回答1: It sounds like you are trying to debug into the RIM BB OS code. As far as I am aware, RIM does not provide the source code for their API, so there is no source to attach. 来源: https://stackoverflow.com/questions/5949532/debugging-blackberry-application-in

Cannot Write On Micro SDCard On BlackBerry

懵懂的女人 提交于 2019-12-10 13:51:50
问题 I am trying to save some files on micro SDCard. To check the availability of SDCard, I am using the following method; private boolean isSdCardReady() { Enumeration e = FileSystemRegistry.listRoots(); while (e.hasMoreElements()) { if (e.nextElement().toString().equalsIgnoreCase("sdcard/")) { return true; } } return false; } Even if this method returns true, when I try to save files, it gives exception net.rim.device.api.io.file.FileIOException: File system is not ready . What does this means?

is it possible in blackberry to capture image automatic

梦想与她 提交于 2019-12-10 12:05:14
问题 I am new in blackberry. i create Application now my requirement is when camera is invoke automatic a picture is capture.Is it possible in blackberry. i am using this code every thing work but not capture picture automatic please suggest what i change on my code it's work on my Application. public class Test extends MainScreen implements FileSystemJournalListener { long _lastUSN; ButtonField btnTakePhoto; String capturedImgPath = ""; VideoControl videoControl; Timer objTimer; Player player;

How can I install the BlackBerry v5.0.0 component pack into Eclipse?

a 夏天 提交于 2019-12-10 11:17:46
问题 I'm trying to install the latest v5.0.0 "beta 2" BlackBerry OS Component Pack into Eclipse 3.4.2 with BlackBerry Eclipse plugin v1.0.0.67, but have hit a few problems. Has anybody found an easy way to do this? I had no trouble installing the v4.5.0 and v4.7.0 Component Packs. It's rather strange that BlackBerry are shipping new phones with the v5.0.0 OS installed (e.g. a Storm 2 9550 and Bold 9700 that I just bought), and pushing that update to phones whilst the BlackBerry website still

Error starting AppName Module 'AppName' attempts to access a secure API

拈花ヽ惹草 提交于 2019-12-08 06:33:39
问题 In my BB application after installing it on the device showing this Error "Error starting AppName Module 'AppName' attempts to access a secure API" I am opening internet Browser in my application and not giving any kind of permission so this can be the reason of this error of something else..... Please Help Thanks 回答1: Please try to sign your application, then install. If you do not have a signature key, you can request new keys here. It's free nowadays. More help in this link. 回答2: This