Hi, I am using the latest Nokia Qt SDK.
I have tried to add the contacts, it's not getting added.. what is missing here?
  // Construct contact manager for default contact backend
    QContactManager* cm = new QContactManager("simulator");
  // QContactManager* cm = new QContactManager("memory"); // i tried this, its also not working
  ...
            
           
          
            
            I'm creating a Qt Symbian application and need to connect to internet. In some way I need to let the user choose a connection ONCE when the app starts or use the DEFAULT connection if that is enabled.
Before I just used qt_SetDefaultIap() to set the connection on start. It worked perfect but now I need to use QtMobility instead. I have ...
            
           
          
            
            I am trying to set up a development environment to play around with developing Qt apps for Symbian devices.  I have succesfully set up the environment and am able to create simple apps such as HelloWorld and get them to run on my device.  I would now like to try using the QtMobility package, but I am struggling to get it to work in QtCre...
            
           
          
            
            I'm using Nokia SDK. The updater tool is still using 1.0.1. How can I update to the new release?
I'm also using nokia smart installer, does it work with the 1.0.2 release?
...
            
           
          
            
            I had a problem while I'm compiling the existing example in Qt-mobility. It's a code example shows how to use messaging API in Qt for symbian. After run the program there was an error occured:
  Cannot open include file :
  'qtmessaging.h': no such file or
  directory
So what to do for use the qtmessaging library?
Thanks in advance.
...
            
           
          
            
            Hello!
I need to write an application, that detects roaming from one access point to another if I'm connected to WLAN. Unfortunately I couldn't find anything that detects roaming for me. All I could find are some explanations in the Bearer API. One sentence says:
  The second form of roaming is referred
  to as Forced Roaming. The sys...
            
           
          
            
            I use the following code to get GeoLocation for my app
QGeoPositionInfoSource *source = QGeoPositionInfoSource::createDefaultSource(this);
if (source) {
    source->setUpdateInterval(1000); // time in milliseconds
    source->setPreferredPositioningMethods(QGeoPositionInfoSource::AllPositioningMethods);
    connect(source, SIGNAL(positi...
            
           
          
            
            Hi!
Is it possible to show standard camera view (system camera view) using QtMobility on Symbian? I have Nokia N97. How can I show system camera view using QtMobility? Thanks in advance.
...
            
           
          
            
            I have downloaded Qt Mobility Open source project. I had a set of demo apps. And when built it and started the App, I got this error:
  Failed to start program. Path or
  permissions wrong?
Can someone tell me what this problem could be?
UPDATE:
The complete error is:
  Starting
  /Users/xxxxx/Qt/qt-mobility-opensource-src-1.0.2/...
            
           
          
            
            Is there someone who have installed Qt Mobility Beta II package in Mac? I could not do it and I am getting errors. I have attached the log.
I have raised a bug with Nokia. Attached the error log there. Please share your views.
...
            
           
          
            
            Hi,
I want to send the email from my QTSimulator. I am using the following code for send the email.
    QMessage msg;
    msg.setType(QMessage::Email);
    // Set recipient for our email message
    QString recipient("[email protected]");
    msg.setTo(QMessageAddress(QMessageAddress::Email, recipient));
    // Define message subject, ...