The application does not launch, error message "System error" is displayed.
In what cases do this errors occur.
Iam building symbian , c++ apps for s60 3rd ,5th and symbian 3 devices.
The application does not launch, error message "System error" is displayed.
In what cases do this errors occur.
Iam building symbian , c++ apps for s60 3rd ,5th and symbian 3 devices.
just enable the real panic code, and then you'll get a lot more meaningful error note, and it also probably tells exactly what goes wrong in there.
How to enable the real panic code ? Iam very new to publishing to the nokia ovi site
It is good to have you around... http://www.developer.nokia.com/Commu...ded_panic_code
Anyway, the fact that you see "System error" suggests that the panic code file is installed.
When it has no additional detail (a negative number), it often indicates mismatching UID-s.
So check the UID in
- the .mmp file (UID keyword)
- AppDllUid method (in the Application object)
- _reg.rss file (UID3 keyword)
They should be matching.
Ok let me see and update you soon. Your comments or responses are very helpful for me.
My application object is containing this
const TUid KUidApp1App =
{
_UID3
};
and .mmp overview has UID3 as 0x2004aa1c which is given nokia
and _ reg.rss ic containing as below:
UID2 KUidAppRegistrationResourceFile
UID3 0x2004aa1c
which should not match?
which should compulsurily match?
please be little brief ..
I would still suggest on getting the real panic code.
emulator is not running due to use of some external libraries in the application
If you read that article (as suggested in #4) carefully, you will realize that how to get panic code on device.
which should not match?
which should compulsurily match?
please be little brief ..
I mean UID3 AppUID etc which should be same and which should not be?
pls be brief which UID should not match and which should?
suggesting still reading: http://www.developer.nokia.com/Commu...ded_panic_code and getting the real panic code.
Obviously all of the UID-s should be an UID which you have received from Nokia, the 0x2004aa1c is probably a good one.
_UID3 in "const TUid KUidApp1App" is not a number, but a macro, check its definition. Right click + show definiton (F3 is the shortcut perhaps). That will be the problematic one.
Hi GTO_India,
Was not it enough ?
const TUid KUidMyView = { 0xE1EF0018 };
Probably OVI or Symbian signed gave you 0x2004aa1d
Now you should use this id instead of 0xE1EF0018
Change the above
const TUid KUidMyView = { 0xE1EF0018 };
to
const TUid KUidMyView = { 0x2004aa1d };
Then it will work but this is so basic stuff that you need to learn more about the app dev.