Deploy Java code to your BlackBerry device without signing keys

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

I am currently using .cod files to deploy to a BlackBerry device simulator.

+3
source share
1 answer

You only need key signatures if you use the BlackBerry APIs they require (as indicated in javadocs for classes and / or methods that require them). Otherwise, you can easily create, deploy and test your application on your phone.

+6

Source: https://habr.com/ru/post/1771529/


All Articles