09-10-2012 03:27 AM
Hi,
I am new in blackberry development.
I have a problem. I create an application for my blackberry smart phone and build the application named as "MyApp". After I build the application I got a new folder "OTAInstall". In my "OTAInstall" folder I have more files like "MyApp.cod, MyApp-1.cod, MyApp-2.cod, MyApp-3.cod,
"Error starting MyApp: Module 'MyApp-1' attempts to access a secure API". I understood that, the only file "MyApp.cod" is signed in the "OTAInstall" and other files are not. How can I signed the other files.
Please advice.
Solved! Go to Solution.
09-10-2012 08:36 AM
Hi there,
When you're packaging your application you need to use the -g flag to sign it. Here's a link to the documentation which will explain things more in-depth, and should get you pointed in the right direction
(https://developer.blackberry.com/html5/documentati
For example:
bbwp C:\myapp\myarchive.zip -g myKeystorePassword --buildId 10 -o C:\myapp\output
09-11-2012 05:30 AM
Hi,
Thank you for your help. It is working fine now.
Sabeesh