MIDlet application descriptor properties
Application descriptor files have an extension of .jad. A standard MIDlet .jad file contains the following predefined attributes, and might contain additional attributes defined by the application.
|
Required MIDlet attribute |
Description |
|
MIDlet-Jar-Size |
number of bytes in the .jar file |
|
MIDlet-Jar-URL |
URL from which the .jar file can be loaded |
|
MIDlet-Name |
name of the MIDlet suite |
|
MIDlet-Vendor |
organization that provides the MIDlet suite |
|
MIDlet-Version |
version of the MIDlet suite, formatted as <major>.<minor>.<micro> |
|
Optional MIDlet attribute |
Description |
|
MIDlet-Data-Size |
minimum number of bytes of persistent data required by the MIDlet suite; the default is zero |
|
MIDlet-Delete-Confirm |
text message that appears when prompting the user to confirm deletion of the MIDlet suite |
|
MIDlet-Description |
description of the MIDlet suite |
|
MIDlet-Icon |
name of the .png image file within the .jar file used to represent the MIDlet suite |
|
MIDlet-Info-URL |
URL for further information describing the MIDlet suite |
|
MIDlet-Install-Notify |
URL to which a POST request is sent to confirm successful installation of the MIDlet suite |
Post a comment