Hi all,
I try to make an application that when a call is ending, it must work. How can I this application?
Thank you all.
Hi all,
I try to make an application that when a call is ending, it must work. How can I this application?
Thank you all.
just make an application that monitors the call status, and then runs the other application when the call is ending, or simply do the stuff in the monitoring application itself.
Wiki would be a good point on starting, for example you could look for exmaples using CTelephony API.
A good start would be looking into CTelephony API to observe ongoing calls. See this article: Monitoring_call_status_with_CTelephony
Then look into this article: How to start and stop exe
Nokia Developer Wiki Moderation team
Okey but I didn't understand just one point. will My call detect application run automaticly when ı install on device or must I do something like registration to the device?
Also search for autostart etc. for starting the app on boot time.
Hi again,
I used callsmonitor function but it doesn't detect. Here is my observer class code;
void CdetectContainerView::CallStatusChangedL(CTelephony::TCallStatus& aStatus, TInt aError)
{
if(aStatus == CTelephony::EStatusDisconnecting)
{
getfunction();
}
}
Can you help?
Does it really go to CallStatusChangedL ? And which way the call is terminated? From Caller side or from callee side?
Nokia Developer Wiki Moderation team
are you implemeting active objects for all these telephony functions, i mean are you deriving your class from CActive & implemeting all active objects like RunL() etc..
I wouls also debug to see what events are really detected..
I don't know go to CallStatusChangedL . I can't debug this code. kiran10182 :both sides. I install it my phone.
you could for example use RFile, and write some debugging infomration into the file while running the app..
It's okey, I detected. Now I must do that the application must start automaticly.
Thank you all.
for the one you could search for autostart etc. in this forum..