1
vote
1answer
65 views

PhoneGap CreateProcess build errors. C:\Program not found

I've been building PhoneGap apps for BlackBerry for about a year now. Suddenly, the build process is hitting errors like this: build: [exec] [INFO] Parsing command line ...
1
vote
1answer
63 views

Build Machine: error: package net.rim.device.api.ui does not exist

I am trying to get our build machine to consistently build our Blackberry project (build using the Eclipse plugin not the JDE) on check-in. We are using Jenkins to call the project and sometimes it ...
0
votes
1answer
44 views

java blackberry how to build app contaning space in Title which uses convenience key

I have issue in building the project xyz and i want the title as "xyz Free Trail" but the convenience key functionality don't work which launches the app on camera shortcut button (by default ...
0
votes
1answer
96 views

Proguard - Keep line numbers for J2ME/BlackBerry applications

I've search all over the web and this problem is driving me crazy. I'm building a mobile application (J2ME, BB) using ANT and Proguard. In my javac task, I've added the debuglevel paramater, like so: ...
1
vote
1answer
188 views

.cod installed on device using Javaloader, but can't find the app on device

I'm loading my blackberry cod onto my USB connected BB Curve using the following : /Users/JElsey/Development/tools/eclipse/plugins/net.rim.ejde.componentpack6.0.0_6.0.0.43/components/bin/javaloader ...
2
votes
1answer
119 views

Blackberry Unit testing is throwing an exception when I'm legally persisting an Object

I've been experiencing a problem that's just been driving me up the wall. Within this blackberry app, I have a class that I'm trying to have persist. It implements ...
1
vote
2answers
541 views

package does not exist errors while building with bb ant tools

Im trying to automate our build process using bb ant tools and im running into a few errors There are 3 different errors where 2 of them are related [javac] D:\dev\java\workspaces\bb ...
0
votes
0answers
177 views

Phonegap blackberry ant load-simulator

I am able to build my blackberry app perfectly with ant blackberry build however I cant get the simulator to work it just gives me this error. load-simulator: [subant] No sub-builds to iterate on ...
0
votes
0answers
104 views

Getting application ID for Blackberry build Phonegap

I keep on getting an error when I build my Blackberry app with Ant. The error is Please enter valid application id Can someone please tell me where I can obtain this? Update: I have found out ...
0
votes
0answers
31 views

How to set title in Japanese using BB Ant tool?

I am using BB Ant tool to generate .cod file for my BlackBerry App. I want to set the App name in Japanese, so I tried below: <jdp type="cldc" title="これはある" vendor="Dhiral" ...
1
vote
2answers
625 views

Can't run “preverify.exe” using Ant's <exec> task

I am having trouble getting my Ant script (for BlackBerry build) to run the preverify.exe command & pass the correct parameters to it. In the command prompt (Windows 7), this works 100% - the ...
1
vote
1answer
2k views

Phonegap and Blackberry WebWorks: build\StandardInstall does not exist

My environment is Windows XP. JDK and Apache ant are installed. Phonegap version is 1.7.0 BlackBerry Webworks SDK for smartphone: version 2.3.1 I'm following the instruction of ...
7
votes
3answers
1k views

BlackBerry: create COD from JAR source file in Ant script

How do I use Ant (bb-ant-tools) to compile a JAR file into a COD? i.e. with no other source files Reason Ultimately, I need a script that is going to run Jar Jar Links (jarjar) during the build, ...
13
votes
2answers
918 views

BlackBerry - Ant script to include JAR in project without external dependancies

This is a follow-up to: BlackBerry - use own JAR file in own project & BlackBerry - Ant build script for more complex apps. This problem has now been solved below. Aim I want to: use Ant ...
0
votes
2answers
426 views

how to use ant in eclipse for preprocessing

