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

How can I call a pointer of an QObject in a QML File?

I'm developping an application for Blackberry 10 and I'm using the Momentics IDE (BB native SDK). I get the following error when I try to execute the code below. Any one have an idea how can I fix this ? Error QMetaProperty::read: Unable to handle…
Mohamed Jihed Jaouadi
  • 1,427
  • 4
  • 25
  • 44
3
votes
3 answers

Emit a "clicked()" signal for a BB Cascades button from C++ code

I need to simulate a button click from C++ code. I have written the following code so far /* * signalhandler.hpp * * Created on: Nov 14, 2013 * Author: fnazeem */ #ifndef SIGNALHANDLER_HPP_ #define SIGNALHANDLER_HPP_ #include…
DesirePRG
  • 6,122
  • 15
  • 69
  • 114
3
votes
1 answer

Accessing QML objects from C++

Following is a code written to load a QML document to c++. QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this); // Create root object for the UI AbstractPane *root = qml->createRootObject(); …
DesirePRG
  • 6,122
  • 15
  • 69
  • 114
3
votes
1 answer

Convert Android App to Blackberry using ADT Plugin Eclipse

I have successfully converted an android app using ADT plugin in eclipse and have couple of confussed situations. I went through this Documentation regarding the process but in this video still mention about the "Code signing keys" which is the Old…
JibW
  • 4,538
  • 17
  • 66
  • 101
3
votes
1 answer

how to get value from listview in cascade Blackberry

Well I am just trying to get the value from the list-view on selection and pass it to the next screen(page). But I am unable to do as it shows error like asset:///main.qml:25: TypeError: Result of expression 'dataModel.model' [undefined] is not a…
avipandey
  • 57
  • 4
3
votes
3 answers

Get notification when contacts are added/deleted/updated

On BlackBerry 10, how can my Qt application be notified when a contact is added, deleted, or updated? Is there a contact API?
3
votes
0 answers

How do I correctly load data into a Picker with an ArrayDataModel? (Blackberry OS 10 Cascades)

I am working with Blackberry 10 Cascades and I am trying to load data into a picker using an ArrayDataModel. All of the documentation online I have read thusfar have given me examples to use with XMLDataSource, however since my data is JSON and…
user2233227
3
votes
4 answers

Can I distribute my BlackBerry 10 WebWorks app via web server (OTA)?

I have a multi-platform mobile app that I am releasing on iOS, Android, Windows Phone 8, and Blackberry 10 (WebWorks). For the other three non-BB platforms, I have a way to distribute the enterprise app via a web server (user installs by clicking a…
3
votes
0 answers

Blackberry 10 simulator set default screen resolution/detect given IP

Right now every time I run the Blackberry 10 simulator (standalone) I have to pick one of four options (Q10 style, Z10 style, and safe mode for either one). I'd like this to be 'default' Z10 style instead of having to click into the VMWare and type…
Richthofen
  • 2,076
  • 19
  • 39
3
votes
2 answers

phonegap cordova unable to locate blackberry-nativepackager

I am trying to create a blackberry10 project with phonegap cordova command line tool. I am following through the phonegap document (http://cordova.apache.org/docs/en/2.9.0/guide_cli_index.md.html#The%20Cordova%20Command-line%20Interface) but keep…
3
votes
1 answer

What can cause an exception 16: "mutex: Resource busy" to be thrown (using Boost / BB10)?

I've ported a long-working stable library written in C++ and Boost to Blackberry 10. The library transfers files between devices. The library compiles and links well, and runs just fine. However, I consistently encounter a thrown exception on my…
Moshe Rubin
  • 1,944
  • 1
  • 17
  • 37
3
votes
0 answers

How to get GPS location on application ported from android to BB10?

My problem is i am not able to get network or GPS location when BB10 Device is in sleep mode.My device is Q10 Dev Alpha C i have done following testing. Added run_when_backgrounded permission left application running in background. logcat is…
Akram
  • 7,548
  • 8
  • 45
  • 72
3
votes
1 answer

How to install applications on blackberry z10 Simulator for testing

How to install applications to blackberry z10 Simulator,usually in older versions of simulator we used browse from file section -->load java program and load the desired file on simulator, But for BlackBerry Z10 The Simulator can be entirely run on…
3
votes
2 answers

How to fully integrate in bb10 hub like WhatsApp?

The latest version of whatsapp was integrated in bb hub. when click on message item for whatsapp in hub, will open a card UI that can send and receive message. but it still able to send and receive message when I close whatsapp, how to achieve…
user2583101
  • 31
  • 1
  • 2
3
votes
0 answers

to get no. of bytes received and sent in cascades bb 10

Im new to cascades programming. Im trying to develop an app that could give me the number of bytes received and sent. Im using QnetworkSession methods bytesReceived() and bytesWritten() for it, but getting errors. Any help would be…