App does not run when installed on E: drive
-
Hi,
I'm developing Qt/QML/QtMobility app using Nokia Qt SDK 1.1 tech preview, targeting Symbian^3. The app runs well if I install it on the C: drive of my phone. However, if I install it on the E: drive, it shows the app main view for about a second, but then it fails to run, and I get a white screen.
Is this a known problem?
Thanks!
-
How are you deploying the QML files? It can be one of the possible reasons for this behavior.
-
Thanks for the answer. I didn't change anything from the default configuration with regards to deployment of QML files. I deploy some of my data files on the E: drive though, I added the following code to the .pro file:
myFiles.sources = media*
myFiles.path = e:\data\images
DEPLOYMENT +=myFilesBut that's all about my changes on deployment ...
Thanks!
-
in the Projects mode, have you configured the deployment folder to be E: ?
-
I do not deploy automatically, I removed it from the Run steps. I create the .sis file and then I transfer the file via USB or Bluetooth (reason for this is that silent deployment fails in my environment).
Is there anything I should modify in the .pro file if I'm going to install the app in the E: drive?
Thanks