Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create a custom call handling Application

Hi There I'm looking to create a custom call application.

i.e I want to replace the default application handling call :S.

I'M SURE THAT I WANT TO REINVENT THE WHEEL Sometimes current wheels are ain't good for me.

Can you put me on a start up line. I used to be a married to M$ ".net developer", and I'm in love with gOOgle.

like image 899
Rani Avatar asked Nov 23 '10 14:11

Rani


People also ask

What is a call center application?

Call center application is a type of customer service application and it provides customers an access to receive a support through a phone call from call center. It raises an efficiency of customer service team and customer satisfaction.

What is a custom call?

Related Definitions Custom Calling Features means a set of Telecommunications Service features available to residential and single-line business customers including call-waiting, call-forwarding and three-party calling.

What is call handling on Zoom?

Admins and phone users can customize call handling settings to determine how calls are routed during business, closed, or holiday hours.


2 Answers

As Emmanuel has already stated, it is not possible to truly replace the phone app without recompiling the operating system. Even on a rooted device, you are still locked into the vendor firmware and trying to work backwards from there would be a tenuous proposition at best. Now, it is possible to receive notifications in certain event types and preform actions there, but I doubt this is what you want to do.

However, for those who must know what goes on under the hood, take a look here

For exposed telephony interface (including SMS API), see android.telephony

like image 110
MysteryMoose Avatar answered Sep 25 '22 17:09

MysteryMoose


It's not possible to replace the phone application besides making a custom operating system and install it on rooted phones. But that's a lot of trouble.

But you can develop a separate application and have it make phone calls or intercept incoming calls. But while the user is talking on phone he'll still see the old phone application.

like image 40
Emmanuel Avatar answered Sep 23 '22 17:09

Emmanuel