MIDlet Suite
9 April 2008In this post, I will introduce you to the MIDlet suite.
I assume that you people have worked with Eclipse. In Eclipse, you create projects and all the contents of the project are placed in the project folder. It is an approach for managing the work.
MIDlet suite is very much like a standard Java project in Eclipse. Please note that it’s not a requirement to place MIDlets inside a Java Archive (JAR) file, but JAR files provide the most common means of distributing MIDP applications. The MIDlet Suite comproses of all files and resources that may be required as part of a MIDlet. The MIDlet Suite consists of
- Java class files enclosed in a JAR file
- manifest file describing the contents of the JAR
- resources (images, etc) enclosed in a JAR file
- Java Application Descriptor file (JAD)
Related Posts:
- Creating J2ME MIDlet Project - I
- Deploying MIDlets onto Mobile Devices (III)
- Writing MIDlet for SMS - I
- Writing MIDlet for SMS - IV
- Writing MIDlet for SMS - VI
- Writing MIDlet for SMS - III
- Writing MIDlet for SMS - II
- Writing MIDlet for SMS - V
- Converting an existing project to an EclipseME project
- Creating J2ME MIDlet Project - II
Top Of Page | Trackback
If you found this page useful, consider linking to it. Simply copy and paste the code below into your web site.
It will look like this: MIDlet Suite