I didn't have to worry about that my only conflict is with the localization file which I need to reedit for the application name each time I change project.
Type: Posts; User: dlorre; Keyword(s):
I didn't have to worry about that my only conflict is with the localization file which I need to reedit for the application name each time I change project.
There is a much simpler method: copy your .pro file in the same directory and change it according to your needs. The main.cpp can be the same with conditional define or another file with a different...
I have no experience with QMediaPlayer but a quick look at the doc makes me think that if it is available, then it should be in the metadata:...
No, I have started looking but there is only mobility.prf.template in the Symbian1Qt473/features folder. I didn't find the mobility.prf so I gave up.
There are no qt-components as well. They must...
FYI, I have installed the SDK 1.2.1 released today but I got the same error when using Symbian for S60 5th edition (aka Symbian^1). Unfortunately the bug report has been closed so I cant mention the...
Ah thanks, I'll definitely update it then because i'm on Symbian^1/Qt 4.7.3. I have looked at the files and it appears to be easy to change except that there are two files: mobility.prf and...
Thanks, your fix seems to be for Qt Quick, but my issue was for Qt Mobility with ID 0x2002AC89, I understand the principle anyway.
I thought I could not install SDK 1.2 if I was compiling for...
Make a class MyPixmap which inherits QPixmap then:
MyPixmap::MyPixmap(QString t, int w, int h) : QPixmap(w, h)
{
QPainter p ;
this->fill(Qt::transparent);
Thanks, I have reported it here: https://bugreports.qt-project.org/browse/QTMOBILITY-2039
Yes I was about to edit the perl file, but it's been a while that I haven't coded anything in Perl!
I...
Well, I have reinstalled Qt SDK 1.1.2 from scratch, patched it and the project still does not compile. I am wondering what is special about your installation that let you build the sis file.
make...
You seem to have 2 questions here, for the clicks you need to follow a tutorial on signals and slots. For the swipe it's another story.
Ok thanks, I'm definitely doing this, I just hope there won't be any models left on the side of the road^^.
I haven't touched it as I was busy on WP7. But if you can compile and run the downloaded project and I cannot then I need to reinstall Qt Creator and Qt SDK.
Hello, I want to reinstall Qt SDK and Qt Creator because of an issue with QtMobility that I explained here:
...
Hello, sorry I was busy with the WP7 version of my App. If you can compile and run this project then I must have an installation issue.
Reported: https://bugreports.qt-project.org/browse/QTMOBILITY-2039
I have sent the code of the project to the developer support. Will keep you updated.
Are you sure you have installed the localisation files? I don't see the language lines in your pkg.
I get an error while making the SIS file, does it run successfully on your device? Also I notice...
OK I removed the lines you mentioned but the problem remains.
symbian {
CONFIG += localize_deployment
languages="&EN,FR"
DEPLOYMENT.installer_header=0x2002CCCF
...
Yes I can explain more.
Make a simple Qt project and add two languages to it. use this pro file:
symbian {
CONFIG += localize_deployment
languages="&EN,FR"
...
Hello,
I am trying to add QtMobility to my project but I have a strange compilation error when I do so.
After a lot of research i found that it comes from the languages definitions in the pro...
Thank you, I will look into that.
Thanks I was almost there, but that part was missing XD!
To sum up what I did:
-------------------------------------
DEFINES += LITE_VERSION
DEPLOYMENTFOLDERS =
symbian {
CONFIG +=...
You need to install libc devel packages for your flavor of Linux and try your luck at compiling sbs like indicated here:
--
It may be possible to build and install the utilities for your platform...
Ah, thanks. I was also looking into that when I wanted to implement energy saving for my app and make it exit when the screen is locked, but haven't been successful at it.