Application registry is a core RIM Java OS structure . To play with it add the following string
Object __appReg = Process.getAppRegistry();
to BB java project. We used “Hello World!” sample project from JDE. Sure you need correct the import section of your project by adding import net.rim.vm.*;.
Using JDE IDE set a breakpoint on the next line and execute your code in standard IDE emulator. When program stops at the breakpoint, check __appReg :)
By the way the public key mentioned in this post was discovered using this approach.
This does not work for me, the compiler complains that it does not find the variable “Process” :(
You need to modify your net_rim_api.jar first as it is described here
http://drbolsen.wordpress.com/2007/07/31/bypass-signature-requirement/
great, thanks…
i’d love to see this on a real device!
After 20 minutes of fiddling, I have to say seeing that object in the locals pane was quite rewarding. Your work is fascinating!