Blocking Incomming Calls in Android Smart Phone
We want to blocks all incomming calls in android phone. Create new project and extand it main class from BroadCast Receiver. public class Blocker extends BroadcastReceiver { private ITelephony telephonyService; private String incommingNumber; private String incommingName=null; @Override public void onReceive(Context context, Intent intent) { // TODO Auto-generated method stub Bundle b = intent.getExtras(); String state … Read more