Have now fetched the head/master revision (from the http://qt.gitorious.org/qt-mobility/qt-mobility/trees/HEAD though).
It configures and compiles fine (have only tried with "-modules multimedia", but all seems to be fine.) Until I want to run the camera example that is. ;-) In the emulator (in Carbide), it boots, and load, and then panics. On the device it still reports 'Component QtMobility missing. Continue anyway?'. I have done the 'make sis' step, and have installed QtMobility.sis file on the device. And if I try to reinstall it, it says it is already installed. My best guess would be that QtMobility uses another ID to install itself than the id the other packages look for. But when I investigate the pkg files it seems to be the same Id all over (0x2002AC89). If I continue and install it, the camera example panics on startup and never gets started. So it seemed better, but I must still be missing something. Trying to install qtmultimediakit_ecamengine.sis (or a signed sisx), once again gives me a warning about QtMobility not installed, and during install I get an update error. Looking at the src\s60installs\QtMobility_template.pkg, it seems like the ecamengine should be included automatically. But clearly I'm missing something. Any good ideas out there? /Anders From: Luoma Antti [mailto:[email protected]] Sent: 20. september 2010 12:59 To: Anders Kjærgaard Hansen; [email protected] Subject: RE: [Qt-mobility-feedback] Do there exist a prebuilt sis file for QtMobility 1.1 TP? Hi, Just realized that symbian Camera backend wasn't available in qtmobility 1.1 TP. So I am not amazed that id doesn't work :-). Backend is located in plugins\multimedia\symbian\ecam For camera to work you will need newer code. You have to get it from gitorious via git and compile that again. This isn't released just yet so there might be some bugs still, but if there are bugs, please report those also. Magic command for getting the code.. "git clone git://gitorious.org/qt-mobility/qt-mobility.git" -antti ________________________________ From: [email protected] [mailto:[email protected]] On Behalf Of Anders Kjærgaard Hansen Sent: Friday, September 17, 2010 3:56 PM To: Anders Kjærgaard Hansen; [email protected] Subject: Re: [Qt-mobility-feedback] Do there exist a prebuilt sis file for QtMobility 1.1 TP? The rest of the mail follows here - damn keyboard shortcuts... Hi all Now the week are about to end, and I'm still struggling getting QtMobility 1.1 TP running on my device. So my question now is... Can anyone in the community send me a working sis file able to install QtMobility 1.1 TP on a device? Below is a resume of where I am standing now. To sum up, my situation is this: 1. I have successfully installed Qt 4.7 RC, and QtMobility 1.1 TP on my machine. QtMobility configured to only use Multimedia module. 2. I can compile the Camera Sample, and I can build my own small samples using Multimedia module, and including Camera. 3. I can create sis files that run on phone (when not instantiating a Camera object) a. This sample compiles, and installs (With warning that QtMobility is not installed - even though it is) and runs on my device: #include "JustHello.h" #include <qmessagebox.h> #include <qcamera.h> JustHello::JustHello(QWidget *parent) : QMainWindow(parent) { ui.setupUi(this); QMessageBox::information(this, "JustHello", "App started"); // camera = new QCamera(); } b. This sample compiles, installs (with warning that QtMobility is not installed - even though it is), but panics at startup. #include "JustHello.h" #include <qmessagebox.h> #include <qcamera.h> JustHello::JustHello(QWidget *parent) : QMainWindow(parent) { ui.setupUi(this); QMessageBox::information(this, "JustHello", "App started"); camera = new QCamera(); } My QtMobility.sis file installs, but subsequently installs of applications with QtMobility 1.1 as prerequisite reports that QtMobility is not installed. I really hope somebody can take 10 seconds of their time to send me their sis file.. ;-) Have a nice weekend /Anders
_______________________________________________ Qt-mobility-feedback mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-mobility-feedback
