Thanks for fast reply,
i enabled error messages and got this:
Application closed: MyApp KERN-EXEC 3
I tried to debug on the device, it stop on a line where i delete an object ( the line has no break point, i don't know why it stopped there) and not moving to the next line as if its infinite loop
My Code:
Code:
#ifndef __WINSS__
CactiveObjActive* iMyActiveObject = CactiveObjActive::NewL();
iMyActiveObject->GetIMEI(aImei);
delete iMyActiveObject; // debugging stop here
#else
//Return a fake IMEI when working on emulator
TBuf<15> KEmulatorImei;
for(int i=0;i<15;i++) KEmulatorImei.Append(TChar(48));
aImei->Copy(KEmulatorImei);
KEmulatorImei.Delete(0,15);
#endif
Thanks for attention.