diff options
Diffstat (limited to 'doc/src/examples/quickstart.qdoc')
| -rw-r--r-- | doc/src/examples/quickstart.qdoc | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/doc/src/examples/quickstart.qdoc b/doc/src/examples/quickstart.qdoc index 7a050e9ebf..6b250c03aa 100644 --- a/doc/src/examples/quickstart.qdoc +++ b/doc/src/examples/quickstart.qdoc @@ -108,16 +108,30 @@ corresponding values that can be assigned to \c MOBILITY. \o \l {Qt Service Framework} {Service Framework} \o serviceframework \row + \o \l {Sensor API} + \o sensors +\row \o \l {System Information} \o systeminfo \row - \o \l {Future Additional APIs}{Versit} + \o \l {Versit API}{Versit} \o versit \endtable -When developing on Symbian we will also need to add the required capabilites to the project file in order to satisfy the Symbian security model: +When developing on Symbian we will also need to add the required capabilites to the project file in order to satisfy the Symbian security model. +This can be achieved with a line such as the following: + +\code + TARGET.CAPABILITIES = CAPABILITY_A CABAPILITY_B +\endcode + +CAPABILITY_A and CAPABILITY_B are place holders for the appropriate Symbian capabilities. A complete list of all Symbian +capabilities and their availability to application developers can be found in the +\l {http://developer.symbian.org/wiki/index.php/Capabilities_(Symbian_Signed)}{Symbian capability documentation}. -\snippet quickstart/quickstart.pro 1 +The subsequent table provides an overview of possibily required capabilities for each Mobility library. +Note that not all capabilities are always required when using a particular API. The exact list depends +on which parts of an API is utilized by an application. \table \header @@ -128,7 +142,7 @@ When developing on Symbian we will also need to add the required capabilites to \o ReadUserData NetworkServices (NetworkControl for QNetworkSession::stop()) \row \o \l {Contacts} - \o ReadUserData WriteUserData SwEvent ReadDeviceData WriteDeviceData + \o ReadUserData WriteUserData \row \o \l {Location} \o Location @@ -140,14 +154,19 @@ When developing on Symbian we will also need to add the required capabilites to \o LocalServices ReadUserData WriteUserData NetworkServices UserEnvironment ReadDeviceData WriteDeviceData \row \o \l {Publish And Subscribe} - \o ReadDeviceData WriteDeviceData + \o Capability depends on P&S value being read/written. API itself doesn't require any capability. \row \o \l {Qt Service Framework} {Service Framework} \o No capabilities requried by itself, the plugins may have capability requirements. \row + \o \l {Sensor API} + \o ReadDeviceData +\row \o \l {System Information} - \o LocalServices ReadUserData WriteUserData NetworkServices UserEnvironment Location TrustedUI ReadDeviceData + \o LocalServices ReadUserData WriteUserData NetworkServices UserEnvironment Location ReadDeviceData \row + \o \l {Versit API} + \o No additional capabilities required. \endtable The complete list of all Symbian capabilities and how they can be obtained can be found in the \l {http://developer.symbian.org/wiki/index.php/Capabilities_(Symbian_Signed)#Which_capabilities_can_I_access.3F}{Symbian developer documentation}. |
