how to complie an application with many classes?
I build an application with many classes,
java palm.database.MakePalmApp -v -version "1.0" -icon 1.bmp -bootclasspath %j2meclasspath% -networking -classpath output %1
this only works with only one class, I do not know if I have an application with several classes how can I convert them into a prc?
[339 byte] By [
liluqun] at [2007-9-26 3:20:12]

Take a look at the mksample.bat file that came with
midp4palm:
java -jar MakeMIDPApp.jar -version 1.0 -type Data -creator mJav -nobeam -v -o ManyBalls_new.prc -JARtoPRC ManyBalls.jar example.manyballs.ManyBalls
You will need to create a jar file consisting of the
classes for your application, and then run it through
a statement like above.
Perry