Im developing a QT application which includes QTMobility and QContacts, QMessaging and QSystemInfo.
Following this documentation.
my .pro file has following capabilities
symbian::TARGET.CAPABILITY = LocalServices ReadUserData WriteUserData NetworkServices UserEnvironment ReadDeviceData WriteDeviceData Location
However while installing the sis file, I get the error "Requested application access not granted"
Am I missing some capabilities or are there too many of them
You have to sign you sis file with a valid certificate in order to install it. I assume that you use QT Creator IDE. It self-signs sis files by default. Self-signing can be used for the set of basic capabilities which include only:
If you really need your application to use
ReadDeviceData WriteDeviceData Location
you must sign your sis file with a developer certificate. This is how you can get your certificate. You have several options here:Hope this was helpful. Good luck!