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
-1
votes
1 answer

Is there an equivalent of iOS navigation controller in BlackBerry-10

I am trying to port an iOS application to BlackBerry-10. Is there anything in BlackBerry-10 that is equivalent to UINavigationController of IOS.
Tahlil
  • 2,680
  • 6
  • 43
  • 84
-1
votes
2 answers

Battery info from the Blackberry 10 SDK

I tried this code: battery_info_t **pointer=NULL; battery_get_info(pointer); return battery_info_get_time_to_empty(*pointer); // needs simple pointer (*pointer) My question is: how can i convert **pointer to *pointer
rosu alin
  • 5,674
  • 11
  • 69
  • 150
-2
votes
1 answer

Intercept Blackberry Calls

How can i intercept blackberry calls audio and amplify the audio before the audio is sent out? My blackberry z30 running on the latest bb10 OS has had an issue of low voice calls. Everyone complains that they cant hear me when on call. However,…
Gatimu
  • 11
  • 8
-2
votes
2 answers

C++, what is the stuff between between the semi colon, and curly braces

I downloaded an example from the blackberry website. I noticed they have some values before the curly braces, and after a colon, seperated by commas. What are these for, and how do they work? Edit: Is this just another way of instantiating values?…
Bobby W
  • 836
  • 8
  • 22
-2
votes
1 answer

Sharing on facebook(Blackberry)

I am developing an application which have an option to share an image via facebook. I use the following code for posting and i am using sdk 3.0. I cant change the sdk version due to some reasons. Please help me. public void postImage() { …
userDroid
  • 198
  • 9
-2
votes
1 answer

How to parse only one array of JSON file in BB 10 using CPP

I have the below Json file called details.json { "text": [ { "id":"123", "name":"John", "age":"20" }, { "id":"234", "name":"David", "age":"21" }, { "id":"345", "name":"July", …
xxxxxx
  • 1
  • 1
-2
votes
2 answers

Q_PROPERTY NOT WORKING PROPERLY

I am developing a bb10 app in cascades. Here is the snippet for the header file //applicationui.hpp Q_PROPERTY(int metric READ getMetric WRITE setMetric NOTIFY metricChanged) public: int getMetric(); void setMetric(int…
neeraj
  • 53
  • 1
  • 5
-2
votes
1 answer

Best way to implement android library billing in BB10

I want to integrate in-app billing in my Black berry 10 app that ported from android.Please suggest the correct way to do this.
Sanu
  • 455
  • 1
  • 6
  • 17
-2
votes
1 answer

blackberry OS 10 development to share screen

Is it possible to create an application for BBOS10 that shares screen to other phone/PC on wifi network just like Radmin on Windows?
Yohanes Pradono
  • 294
  • 1
  • 4
  • 16
-2
votes
1 answer

integrating my application with Call log core application in BlackBerry10?

I am writing one application in which I want to integrate my application with core application- Call Log or Phone . I want to get all call history in my application . I have gone through BlackBerry's official doc but theres no any sample app for…
BB10
  • 9
  • 2
-2
votes
1 answer

How to make device vibrate programmatically in BB10

I am very new to blackberry 10 development, i wanted to vibrate the bbdevice programmatically for some specific duration. How can we do that? Thanks in advance..!!
sumitl
  • 103
  • 1
  • 8
-2
votes
0 answers

Is there a way to run one of my apps functions after every minute in blackberry 10?

I used to achieve this functionality using real time clock listener and the event clockupdated() in previous blackberry versions.My app received a notification from clockupdated() every minute.After that one of my apps functions would run.I want to…
Jpk
  • 21
  • 3
-2
votes
1 answer

"a:InternalServiceFault" getting error when calling SOAP service

friends.. I am implementing SOAP webservices.. I am using below code.. QtSoapMessage request; request.setMethod(QtSoapQName("Method_Name", "http://tempuri.org/*****/")); request.addMethodArgument("key1", "",…
Niranj Patel
  • 32,980
  • 10
  • 97
  • 133
-2
votes
2 answers

Console in C++ Cascade for blackberry

I want to use console.log in my application to print output in console window, but the compiler reports this error Description Resource Path Location Type 'console' was not declared in this scope CalcolatorQML.cpp ‪/CalcolatorQML/src‬…
JustMe
  • 732
  • 1
  • 11
  • 16
-3
votes
1 answer

access context property from listview checkboxitem when onchechchanged

my qml: if i create a button and call " _model.writeapp(appname);" from its click event it works fine, but not from the listview checkbox oncheckedchanged event context is defined Container { ListView { id: listid dataModel: _model …
Neha
  • 1
  • 1
1 2 3
92
93