Android call blocking from web

106 Views Asked by At

I made a service to monitor all the incoming and outgoing calls of android device on my website but now I want to block the calls from specific number from the same webpage.

Is their is anyway to do call blocking on android device by php or javascript code?

1

There are 1 best solutions below

2
Ashutosh Nigam On

In the telephony broadcast receive, check if the number is one of the blocked number? If condition is satisfied then use following code to end it:

telephonyService.endCall();