Legacy Documentation: Version 4.6
Language: English
Blackberry10 Details
BlackBerry 10 Controller

Plugins for Blackberry 10

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Basic steps

  1. Download the Desktop plugin example called ‘Simplest Plugin’ which you can get from here: SimplestPluginExample–4.0.zip

    Unzip the SimplestPluginExample and place the unzipped project somewhere accessible on your hard drive.

  2. Then Download the BlackBerry native SDK and install it by following the on screen prompts,you can find the appropriate version here: http://developer.blackberry.com/native/downloads/

  3. Once you have the SDK installed then you need to locate the file bbndk-env_10_2_0_1155.sh file (or .bat file for windows), this file might have different numbers at the end but that’s not a problem.

  4. In order to set up the paths needed to build BlackBerry object and shared libraries open a terminal window and navigate to the folder which contains this file. Type the command:

    source bbndk-env_10_2_0_1155.sh (correct the file numbers where necessary).

    This will set up the paths needed to build BlackBerry object and shared libraries.

    
    Applications unity$ cd bbndk/
    bbndk unity$ ls
    bbndk-env.sh install
    bbndk-env_10_1_0_1020.sh licenses
    host_10_1_0_132 target_10_1_0_1020
    ide
    bbndk unity$ source bbndk-env_10_1_0_1020.sh
    
  5. Open the “Unity Project Plugin” (the project we unzipped earlier) within Unity and create the following directory path within the project panel: Assets/Plugins/BlackBerry/libs.

  6. Within a terminal window, navigate to the ‘EclipsePlugin’ directory within SimplestPluginExample, in this directory there should only be Plugin.cpp

    
    SimplestPluginExample unity$ cd EclipsePlugin/
    EclipsePlugin unity$ ls
    Plugin.cpp
    
  7. Provided you have followed the steps correctly, typing the command: which arm-arm-unknown-nto-qnx8.0.0eabi-g++, shouldn’t produce any errors otherwise check you have set the paths up correctly.

  8. To create the object file, perform the following command within this terminal directory:

    arm-unknown-nto-qnx8.0.0eabi-g++ -fPIC -marm -shared -c Plugin.cpp

    You should now see the Plugin.o file within EclipsePlugin:

    
    SimplestPluginExample unity$ cd EclipsePlugin/
    EclipsePlugin unity$ ls
    Plugin.cpp Plugin.o
    

    N.B. It is important that the filename matches the name used in the dll import line from the C# script, which in this case is ‘ASimplePlugin’.

  9. To create the shared library that the project uses, perform the following command:

    arm-unknown-nto-qnx8.0.0eabi-g++ -shared -o libASimplePlugin.so Plugin.o

    You should now see the libASimplePlugin.so file within EclipsePlugin:

    
    SimplestPluginExample unity$ cd EclipsePlugin/
    EclipsePlugin unity$ ls
    Plugin.cpp Plugin.o libASimplePlugin.so
    
  10. Copy and paste the generated libASimplePlugin.so file into our earlier created directory SimplestPluginExample/Unity Project Plugin/Assets/Plugins/BlackBerry/libs, you can also drag the file directly into the Unity editor.

  11. Deploy the project to your BlackBerry device (provided the build and player settings have been setup) and then check the log (you can do this by accessing Player Settings and clicking ‘Get Log’). It should have print statements from the C# file in the project.

Blackberry10 Details
BlackBerry 10 Controller