am currently using the Eclipse Blackberry plug in for my development, and I have already gotten my code Signing keys from RIM, and can debug on the device successfully.
Where I run into problems is generating a SQLite database on the device (with no SD card). I get a ControlledAccessException thrown every time I try to use the line if(DatabaseFactory.exists(dbURI))
.
I have used the file signing tool provided by RIM to create my own .KEY file. I have set the .KEY file to be used as default for both public and non-public classes, as well as the other packages that are in my app. The security settings on my phone (Torch 9810) have given the app allowed status for everything under Application permissions. I have also tried resigning the application to no avail.
I know that my application is picking up the .KEY file because key = CodeSigningKey.get(moduleHandle,"Key_Name");
returns a value. So does anybody have any idea what's going on?
UPDATE: So my signing tool is telling me that the key I generated is "Not Registered" under status, and under Details: "Please contact the signer and register with the Signing Authority." But since I am the signer, what do I do?