I'm using J2ME Polish version 2.0.7 together with ant to build my Midlet application. In order to specifcy the main-class, name and icon of the application, the J2ME Polish documentation suggests that I use the midlet element inside the build element.

<build usePolishGui="false" >
    <midlet name="My Killer App." icon="/logo.png" class="com.foo.MidletMain" /> 
...
</build>

however in the resulting .jad file only the classname is taken into account when I build my Midlet.

MIDlet-1: MidletMain,,com.foo.MidletMain

Can someone figure out what I'm doing wrong?

link|improve this question
See if you have the logo.png is in the root folder of the jar file – Ram Jun 10 '09 at 9:02
feedback

2 Answers

No it must be in the info section of the j2mepolish target:

<project ...>
<target name="j2mepolish"  ...>
    	<j2mepolish>
    		<info ... icon="xxx.png">
link|improve this answer
feedback

What you will need to do is this:

<j2mepolish>
.....
<build>  
  ...
   <jad>
         <attribute name="MIDlet-Icon" value="/icon.png" />
   <jad>
</build>

Your icon would work!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.