Item #5 on the Guide to Publishing Qt Applications for Symbian to the Ovi Store is "5.) Platform Compatibility - Modify to control the set of platforms/devices your application supports. For more info, please refer to PKG file format and Platform and Device identification codes"
The "PKG file format" link is broken and I have not been able to find instructions on how to set this in Qt Creator.
I was able to add the Vendor Name, as specified in #3 and #4. The "Link for more instructions" worked perfectly. I'd like something that helpful for specifying that the app is only for the N8.
I tried appending the "Default HW\platform dependencies" line to the deployment pkg_prerules in the .pro file, but that did not work. Here is what I tried:
This resulted in the line being added to the .pkg, but not overwriting the default devices that we are not supporting.Code:customrules.pkg_prerules = \ "; Localised Vendor name" \ "%{\"Digital Dandelion, Inc.\"}" \ " " \ "; Unique Vendor name" \ ":\"Digital Dandelion, Inc.\"" \ " " \ "; Default HW/platform dependencies" \ "[0x20029A73],0,0,0,{\"0x20029A73\"}" DEPLOYMENT += customrules
Any help would be great appreciated!



