Hello four month ago I submitted my applcation (java midlet) to java verified.
My app access the MMC of an 6230i Nokia mobile phone. the algorithm I use to access the mmc is:
String mydir = System.getProperty("fileconn.dir.memorycard");
FileConnection getwdir = (FileConnection)Connector.open(mydir+"cdir/",Connector.READ_WRITE);
the jad filecontains following permissions:
MIDlet-Permissions: javax.microedition.io.Connector.file.read, javax.microedition.io.Connector.file.write, javax.microedition.pim.EventList.read, javax.microedition.pim.EventList.write, javax.microedition.pim.ContactList.read, javax.microedition.pim.ContactList.write
is there a chance to get this midlet working?
On my Handset (6230i German Vodafone variant Firmware: 3.40) the midlet works fine (without write access to mmc):
FileConnection getwdir = (FileConnection)Connector.open(mydir+"cdir/",Connector.READ);

Reply With Quote

