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.

Tags: BlackBerry Developers

Similar Questions

  • 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.

  • 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.

  • 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

  • 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.

  • 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 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.

  • 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.

  • I did a clean install of firefox 31 and now I can't get on any web site of Ustream, it works on IE and Chrome

    I did a clean install of firefox 31 and now I can't get on any web site of Ustream, it works on IE and Chrome.
    I tried all the advice I could find on the help section, but nothing works. I reinstalled everything is new so it's all of this to date, but not a single site Ustream.tv will load. I can put them on IE and chrome.

    The question may be because of your corrupt cookie (cookies.sqlite) file

    Rename (or delete) cookies.sqlite (cookies.sqlite.old) and delete the other files of cookie present as cookies.sqlite - journal in the Firefox profile folder where the cookies.sqlite file has been corrupted.

    You can also check whether DOM Storage is enabled.

    ______________________________________________________________________________

    Create a new profile as a test to see if your profile is the source of the problems.

    See creating a profile:

    If the new profile works then you can transfer files from a profile already used in the new profile, but be careful not to copy files corrupted to avoid transporting on the problem

    Profile backup and restore

  • I can't use PS & LR full version, so I uninstall the 'old' and install them again. But I just can't. How can I install them again in version complete?

    I can't use PS & LR full version, so I uninstall the 'old' and install them again. But I just can't. How can I install them again in version complete?

    Please check the help below document:

    Does not open App | Wheels of progress turn continuously

  • Hi, I went to muse theme and browse widgets to find the box 024 of the google translator Toolkit, I saw the video explaining how manage widgets but now where can I found it to include in my site, because the french version of muse gift

    Hi, I went to muse theme and browse widgets to find the box 024 of the google translator Toolkit, I saw the video explaining how to manage widgets but now, where can I found it to include in my site because the french version of muse have several widgets free for people like me who pay every month the application. Thank you

    I'm not aware of a free translator widget.

    I found these...

    Web site translator

    Translator widget $6.99 for the widget

    Adobe Muse TB024 Widget | MuseThemes.com $69 / year includes everything. I signed up for this and it is worth, they of new themes & widgets every month.

  • Pro Clean install XP with SP3 but the registry indicates SP4?

    I did a clean install with the i386 out of my original image. It came with SP3 integrated. Trying to install the drivers, I noticed registry service pack back to SP4 not SP3, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\Windows XP\SP4. I have not found any performance issues, but is that what I should be concerned with, and if so, how could remedy?

    XP Pro 2002 SP3 system property lists
    System Thinkpap T400

    Some updates are classified as post-SP4. There is nothing to worry. MS - MVP - Elephant Boy computers - don't panic!

  • I decided to do a clean install of windows 7, but when the disc it stops to extend windows files 0% I do not know why this happens is the drive.

    Original title: Windows 64-bit clean

    Ive recently done my 2nd attempt to install windows 7 64 bit and ive met the same problem, I have formatted and deleted all the data ln my drive hard amd decided to do a clean install of windows, but when the disc it stops expanding windows files 0% I don't know why this is happening is the disc

    You have all the features non-essential connected to the computer during installation? If you have external storage media connected, disconnect them.

    It is also possible to reinstall your Windows 7 media is corrupt. You can try to download a new copy and try again.

    How to: What are my options for Windows 7 reinstall media?

  • 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.

  • Trying to do a clean install of Vista 64 but only gives the repair installation option

    I think I got a virus and it got to the point that I can not go on my computer safe mode. I got my drive and put it in. Unfortunately he gave me the opportunity to do a repair install (which wouldn't help because the virus would still be on the computer) or reinstall windows, but if I did, he said he would keep my old files in a special folder, thus keeping the virus. I canceled the installation and restarted my computer to look over all the other options, but now it just goes to something automatic repair windows instead of the thing to install vista. Any help? I can post other info if necessary.

    Hello Locust103,

    Your PC is only blue screening after entering the windows environment, this Safe Mode or in Normal Mode. Reinstall works, initially, in the windows environment. In many cases, blue screens are attributed to hardware problems.

    If you look at the article that the link in my original post is to scroll down to step 15 in article. In the screenshot, you'll see a checked option "Drive Options (Advanced)." When you install windows and go to this step, if you click the Options to drive another series of option is displayed. example of Format. If you click the format option that your disc/partition will be wiped, everything on this drive/partition will be deleted. Once the disk has been formatted, you can continue to install a completely fresh copy if Windows on your system.

    The Windows installation will normally restart your PC twice or three times before finishing the installation.

    This forum post is my own opinion and does not necessarily reflect the opinion or the opinion of Microsoft, its employees or other MVPS.

    John Barnett MVP: Windows XP Expert associated with: Windows Expert - consumer:www.winuser.co.uk | vistasupport.mvps.org | xphelpandsupport.mvps.org | www.silversurfer-Guide.com

Maybe you are looking for