Questions tagged [blackberry-10]

BlackBerry 10 is a QNX-based mobile platform developed by BlackBerry (formerly Research in Motion). It is the successor to the BlackBerry Java platform and was launched to consumers on January 30th 2013. Be sure to read the tag wiki (click on learn more) before selecting question tags.

BlackBerry 10 is a QNX based mobile platform created by BlackBerry (formerly Research in Motion). The officially supported development approaches are:

  • Native (C/C++) - This includes a UI framework called Cascades which developers can use to design and layout UI components

  • WebWorks (HTML5) - BlackBerry® WebWorks™ allows web and mobile web developers to use the SDK in combination with their development tooling of choice to develop, test and package up their web applications for BlackBerry tablets and smartphones.

  • Android runtime (Java) - BlackBerry 10 includes the Android 4.2.2 (Jelly Bean) runtime so Android apps can be repackaged to run on BlackBerry 10 devices

  • Adobe AIR (Actionscript) - BlackBerry 10 includes the Adobe AIR runtime to allow AIR apps to be repackaged to run on BlackBerry 10 devices

  • Development for BlackBerry OS - Use your existing JavaScript/CSS/HTML skills to bring your app to existing smartphone users. Develop using HTML5, JAVA, Theme Studio

BlackBerry 10 was officially launched to developers in May 2012.

The operating system, as well as two devices, the Z10 (a full touchscreen device), and the Q10 (a device equipped with a physical keyboard), were announced simultaneously around the world on January 30, 2013.

When asking a question, please use one of the following tags to specify platform:

For simulator do not use tag, instead use . For Eclipse plugin use .

1386 questions
4
votes
1 answer

Error when "cordova emulate blackberry10"

It produces following output: Generating config.xml from defaults for platform "blackberry10" Preparing blackberry10 project Running on emulator for platform "blackberry10" via command "cmd" /c…
janot
  • 13,578
  • 1
  • 27
  • 57
4
votes
1 answer

When building blackberry10 cordova/phonegap project many files are missing

When building a blackberry10 cordova/phonegap project, a number of files are not included in the build. A number of splash screen images and the file "DEFAULT_BAR_NAME.bar" are not included. However, if the same process is repeated on another…
Patrick_92
  • 99
  • 6
4
votes
1 answer

Error in inclusion of , in cpp file of a BB10 app development

I am currently working on BB10 app development and trying for some HTTP connection demo app. But in the cpp file is giving a ? in front of inclusion statement #include saying Unresolved Inclusion :…
Sunil Targe
  • 7,251
  • 5
  • 49
  • 80
4
votes
1 answer

Enabling Web Inspector for the BlackBerry10 Browser from simulator

I am running BB10 simulator in Windows7 PC using VMware Player with bridge connection. Web pages are opeming in BB10 Browser. I want to enable developer tool to test my web application in BB10 Browser. According tho the given link…
4
votes
1 answer

UI Issues in converted android Apps to BlackBerry platform

I am on a process of converting an Android app to run in Blackberry platform and to publish it in BlackBerry World (BB Market place). So I continued to follow the following TUTORIAL and yes it runs well in BlackBerry 10 Device Simulator but with…
JibW
  • 4,538
  • 17
  • 66
  • 101
4
votes
1 answer

BB10 start applications from command line

I've followed the instructions here: BB10 Cascades Command Line Development Now I've got a makefile project, which can compile and deploy my application to a connected device. The only problem is, I can't start the application remotely. I've created…
G B
  • 2,951
  • 2
  • 28
  • 50
4
votes
1 answer

Toast hide behind the keyboard on BB10

I ported the android application to BB10. In application if keyboard is open at the same time if toast is display it is hide behind the keyboard on BB10 and user not able to see the toast message. In Android application it works fine only issue face…
Megha
  • 1,581
  • 2
  • 18
  • 33
4
votes
0 answers

Blackberry Keyboard with Action keys on BB 10 using Android runtime

I have an android app with certain keyboard layouts and some defined actions for the enter key on some textviews. For e.g., the textviews are defined with android:imeOptions="actionGo" android:inputType="text" and i have an EditText with…
4
votes
3 answers

How to run BB10 simulator in Mac OS X

After installing the simulator I am not able to follow the instructions found here. I installed BlackBerry 10 Dev Alpha B Simulator. The page asks to run "BlackBerry10Simulator-BB10_ n_nn" but I cannot find any thing like that in my installation…
russoue
  • 5,180
  • 5
  • 27
  • 29
4
votes
1 answer

Is it possible to reverse the Grouping in a GroupDataModel

I have a GroupDataModel of items and use this to populate a ListView. Each item has a category, which can be either "TV" or "Cinema". I set "category" as a sorting key and the ListView displays the items grouped into categories. However, the order…
barry
  • 4,037
  • 6
  • 41
  • 68
4
votes
2 answers

How to get IMEI number in Blackberry 10 device using webworks?

I am working on Blackberry 10 App using webworks and I want to get the device IMEI number using webworks. I did not find any solution to get IMEI number on internet.
user1752633
4
votes
3 answers

Invocation from function in QML?

I can share an item easily using an InvokeActionItem in a Page but I need to be able to call it in a listview item. I've managed to trigger an invoke, but I cannot figure out how to add data when triggering it. I keep getting an error message of…
hyarion
  • 2,251
  • 2
  • 17
  • 28
4
votes
1 answer

BB10 android runtime push notification

I have followed this tutorial to enable push notification on android runtime but I am getting failure 830 android/android.cfg: unknown asset error when i try to deploy bar package into alpa device. What can be the reason of that?
med
  • 1,540
  • 1
  • 15
  • 27
4
votes
1 answer

Changing BlackBerry-10 screen brightness from Android app

In my Android application I am using the following code to change screen brightness WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.screenBrightness = someValue; getWindow().setAttributes(lp); On Android devices it works fine, but…
Bojan Kogoj
  • 5,321
  • 3
  • 35
  • 57
4
votes
1 answer

How to setup SDL with NDK / Native of Blackberry OS 10?

I have a Mac enviroment with snow leopard and I Would like to port a written game with sdl to bb10. My enviroment works with cascades and opengl samples... I saw there is an SDL port on github.com/blackberry and a TouchoverlayLibrary to use..but I…