I need to know how to use an an Ant tool for preprocessing in Blackberry. I have a project which needs to be used in 4.6 and 5.0 versions of Blackberry, since JDE4.6 doesn't support preprocessor. I ...
9
votes
5answers
2k views

BlackBerry - Ant build script for more complex apps

I am having trouble creating an Ant build script for our production apps. I have been reading a lot about Ant, and bb-ant-tools. I have followed many stackoverflow questions on Ant & BB ...
0
votes
2answers
2k views

failed to run launch java.exe error in ant phonegap

I'm using the phonegap blackberry in ant in command prompt. Windows 7, 64x, fairly sure the Java SDK is 32 bit. ...
0
votes
1answer
192 views

Preprocessor in Blackberry (through bb-ant-tools)

There is a project that has #preprocess directives. I.e. there is #preprocess directive in the beginning of a file and something like #ifdef BlackBerrySDK6.0.0 inside the file. Though it compiles ...
1
vote
0answers
73 views

Specifying Multiple Entry Points using Ant [closed]

I have an application which needs to run 2 processes. A - a backgournd process, non UI, runs on phone startup B - GUI process which is invoked either by user selecting the icon or by the process A on ...
2
votes
0answers
920 views

How to make Ant build for my BBM application with native BB jar

I am trying to use BBM in my application,I want to make the ant build for it Bascially there is an implementationBBM a library project,and it in it i am adding the JAR file,and i want to make the ant ...
0
votes
1answer
150 views

fail bb-ant-tools build when jdp referenced file is missing

When I build my BlackBerry application with ant, I don't get any error messages, even though three files defined in the jdp file don't exist. How can I configure the build to fail if source files ...
2
votes
4answers
9k views

CreateProcess error=87, The parameter is incorrect

While building with ant, I am get the following error " : java.io.IOException: Cannot run program "D:\Tools\Java\jdk1.6.0_12\jre\bin\java.exe": (my Project & its path)Error: CreateProcess ...
0
votes
1answer
370 views

Ant Blackberry Build Fails

If I have small Blackberry project with just 10 or less java class files, and if I try to build it with ANT, then it works fine. But my actual Blackberry Project has more than 600 java classes in ...
1
vote
1answer
245 views

With Ant, how do I create seperate jar files from one src directory?

I have one source directory in which I am trying to create separate cod files since my resources (PNG files) are beyond the limit imposed by the RAPC compiler. I am trying to create: .cod(s) for ...
0
votes
2answers
531 views

Different cod/jad files created using Blackberry jde and Ant

I am using blackberry ant tools to generate cod/jad files and found the generated cod to be different from the one i am trying to generate using blackberry JDE 5.0 . The sizes of the siblings cod ...
1
vote
2answers
1k views

How to convert JAR FILE to COD file using Ant Build

I have a JAR File,i want to know how to convert the JAR file to COD file. <target name = "build-MyLib" depends="clean"> <rapc destdir="release\5.0" output="Lib"> <src> ...
0
votes
1answer
505 views

Blackberry Build Tool

Could anyone suggest the best Build Tools for use in the build process when building a blackberry application. Is it just the creation of an ANT project, does that cope with signing etc? Is there a ...
0
votes
2answers
973 views

How to generate BlackBerry resource bundles from ant?

In my BlackBerry eclipse project I use resource bundles. So I have a pair of files... Application.rrc Application.rrh These files are compiled by a builder called BlackBerry Resources Builder in ...
4
votes
3answers
1k views

Eclipse “Waiting for virtual machine to exit”

I'm working on a blackberry project using eclipse and bb-ant tools. I've created a build.xml file to perform the build. Everytime I try to run an Ant build, eclipse pops up the progress dialog and ...
0
votes
1answer
1k views

Convert a .jar file into a .cod file using bb-ant

I'm working on a Blackberry application (JDE 4.6.1) on a Windows system. I need to convert a .jar file in a .cod file using bb-ant-tools. Does anybody know how to do it? I'm using: <target ...