Here the manual instructions to change an applications permissions by modding the permissions.
- Copy the jar file to your phone
- Install the file by going to the games, and install new, Or you can go to the file manager and install the file as well.
- Plug the phone into the PC
- Using windows explorer (USB Storage mode) navigate to \.system\java\DownloadApps\MIDletXXXX on your SD card where MIDletXXXX is the last directory in DownloadApps in alphabetic ascending order.
- Make a copy of the file registry.tx (in case you need to recover original file)
- Edit the file registry.txt with a editor compatible with unix (eg wordpad). Do not use MS Word or Notepad! (Be sure the file has a line saying: Jar-URL: appname.jar - if not, you are in the wrong directory)
- Change the values to these ones
- DRM-Mode: Allowed
- Is-Trusted: 1
- Domain: Manufacturer
so that it looks like the code below.
- Save the file and disconnect from PC
- The app should now be able to read and write files.
**Below is an example..Text may vary depending on what application you are modifying **:
Code:
Jar-Path: /mmc/mmca1/.system/java/DownloadApps/MIDlet20006/Files/Minipauker.jar
Jad-Path: /mmc/mmca1/.system/java/DownloadApps/MIDlet20006/Files/Minipauker.jad
Perm-Path: /mmc/mmca1/.system/java/DownloadApps/MIDlet20006/permfile.txt
Suite-Icon: /mmc/mmca1/.system/java/DownloadApps/MIDlet20006/Files/MIDlet-1.png
DRM-Mode: Allowed
Is-Trusted: 1
Jar-URL: Minipauker.jar
Description:
Domain: Manufacturer
Signer-Name:
Mot-JavaVM-Heapsize: 0
Delete-Notify:
Num-MIDlets: 1
MIDlet-1: j2mesync, /mmc/mmca1/.system/java/DownloadApps/MIDlet20006/Files/MIDlet-1.png, de.ohli.Minipauker.Minipauker.
After this the app should be able to read/write files correctly.
~Alpha~