[solved]app installer version in symbian
Mobile and Embedded
2
Posts
1
Posters
1.7k
Views
1
Watching
-
wrote on 23 Mar 2012, 01:56 last edited by
I have packaged my app with smart installer. Then I get a xxx_installer.sis
In my app, I use
@app->setApplicationVersion("1.5");@
in my main.cpp file.However, when I install it in my Nokia N8. It still shows version 1.0. Where should I change to let it shows version 1.5 when I installed it in my phone?
Thank you.
[edit: fixed typo in title, eddy]
-
wrote on 24 Mar 2012, 05:51 last edited by
Here is the answer.
http://www.developer.nokia.com/Community/Discussion/showthread.php?214644-Specifying-version-number-in-Qt-Creator.add this in you app.pro file
see the last line
@symbian {
TARGET.CAPABILITY += NetworkServicesmy_deployment.pkg_prerules += vendorinfo DEPLOYMENT += my_deployment DEPLOYMENT.display_name += myapp vendorinfo += "%{\"mycompany\"}" ":\"mycompany\"" VERSION = 1.5.0
}@
1/2