Customizing the Midlet Icon Using J2ME-Polish
I am using J2ME Polish version 2.0.7 along with ant to build my Midlet application. For specifying the main class, application name and icon, the J2ME Polish documentation assumes that I am using midlet
an element within an element build
.
<build usePolishGui="false" >
<midlet name="My Killer App." icon="/logo.png" class="com.foo.MidletMain" />
...
</build>
however in the resulting .jad file only the class name is taken into account when creating my Midlet.
MIDlet-1: MidletMain,,com.foo.MidletMain
Can someone figure out what I am doing wrong?
0
a source to share
2 answers