First, I have been told by Ovi QA that I need to package the app with the latest Qt Smart Installer. How do I export the .sis package into the Qt SDK to add the smart installer?
Add following line in your package file.
Code:
@"smartinstaller.sis",(0x2002CCCD)
if "smartinstaller.sis" is not in your current directory then use full path with sis file name.
Secondly, how do I declare Qt dependencies in the package file in the format:
(0x2001E61C), 4, 6, 3, {"Qt"}
(0x2002AC89), 1, 0, 2, {"QtMobility"}
or
(0x2001E61C), 4, 7, 3, {"Qt"}
(0x2002AC89), 1, 1, 3, {"QtMobility"}
Its purely depends on which SDK for Qt and Qt mobility you are using in your application. If you are building your application with Qt 4.7.3 and Qt Mobility 1.1.3 then use
Code:
(0x2001E61C), 4, 7, 3, {"Qt"}
(0x2002AC89), 1, 1, 3, {"QtMobility"}