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

glDeleteBuffers crashes during destructor call

Hi I am using VBO to load image texture and then draw it in C++. VBO id generate and bind and draw occurs here void ViewManager::render(){ glClear(GL_COLOR_BUFFER_BIT |…
Tahlil
  • 2,680
  • 6
  • 43
  • 84
2
votes
1 answer

BB10 Cascades touch events

I am developing a BB10 Cascades native application. I am using some containers as buttons as I need a custom look. I am therefore using the onTouch event to handle 'presses'. What I would like to do is play a tone when the 'button' is pressed and…
tech74
  • 1,609
  • 1
  • 20
  • 39
2
votes
5 answers

How open sub window with three buttons on clicked list item like shown in screenshot with red square

I have to open a sub window on clicked list item. This window contain three buttons these are also clickable. See Screenshot. In iphone it is possible using TableRow. Is there way in android like iphone or any different way
hharry
  • 422
  • 1
  • 9
  • 21
2
votes
0 answers

Android to BB10 Porting Phone Gap Application (Same Origin Policy Issue)

I'm trying to port phonegap Android app to bb10, The issue is android web-view doesn't follow Same Origin Policy so app works fine on Android. But seems BB10 web view follows Same Origin Policy. so application doesn't work properly in BB10 devices.…
Yasitha Waduge
  • 13,180
  • 5
  • 35
  • 42
2
votes
3 answers

Design UI on QML or C++, BB10

I need to write a BB-10 app. The app might have quite involved UI, with dynamic pages etc. I am thinking to write the application logic (data models, etc.) in C++. Should I use QML for UI design? How well and flexible is integration between C++ and…
user2054339
  • 393
  • 1
  • 6
  • 20
2
votes
2 answers

ListView isn't using custom ListItemComponent

I'm trying to use a custom ListItemComponent in my cascades however it is ignoring it. Instead of drawing my Label, coloring it cyan and putting ListItemData.text in, it fills my list with ListItemData.description (my json has text, description,…
Bojan Kogoj
  • 5,321
  • 3
  • 35
  • 57
2
votes
1 answer

SimCardInfo issue on Blackberry10

I'd like to display/get a read on IMSI (tested it on Dev Alpha B). The issue is that I could get a read on others property of SimCardInfo such as Mobile Network Code, Mobile Country Code, Serial Number but IMSI (subscriberIdentifier). Here is the…
KuroBerry
  • 21
  • 1
2
votes
0 answers

problems with QVariantMap("No source available for "QBasicAtomicInt_fetchAndAddOrdered()")

I am getting this error (colored in red): "No source available for "QBasicAtomicInt_fetchAndAddOrdered() at 0xba49e3f0" - when I try to execute following line in debug mode: item.mediaUrl = results.value("itemMediaUrl").toString(); where results…
user2054339
  • 393
  • 1
  • 6
  • 20
2
votes
1 answer

Alternative for QNetworkAccessManager

I am drawing map in BB10. The map is divided into tiles. At start user gives a longitude, latitude and zoom level and the map is shown at that co-ordinate. I get a single tile by doing a http request with QNetworkAccessManager. At first 7x5 tiles…
Tahlil
  • 2,680
  • 6
  • 43
  • 84
2
votes
2 answers

Blackberry Browsable Error

I am having an issue when I port a application over to blackberry from android. The app is a webapp and it works on the androids just fine, but when I port it and deploy it on the playbook I am getting an error that says Action not supported Intent…
2
votes
3 answers

Can't deploy BAR file to BlackBerry 10 Dev Alpha Simulator

I'm trying to port my Android app to BB10 using the BB Android Runtime SDK. I've packaged the app OK and created a BAR file, but cannot get it installed on the BB 10 Dev Alpha simulator. I've tried both running the app from Eclipse using Run…
2
votes
2 answers

How to create blackberry version of an android project without forking?

Blackberry 10 now accept android but not google map. Basically we want to port our application to android and use different technique for google map but we don't want to fork the project. So we want all update on other area on the original project…
user4951
  • 32,206
  • 53
  • 172
  • 282
2
votes
2 answers

BlackBerry 10 - Invoking Browser

Are there any examples of invoking the BlackBerry 10 browser to open on an onclick event? I'm trying to do this with the native SDK using c++. Thanks
Mikerizzo
  • 587
  • 1
  • 4
  • 22
2
votes
1 answer

How to Attach Page or Navigation Pane in TabbedPane defined in different qml files?

I have defined a TabbedPane as below but one each tab, I would like to show content"questions.qml" (It's a Navigation Pane") and "stats.qml" file instead of embedding the code in single file. So I was wondering how I can achieve that? TabbedPane { …
itsaboutcode
  • 24,525
  • 45
  • 110
  • 156
2
votes
3 answers

PhoneGap 2.3 Blackberry10: "Origin local:// is not allowed by Access-Control-Allow-Origin"

I'm trying to run on Blackberry 10 an application which already works fine on Android&iOS. When I do a call to server I always get "Origin local:// is not allowed by Access-Control-Allow-Origin": why I'm facing a cross domain issue"? I never got any…