Skip to content

Latest commit

 

History

History
73 lines (41 loc) · 1.2 KB

phones.md

File metadata and controls

73 lines (41 loc) · 1.2 KB

Phones

Systems

https://en.wikipedia.org/wiki/Signalling_System_No._7

Numbers

| 00 | International operator | | 555-1212 | directory assistance |

BlackBerry

Compile via command-line

source bbndk-env.sh
export PROJECT_DIR=<project directory>
qcc main.c -o main

View logs via SSH

blackberry-connect 169.254.0.1 -password <pass>
ssh [email protected]

Create developer certificate

blackberry-keytool -genkeypair -keystore ~/.rim/author.p12 -storepass $PW -author $AUTHOR

Create debug token

blackberry-debugtokenrequest -bbidtoken ~/.rim/bbidtoken.csk -storepass $PW -deviceid $DEVICEID ~/.rim/debug_token.bar

Deploy debug token

blackberry-deploy -installDebugToken ~/.rim/debug_token.bar -device $IP -password $DEVICEPW

Build a native package

# build with a debug token
blackberry-nativepackager -package $PKG.bar bar-descriptor.xml -devMode -debugToken ~/.rim/debug_token.bar

Deploy native app

blackberry-deploy -installApp 169.254.0.1 -password $PW $PKG.bar

Reference documentation