MIDlet
Article Metadata
A MIDP application is called a MIDlet. A MIDlet (or Midlet) is an a Java ME program using MIDP as the profile.
A MIDlet has to fulfill the following requirements in order to run on a mobile phone:
- The "main" class of the project needs to be a subclass of javax.microedition.midlet.MIDlet
- The MIDlet needs to be packed inside a JAR file (e.g. by using the jar-tool or automatically using an IDE)
- The JAR file needs to be preverified by using a preverifier.

