Java Application Descriptor (JAD) is a text file that describes a MIDlet or a suite of them, distributed as a JAR file. The file has a .jad extension and the name is selected by the developer.
This file is useful for the operating system of the mobile phone to detect requirements, names, icons of the application or game to be installed, before download or installing it.
The syntax of the file is:
Key: Value
Key2: Value2
There are a number of mandatory attributes, which need to be in the JAD file (or then in the Manifest file inside the JAR file), but you can also insert your own attributes in the JAD file, to convey information for your MIDlet (like server to connect to, etc.). The only restriction for those attributes is that the keys (attribute names) cannot start with "MIDlet" or "MicroEdition".
*MIDlet-Certificate: If the application is signed, the details are provided *MIDlet-Jar-RSA : If the application is signed, the details are provided *MIDlet-LOG-PATH : This is a user defined sample entry, just to provide the filesystem path, so that you don't need to hardcode it anywhere in the source
No related wiki articles found