Build the project fails on QNX momentics IDE

Software: Native SDK 2.0 beta3 QNX momentics IDE

Problem: after press build project, no file bar.

Have tried these methods:
a.Restart pc and playbook on failure
b on blackberry desktop software fail
invalid c.Check os version
d.REINSTALL blackberry sdk native-beta3 fail

Does anyone know how to solve the problem?

Thank you for your attention.

Generation of a project does not generate a BAR file.

Launch (run or debug) an application generates a BAR file development mode.

Export Release Build Wizard generates an output mode BAR file.

HTH,

Christian

Tags: BlackBerry Developers

Similar Questions

  • Need help to add the libcurl library in QNX momentics IDE

    Hello

    I am new to the native SDK development for Tablet OS, I'm working on an application that were a part of the user interface, we need to manage the HTTP connections and also need to run in the background.

    I tried, but was unable to download the library libcurl to handle HTTP connections. Can someone give me the link to download the file to library for QNX momentics IDE and a source code example of the use of this library for manipulation of HTTP requests analysis JSON ?

    Also, I need to find a way to run my application in the background. So I'm looking for something to do.

    Thanks in advance .

    libcurl is integrated in the NDK. Simply import the headers in the file "curl" such as . Be sure to refer to the library (curl) in your project.

  • If register with RIM signing do not work correctly in QNX Momentics IDE®

    Hello

    I reveiced files of the SJC. ® For QNX Momentics IDE, I open the preferences-> BlackBerry Tablet OS-> signature - > save.

    I complete the form with the SJC, pine files and passwords. When I submit the form, everything is ok and I receive an email to confirm that I am registered.

    But the problem is when I restart QNX Momentics IDE®, BlackBerry Tablet OS->-> RIM signing authority signature it says "saved: No.

    If I try to record again, QNX Momentics IDE® say that I'me is already registered, and I need to contact RIM to add another user (I don't want to add another user).

    Someone had the same problem? How to fix this?

    Best regards

    System Specs:

    Windows 7 32 bit under parallels on Mac OS x 10.6.8 6.0.12090

    ® For QNX Momentics IDE for BlackBerry® native SDK for Tablet OS Version: 1.0.0 Build id: 201110112127

    There is a bug in NDK 1.0 with localized Windows versions and the signature. This bug has been fixed in NDK 2.0, which should be published very soon. You can also use the beta version 3 If you can't wait for the release of the NDK 2.0 GA.

    Unfortunately, you will need to ask new SJC files and resave.

  • SSL handshake failed in the BB10 QNX Momentics IDE

    I am trying to connect to a web service that uses the SSL protocol. I work with Blackberry 10 in C++ with the QNX Momentics IDE of. The connection that I am doing is this:

    URL: 'https://movilapi...'.

    Code:

    networkAccessManager = new QNetworkAccessManager(this);
        bool res = connect(networkAccessManager, SIGNAL(finished(QNetworkReply*)),
                this, SLOT(requestFinished(QNetworkReply*)));
    
        Q_ASSERT(res);
        Q_UNUSED(res);
    
        QNetworkRequest request = QNetworkRequest(QUrl(url));
        request.setRawHeader("User-Agent", "bb-phone/20120910");
        request.setRawHeader("Content-Type", "application/json");
        request.setRawHeader("Content-Length", postDataSize);
    
        QSslConfiguration sslConfig = request.sslConfiguration();
        sslConfig.setPeerVerifyMode(QSslSocket::VerifyNone);
        sslConfig.setProtocol(QSsl::TlsV1);
        request.setSslConfiguration(sslConfig);
    
            networkAccessManager->post(request, outData);
    

    I still get the same error, regardless of the service which I try to reach. The answer is: SSL handshake failed

    Please help, I have searched for hours without success. Thank you.

    After getting in contact with the RIM a little personal on this issue, we discovered that the TLS/SSL server does not tolerate some extensions, so with the following code of Qt to turn off extensions, the connection was properly made over https:

    QSslConfiguration cfg(request.sslConfiguration());
    cfg.setSslOption(QSsl::SslOptionDisableSessionTickets, true);
    request.setSslConfiguration(cfg);
    

    I want to make special mention of the Department development of applications of Research In Motion for the attention and effort invested on this issue until we finally got the right way to go.

    Here is the code to connect to the case wherever everyone faces this need:

    networkAccessManager = new QNetworkAccessManager(this);
    bool res = connect(networkAccessManager, SIGNAL(finished(QNetworkReply*)),
                this, SLOT(requestFinished(QNetworkReply*)));
    QNetworkRequest request = QNetworkRequest(QUrl(url));
    request.setRawHeader("User-Agent", "BB_PHONE/20120926");
    request.setRawHeader("Content-Type", "application/json");
    request.setRawHeader("Content-Length", postDataSize);
    
    QSslConfiguration sslConfig = request.sslConfiguration();
    sslConfig.setPeerVerifyMode(QSslSocket::VerifyNone);
    sslConfig.setPeerVerifyDepth(1);
    sslConfig.setProtocol(QSsl::TlsV1);
    sslConfig.setSslOption(QSsl::SslOptionDisableSessionTickets, true);
    
    request.setSslConfiguration(sslConfig);
    networkAccessManager->post(request, outData);
    
  • QNX Momentics IDE connection to the server at startup?

    Whenever I run my QNX Momentics IDE it try to connect to a server on port 4455. Anyone know what it is? It doesn't seem to be only a COMPLETE domain name attached to the IP address that is what worries me.

    Native development kit, reaching out to the targets of BlackBerry (PlayBook, Dev Alpha or Simulator), you have set up to see if they are available.

  • Pretty print Qt containers when debugging QNX Momentics IDE

    Hi all

    I wonder if anyone knows how to display the containers in a human readable way under debugging Qt?

    So, IE if I str ("hello") QString under debug I want to see 'Hello' as the value of str instead of lots of pointers

    Thank you

    Philippe

    Yes, you can have the debugger QNX Momentics IDE show the string in the window of variables properly.

    Directions for use:

    Window-> Preferences-> C / C++-> debug-> GDB and make sure that "pretty printing" is enabled

    Make a file called .gdbinit in the folder root of your project and put this:

    Python
    import sys
    sys. Path.Insert (0, '.')
    of qt4 import register_qt4_printers
    register_qt4_printers (no)
    end

    Then copy the qt4.py file from: https://projects.kde.org/projects/extragear/kdevelop/kdevelop/repository/revisions/master/changes/de...

    Place this file in the same working directory (the directory of the project).  Or you can put somewhere else and replace the "." in "sys.path.insert (0, '.').  with the folder that contains the qt4.py

    Next time you run the debugger, it should show the QString.

    If you have any problems (it does not), you can see the gdb trace console and the gdb console (try: source .gdbinit) to see the errors.

    I still have to do with the dinkum STL.   I just started...  PM me if you want that the instructions once I'm done...

    p.s. Thanks to the kdevelop team who made this python module.

    Edit: removed game print pretty line in .gdbinit.  correctly implemented by the ide from qnx.

  • Clean install QNX Momentics IDE but no. SDK can be found.

    I unstall the old version, delete the folder and install the QNX Momentics IDE in the default directory;

    When I try to create a workspce, it appears without SDK is located. Install a software development kit to enable the QNX Momentics features.

    Anyone has the same problem?

    Found the problem

    in the windows--> the Blackberry SDK native short cut tap

    C:\bbndk\ide\win32\x86\eclipse\qde.exe

    To take

    C:\bbndk\bbndk.bat (bbndk_admin.bat)

    Then the problem is resolved.

  • QNX Momentics IDE design mode

    Hi people - I just started development in QNX Momentics IDE and I, no matter what I try, doesn't happen in "design" mode  It is disabled, even when training following the exact steps in the video tutorials on web Blackberry based on. Are there cases where the IDE would be denied the opportunity to 'design' when you view a QML file?

    Check the settings of the editor on BlackBerry/QML, uncheck the box "disable", re - open a qml file. It must run the compatibility check.

  • How to build the project with library error in adf adf

    Hello

    IM using jdev 11.1.2.3

    in my project I module 2 so we need to build the project with adf dependency libraries...

    Two copies of the way to build the project with trial and error in adf adf

    Timo

  • "Value is invalid or out of range" when you build the project in CVI 2009

    I converted a project to the wire of the CVI 9.0.1 to CVI 2009, and whenever I try to compile the distribution I get immediately the error message "Value is invalid or out of range" and stop the construction.  This error message is not too terribly useful to determine what the problem is, and I don't see anything obviously wrong with the signs of 'change the Installer '.  Any idea what's going on?  Thank you.

    Well, I'm a little confused by what I see. The newspaper confirms my suspicions earlier that one of the values of timer progress cached version is cause of an error. However, the values in the file "TriboScan OFFLINE.cds" you posted appear very well and do not cause an error when I copy in .cds another simple distribution (since I do not have the files to test your actual building distribution). Are you sure that you build the 'TriboScan OFFLINE.cds' distribution? In any case, I recommend a little offending the .cds hand editing. Save first (just in case), open it in a text editor and delete everything between and (that should be all down). This should solve your problem.

    Let me know what you find.

    A. Mert

    National Instruments

  • Display of newspapers without QNX Momentics IDE

    Hello world!

    I switched to QT Creator for faster compilation & deployment.

    Everything works including fines of debugging, but it displays no newspapers (qDebug etc.).

    I know that newspapers should be directed to stdout/stderr if they should be displayed in the console of QNX Momentics.

    This is done using qInstallMsgHandler and it works. But it does not work in QT Creator.

    So the question is:

    How QNX Momentics intercepts not newspapers once they are redirected to stderr/stdout?

    I was able to view the logs via SSH using the following method. He works for slogger2, but I don't know how to access the output stdout/stderr:

    (1) start blackberry connect

    / Applications/bbndk/host_10_0_9_52/darwin / x 86/usr/bin/blackberry-connect 192.168.157.128 - password devicePass - sshPublicKey «/Users/User/.config/QtProject/qtcreator/qnx/BlackBerry Simulator/id_rsa.pub»

    (2) ssh [email protected] "/Users/User/.config/QtProject/qtcreator/qnx/BlackBerry Simulator/id_rsa.

    (3) slog2info w | grep qt - msg

    All suggestions are welcome!

    He can't not stunts.

    I followed this guide:

    http://Qt-project.org/wiki/Qt-creator-with-BlackBerry-10

    Automatic completion did not work initially. I don't know why, maybe the roads were too long?

    As a solution, I created a symbolic link in the my project folder:

    include->/Applications/bbndk/target_10_0_9_386/qnx6/usr/include

    Then I added the following lines to the .pro file:

    INCLUDEPATH += include include/qt4/QtCore
    LIBS += -lbbcascades
    

    In addition, newspapers started working after restart.

    Everything works now.

    p.s. I use Mac OS X Lion.

  • Cannot build the project to burn. Error message

    Hi guys

    New to CS4. Used the first several years ago, went through to Final Cut Pro and just moved backe to Adobe CS4.

    The problem I have is that I did the project in again and all the links are fine, but when I click on the build, after 5 seconds of her building, I get the error message "the SOFTWARE INTERNAL ERROR:.\Vobulator\TitlePlanner\CVOBUPlanner.cpp,line 332.

    Does anyone know how to fix this?

    I appreciate any suggestions.

    If you search the forum by using the keyword "vobulator", you will get some

    ideas on how to solve this problem.  I hope that one of them will work for you.

    -Jeff

  • Weird thing when I build the project

    Hey guys, I got straight... everthing well served, in the output, the first piece, the end, links.

    When I build my movie and open the ISO file of with a Blu - Ray player (so I'm not wasting a disc, and I check everything first) my main movie starts.

    There are no menus, no intro, no buttons, nothing. Just the full movie.

    Also, when I preview the project again, I see that everything is perfect. The first piece, transitions, the menu and the buttons.

    What this may be?

    The most likely problem is that the reading software does not play the bluray correctly. Which player do you use?

    Also use a BD - RE for testing.

  • Printing on console in QNX Momentics IDE?

    How can I actually go about printing to the console of one of my cpp files?  All I'm doing is printing data, so that I know what I'm working with and then proceed accordingly.

    When working on Android apps in Eclipse, all I had to do was type System.out.println (); and fill it with any object or variable and it would spit out.  I can't find something similar here.

    Thanks in advance!

    qDebug() and similar forms of output should go to the output of "slog2" for the application, which wrote a special area of RAM disk file wherever it is controllable Momentics using some feature view log (you'll have to google or search the Forum... I don't use it) or by connecting to the device with SSH and using 'slog2info w' or a similar form of this command.

    An output is not redirected it should end by in the output/log logs file, which is written in the actual flash file system and thus a target less desirable slog2 and you can also view that via the IDE or via SSH, in this case using the 'cat', or even 'tail-f newspaper/Journal"only after changing the directory current for sandbox of your app folder.

  • Impossible to build the project on a Linux (task CAP)

    Hello

    I want to run my script compilation (with tag Cap ant script) on a linux machine. I have included the file tools.jar - ant - bb in the classpath, but there are also the JDE installation directory.

    Help me please if someone knows how to solve this problem. I cannot use the machine windows for my building project, is it possible to copy JDE dir from windows machine to linux for running the script?

    Kind regards

    Pulkit

    Finally solved the problem...

    Cap running under linux is pretty easy. We need rapc.jar and net_rim_api.jar in the bin and lib folders respectively alongwith correct path for Java, ANT & WTK (FNIHB predetermination).

Maybe you are looking for

  • With the help of StatBlockCalc on channels separated

    I use StatBlockCalc on several channels to give me a new channel of all the minima of each channel in my DataSet. The call looks like this Sun Dat "Dat is used to set the list of channels when you don't know the number of groups Dat = "" [1] / CH1_mi

  • Elantech touchpad not recognized by Windows 10

    After the upgrade to windows 10 I los my touchpad in Aspire ES1-411-C610 Elantech. Can't install the latest driver from Acer.

  • I lost my drive, but have the key and book can get a replacement instead of having to shell out for a new?

    The disc was recorded for me and I have the book the product key doesn't just no disc. What do I have to pay for a new? Of course, my lap top is not working now.

  • "New folder" button disappeared

    I used to have a button "New folder" to the same extent as him "organize", "Views" and "burn". He disappeared this week (maybe after I made some software update?) and I need this back. Can anyone help? A related issue (assuming that the 1st question

  • Batch file question

    How would you on the use of the command prompt to create a text file, fill in the data of your command prompt into the text file and save this information to a user's desktop is currently connected? I find that in my business, I am often required to