MANIFEST Commands Of Java Apps/Games

Leave a Comment
1. MIDlet-Version:
The MIDlet suite version number.
For example: 1.0.1
2. MIDlet-Vendor:
The company that provides the MIDlet suite.
For example: InvokeVirtual
3. MIDlet-Name:
The name of the MIDlet suite.
For example: UC Browser
4. MicroEdition-Configuration:
The Java ME configuration required by the MIDlets in this suite. The value is compared to that listed in the microedition.configuration property of the target device to determine compatibility.
For example: CLDC-1.0
5. MicroEdition-Profile:
The version or versions of the MIDP specification that the MIDlets in this suite can work with.The versions specified are compared to those listed in the microedition.profiles property of the target device to determine compatibility.
For example: MIDP-2.0
6. MIDlet-:
The name, icon, and class of the midlet in the JAR file separated by a comma. The name and class are mandatory.
for example:
MIDlet-1: UC Browser,/l.png,cn.uc.application.app.WebClient
7. MIDlet-Description:
A description of the MIDlet suite. Displayed to the user during the installation.
For example: A simple demo midlet
8. MIDlet-Icon:
The case-sensitive absolute name of a .png file within the JAR used to represent the MIDlet suite.
For example: /icons/mydemo.png
9. MIDlet-Info-URL:
The URL that contains further information describing the MIDlet suite. Displayed to the user during the installation.
For example: http://www.xyz.com /demo.html
10. MIDlet-Data-Size:
The minimum number of bytes of persistent data required by the MIDlet suite.
For example: 500
11. MIDlet-Delete-Confirm:
The application management system uses this confirmation prompt when removing the MIDlet suite.
For example: Are you sure you want to delete the Demo?
12. MIDlet-Delete-Notify:
This property indicates the URL for posting removal status.
13. MIDlet-Install-Notify:
Indicates the URL for posting installation and update status.
14. Nokia-MIDlet-no-exit:
Indicates a MIDlet that cannot exit once started.
for Example: true or false
15. Nokia-UI-Enhancement:
Specifies the following:
> Theme (skin) behavior on a normal mode Canvas (not full screen) component. The background image is shown if the attribute value isCanvasHasBackground. If the attribute is not defined, by default the background is white (corresponds to Display.getColor(COLOR_BACKGROUND)). If the MIDlet does not render all the pixels of a given clip region in the paint method, the theme background is shown.
> ReceivingMedia Key Eventwhile the MIDlet is running.
for Example:
Nokia-UI-Enhancement: CanvasHasBackground
Nokia-UI-Enhancement: MusicKeysSupported
16. Nokia-Update:
Version update URL, used when doing Update Check. If no URL then Update Check is disabled.
for Example:
17. Nokia-MIDlet-national-digit-display:
Used to enable national rather than Latin digit display.
For Example: true or false
References:
http://developer.nokia.com
http://swamitricker.cf

0 comments:

Post a Comment