Sometimes while testing an application, you will find that the application didn't show up in the emulator. Symbian OS uses a UID to uniquely identify applications. Hence failure to update UID causes such kind of problems.
1. Update the generic project file .mmp. It is the last number on the UID line.
2. Update CApaApplication::AppDllUid() to return the same value.
3. Edit the resource file. Change the four letter token on the line with the NAME resource.
4. Now you'll need to update the IDE project file to reflex the changes we made to the .mmp file. With CodeWarrior, one simply imports the mmp file again.
5. Rebuild and you're ready to go.
For changing the version of your application you need to modify the SIS file header in your package file, the default entries in the package files are shown below.
#{"YourAppName"},(0xAPPUID),0,0,1
The the first 0 denotes the major version number, the second 0 denotes minor version number and the 1 denotes the build number, you can specify your own major,minor and build number.
No related wiki articles found