views:

46

answers:

1

I want to deploy code directly to a BlackBerry device, but I do not have any RIM code signing keys. Is there a way to do this without the keys?

Currently I am using the .cod files to deploy on a BlackBerry device simulator.

+2  A: 

You only need signing keys if you use BlackBerry APIs that require them (as noted in the javadocs for the classes and/or methods that require them). Otherwise, you can build, deploy, and test your application on the phone just fine.

Marc Novakowski