Confusion with MIDlet attributes in a JAD file

Posted by Mithun on Stack Overflow See other posts from Stack Overflow or by Mithun
Published on 2010-05-05T06:22:06Z Indexed on 2010/05/05 6:28 UTC
Read the original article Hit count: 297

Filed under:
|

"MicroEdition-Profile" can have multiple values separated by space in the JAD file, where as "MicroEdtion-Configuration" can have only one value.

According to JTWI specifications,

  1. Minimum requirement for MIDP is 2.0, so this gives us only one option (MIDP 2.0) to put in the JAD file
  2. Minimum requirement for CLDC is 1.0, so this gives us two options to put in the JAD file ie: CLDC1.0 and CLDC2.0

I can create an application which is compatible with CLDC1.0 and 1.1. Why are multiple values allowed for Profile attribute but only one value is allowed for Configuration attribute?

© Stack Overflow or respective owner

Related posts about j2me

Related posts about midlet