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 UIDThen 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.svgwith 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