My (mostly technical) blog

Deploying Symbian Qt Applications on the phone

Posted by: sabbour on: April 7, 2010

As a reminder to myself, these are the steps to deploy an Qt application on the mobile phone.

  1. Project settings:
    1. Add new build configuration S60_5th_Edition_SDK_v1.0 (Qt 4.6.0) Release
    2. Change its Tool Chain to be WINSCW

    3. Add a new Run Setting (ProjectName in Symbian Emulator)
    4. Open the project file (TestLBSWS.pro) and add the following to enable network usage:
      symbian {
          TARGET.CAPABILITY = NetworkServices
      }
      
  2. Mobile deployment:
    1. Without smart installer (Qt 4.6.0)
      • Open command prompt
      • Navigate to project path
      • Run:
        qmake && make release-gcce
      • Then run:
        make sis
      • You now have your .sis file ready. Make sure qt in already installed on the device
    2. With smart installer (Qt 4.6.2+) steps
Advertisement

1 Response to "Deploying Symbian Qt Applications on the phone"

This is a great blog. Thanks for all your hard work and the info you give. I am hoping you post again soon.I wish u keep on.
Thank You
http://clementmasonsblog.blogspot.com/2010/11/symbian-software-support-and.html

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Ahmed Sabbour's Facebook profile

 

April 2010
S M T W T F S
« Feb   Jun »
 123
45678910
11121314151617
18192021222324
252627282930  

Tweets

RSS StackOverflow

  • Answer by sabbour for j2me: how to open application page via ovi store app February 22, 2012
    If the Nokia Store is installed, then opening the above URL in the browser will cause the Store client to open on the specified app.
  • Answer by sabbour for Horizontal listView inside Vertical Listview in qml February 22, 2012
    I tried this solution on the simulator and it worked. import QtQuick 1.1 import com.nokia.symbian 1.1 Page { id: mainPage anchors.fill: parent ListModel { id: colorsModel ListElement { colorCode: "red" } ListElement { colorCode: "green" } ListElement { colorCode: "blue" } ListElement { colorCode: "orange" } ListElement […]
  • Answer by sabbour for Push Notification for Nokia nid using c# February 20, 2012
    Please check the following project: https://projects.forum.nokia.com/dotnet_notifications_api It is a .NET wrapper for the Nokia Notifications API.
  • Answer by sabbour for Unable to compile Qt Symbian application that uses gSOAP September 13, 2010
    To finally make it work, I had to port gSOAP to use stdapis instead of libc. I removed one of the lines and used instead. You can find the ported stdsoap2.h file at http://pastebin.com/xnrDbfFa. I also discovered that Symbian does not load STL by default, so all my methods that were returning std::vector and std::string are now not compiling. Instead of opti […]
  • Unable to compile Qt Symbian application that uses gSOAP September 8, 2010
    I'm using gSOAP along with Qt for Symbian. Under the emulator, the application compiles fine, but when I change the target of the compiler to compile for the device, I get the following error. WARNING: Can't find following headers in System Include Path This gets included from the stdsoap2.h file as follows: #ifndef WITH_NOIO # ifndef WIN32 # ifnde […]

Recently bookmarked

Follow

Get every new post delivered to your Inbox.