Archived:Application and view IDs changed in S60 2nd Edition initial release (Known Issue)
Application and view IDs have changed between S60 platform editions |
KIS000262 | |
Overview |
S60 ROM applications have changed in S60 2nd Edition. Some of the documented IDs launch different views. The same functionalities require new IDs. | |
Reported against |
S60 2nd Edition and onwards, Nokia 6600 3.42.1, Nokia 6630 3.45.113 | |
Date identified |
July 7, 2005 | |
Symptoms |
- | |
Detailed description |
| |
How to reproduce |
The sample application MyView "start recording menu" freezes devices compatible with S60 2nd Edition. | |
Solution |
The following code starts the recorder and records immediately: // Recorder application UID const TUid KRecorderUid = { 0x100058CA }; // UID for recording view const TUid KRecorderViewUid = { 1 }; // MessageUid which start the recording const TUid KRecorderMessageUid = { 2 }; // In AppUi class implementation ActivateViewL(TVwsViewId(KRecorderUid, KRecorderViewUid), KRecorderMessageUid, KNullDesC8); The following code launches the Camera: // Camcorder application UID const TUid KCamcorderUid = { 0x101F857A }; // UID the camera view const TUid KcameraView = { 1 }; ActivateViewL(TVwsViewId(KCamcorderUid , KCameraView)); See also Fetching device model information. | |

