Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct

    [solved]app installer version in symbian

    Mobile and Embedded
    1
    2
    1551
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • O
      owenzhao 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]

      1 Reply Last reply Reply Quote 0
      • O
        owenzhao 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 += NetworkServices

        my_deployment.pkg_prerules += vendorinfo
        
        DEPLOYMENT += my_deployment
        
        DEPLOYMENT.display_name += myapp
        
        vendorinfo += "%{\"mycompany\"}" ":\"mycompany\""
        
        VERSION = 1.5.0
        

        }@

        1 Reply Last reply Reply Quote 0
        • First post
          Last post