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
2
votes
3 answers

Why doesn't my QML property update when it is bound to Slider.value property?

I have a QML document with an int property, a Slider and a Button in it. I want x to always have the same value as Slider.value. Here's my QML: Page { property int x: 1 content: Container { Slider { fromValue: 1 …
donturner
  • 17,867
  • 8
  • 59
  • 81
2
votes
2 answers

PhoneGap (Cordova) + BlackBerry 10 QNX Build Issues with Ant

I am experienced in building applications for the BlackBerry platform, and am currently trying to deploy a sample application with PhoneGap (Cordova) with BlackBerry WebWorks for the BlackBerry 10 Beta (QNX) without much success. I am following the…
Paul
  • 111
  • 1
  • 8
2
votes
1 answer

When I try to Port Sample Android app into Blackberry 10 Dev Alpha simulator I Get Error

Connecting 192.168.176.128 to ADB failed! Please check if the Android player was fully started when you got this error. If not, you can either increase the Android player launch timeout on the BlackBerry->BlackBerry Android Development Tools…
2
votes
2 answers

Add library into cascades

Hi I am developing an application to unzip files in blackberry10. For unzipping files I am using quazip library code I get from github. But I dont know how to add this library to my project can anybody please let me know how to add library to…
pranavjayadev
  • 937
  • 7
  • 31
2
votes
1 answer

BlackBerry 10 PJSIP Implementation

As of late, I development a keen sense of interest in making a PJSIP app on the BlackBerry 10 platform. Has anybody managed to do such a thing? I have built the libraries as per instructions at https://trac.pjsip.org/repos/wiki/Getting-Started/BB10…
Houston
  • 426
  • 4
  • 17
2
votes
2 answers

Appworld market link in Android runtime

I have an app on the appworld and I would like to add a link to it in my app so that people can more easily rate it. Normally on the android market I would do something like: Uri uri = Uri.parse("market://details?id=com.example.test"); Intent…
MinceMan
  • 7,483
  • 3
  • 38
  • 40
2
votes
1 answer

BlackBerry 10 Cascades: How do I load data into a DropDown?

I have managed to load data from a remote Json web service into a QML ListView, but there doesn't seem to be any such thing for the DropDown control. Does someone have an example or an alternative method to accomplish a DropDown bound to…
Tjaart
  • 3,912
  • 2
  • 37
  • 61
2
votes
1 answer

How to show a phonepad with a certain number in Blackberry Cascades

I am using Blackberry Cascades 10 Beta 3 SDK with C++ QT & QML with the Blackberry 10 Dev Alpha Simulator and the QNX Momentics IDE, and I'm trying to implement the ability to click on a button with a phone number from QML and have it bring up a…
user1296259
  • 521
  • 1
  • 13
  • 33
2
votes
1 answer

BlackBerry 10 QML Application Crashes on datasource Load

The following code the constructor loads up a Qml file that loads data from a remote Json data source and this works perfectly fine. When I call the startMenu method I am using the exact same Qml in MainMenu.Qml but as soon as I call…
Tjaart
  • 3,912
  • 2
  • 37
  • 61
2
votes
2 answers

Get target of cascades TouchEvent not working

I'm having problems trying to reach for the target of the Touch Event from BB10 cascades API. I have several containers, one below the other, and each one of them have the same Touch signal and slot assigned. Everything is being dynamically loaded…
mariomunera
  • 323
  • 1
  • 4
  • 18
2
votes
2 answers

vmware player not working properly for blackberry 10 dev alpha

I am trying to use the blackberry 10 emulator on my Core i3 laptop, but the performance is horrendous. I am using Windows 7 and the BB10 dev alpha simulator image. I am using the safe option when booting up BB, because without it there are weird…
Tjaart
  • 3,912
  • 2
  • 37
  • 61
2
votes
2 answers

can i integrate BlackBerry inApp payment into my android application?

im trying to integrate inapp purchases (from blackberry market) into my android application. when i import this library "paymentapi.jar" into my project and run it i receive these warnings/errors: [2012-10-12 15:28:43 -…
2
votes
4 answers

Starting BlackBerry application development

I am a mobile application developer and have pretty decent experience in Windows Phone application development and Android. Now, I want to start developing for Blackberry also. Going through the offcial BlackBerry website, I came to know it is…
Swayam
  • 16,294
  • 14
  • 64
  • 102
2
votes
2 answers

Call C++ function from Cascade QML

I want to call C++ function from Cascade QML this is CalcolatorQML.cpp // Default empty project template #include "CalcolatorQML.hpp" #include #include #include #include…
JustMe
  • 732
  • 1
  • 11
  • 16
2
votes
3 answers

Blackberry App for OS 7.0 and earlier, with blackberry 10 support

I have to develop a BlackBerry application which runs on all the devices running blackberry OS 7.0 and earlier, and can run on BlackBerry 10 devices, too. How can I do that? Is a WebWorks application able to support all the above platforms? If yes,…