Tuesday, January 11, 2011

Packaging sis file for symbian in Qt

In my previous post, I described how symbian application can be developed from Ubuntu using Qt Creator and remote compiler.

But if you want to upload generated sis file to Ovi Store then you need to make some changes in Qt's project(.pro) file.

First you need supply UID supplied from Ovi store or Symbian signed like following.
TARGET.UID3 = 0x00000000 <- use your UID
Then you need to add vendor information like following
   vendorinfo = \
        "%{\"Kunal Parmar\"}" \
        ":\"Kunal Parmar\"" 
And last you can supply menu icon for your app like following,
ICON = image/app.svg 
with all information together it looks like following,
symbian {

    vendorinfo = \
        "%{\"Kunal Parmar\"}" \
        ":\"Kunal Parmar\""

    my_deployment.pkg_prerules += vendorinfo
    DEPLOYMENT += my_deployment

    TARGET.UID3 = 0x00000000
    ICON = image/app.svg
    LIBS += -lcone -leikcore -lavkon
}

No comments:

Post a Comment