Ok. So I want to publish my symbian app to the ovi store, but as far as i can tell, i need to add a couple of things to my .pro file first...
This is what it says currently:
Of course, this doesn't compile. If i remove everything from packageheader and down, it compiles, but I have a sneaky feeling i need at least vendor-info, UID and version number in there somewhere... Little help? The diffrent tutorials I could find didn't really make sense to me...Code:#------------------------------------------------- # # Project created by QtCreator 2011-01-09T06:49:06 # #------------------------------------------------- QT += core gui xml network CONFIG += mobility MOBILITY += bearer TARGET = EpisodeNext TEMPLATE = app ICON = icon.svg SOURCES += ...lots of sources here HEADERS += ...lots of headers here FORMS += ...lots of forms here... symbian { TARGET.CAPABILITY += NetworkServices TARGET.EPOCSTACKSIZE = 0x14000 TARGET.EPOCHEAPSIZE = 0x020000 0x800000 packageheader = "$${LITERAL_HASH}{\"Episode Next \"}, (0x20myUid), 1, 0, TYPE=SA" vendorinfo = \ "%{\"H2Programming\"}" \ ":\"H2Programming\"" my_deployment.pkg_prerules = packageheader vendorinfo DEPLOYMENT += my_deployment }




