- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsI have a build.xml as follows. I wanted to specify dependency on kxml.zip in class path in this file. How do I do that?
<project name="MyMobile" default="j2mepolish">
<!--define the installation folder of J2ME Polish-->
<property name="polish.home" location="C:\Tools\J2ME-Po
<!--define the installation folder of the WTK-->
<property name="wtk.home" location="C:\S60\Devices\S
<property name="nokia.home" location="C:\S60\Devices\S
<!-- Definition of the J2ME Polish task: -->
<taskdef name="j2mepolish"
classname="de.enough.polis
classpath="${polish.home}/
/>
<!-- start the build with J2ME Polish -->
<target name="j2mepolish">
<j2mepolish>
<info
license="GPL"
name="MyMobile"
vendorName=""
version="0.0.1"
jarName="MyMobile.jar"
/>
<deviceRequirements unless="test">
<requirement name="Identifier" value="Nokia/Series60" />
<or>
<requirement name="JavaPackage" value="nokia-ui,mmapi" />
<requirement name="BitsPerPixel" value="4+" />
<and>
<requirement name="JavaPackage" value="mmapi" />
<requirement name="JavaPlatform" value="MIDP/2.0+" />
</and>
</or>
</deviceRequirements>
<build
imageLoadStrategy="foregro
fullscreen="menu"
usePolishGui="true"
>
<resources
dir="resources"
/>
<midlet class="MobileAd" />
<debug
verbose="false"
level="error">
</debug>
<variables>
<variable
name="polish.TextField.use
value="true" />
<variable
name="polish.ChoiceGroup.s
value="true" />
<variable
name="polish.TextField.sup
value="true" />
<variable
name="polish.TextField.sho
value="false" />
<variable
name="polish.command.ok"
value="OK" />
<variable
name="polish.command.cance
value="Cancel" />
<variable
name="polish.command.selec
value="Select" />
<variable
name="polish.command.optio
value="Options" />
</variables>
<jad>
<attribute
name="Server-URL"
value="http://localhost:80
/>
</jad>
</build>
<emulator>
</emulator>
</j2mepolish>
</target>
<target name="clean">
<delete dir="build" />
<delete dir="dist" />
</target>
</project>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: bgloddePosted on 2006-05-01 at 21:06:07ID: 16582996
You'll need to add binaryLibraries="kxml.zip" to the build tag. docs/how-t os.html#ho wto-api-bi nary
http://www.j2mepolish.org/