Advertisement
Guest User

How to sign Playbook bar files guide

a guest
Dec 29th, 2011
2,018
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. How to sign playbook bar files
  2. by bombadil_
  3.  
  4. First, get your csj certificate files from RIM (https://www.blackberry.com/SignedKeys/), install the RIM playbook SDK (NOT the beta SDK), Adobe AIR SDK, and Android SDK (and download the "SDK Platform" from the "Android 2.3.3 (API10)" list in the Android SDK Manager tree) then follow these steps:
  5.  
  6. #1. Run > cmd - then cd to the bin directory of the RIM SDK (by default: C:\Program Files\Research in Motion\blackberry-tablet-sdk-1.1.1\bin), then:
  7.  
  8. blackberry-signer -csksetup -cskpass yourPinhere
  9.  
  10. [Note: If you get an error saying a key already exists, you need to delete it using this command:
  11.  
  12. blackberry-signer -cskdelete
  13.  
  14. /Note]
  15.  
  16. #2. Register your csj files (which should both be in the bin folder):
  17.  
  18. blackberry-signer -register -csjpin yourPINhere -cskpass yourPinhere client-RDK-##########.csj
  19.  
  20. blackberry-signer -register -csjpin yourPINhere -cskpass yourPinhere client-PBDT-##########.csj
  21.  
  22. #3. Create the .p12 key file:
  23.  
  24. blackberry-keytool -genkeypair -keystore QNX.p12 -storepass yourPinhere -dname "cn=yourcompanyhere" -alias author
  25.  
  26. #4. Sign the bar file (which should be in the bin folder) twice using these commands (once using RIM's server, RDK, and once locally, author):
  27.  
  28. blackberry-signer -keystore QNX.p12 -storepass yourPINhere -cskpass yourPINhere NAMEofBARfile.bar RDK
  29.  
  30. blackberry-signer -keystore QNX.p12 -storepass yourPINhere -cskpass yourPINhere NAMEofBARfile.bar author
  31.  
  32. #5. Profit^3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement