I am creating an app to reject calls from specific numbers without even getting a single ring to the calling person.
I have a code that rejects the call after a partial ring. Please don't say this question is repeated. I have been searching code to reject the call without a ring for long time still didn't find the solution. Kindly help me!
public void onReceive(Context context, Intent intent) {
    Bundle b = intent.getExtras();
    incommingNumber = b.getString(TelephonyManager.EXTRA_INCOMING_NUMBER);
     String state = intent.getStringExtra(TelephonyManager.EXTRA_STATE);
        for(int i=0;i<blockedNumbers.length;i++)
        {
            if(incommingNumber.equalsIgnoreCase(blockedNumbers[i]))
            {
                TelephonyManager telephony = (TelephonyManager) 
                context.getSystemService(Context.TELEPHONY_SERVICE);  
                  try {
                   Class c = Class.forName(telephony.getClass().getName());
                   Method m = c.getDeclaredMethod("getITelephony");
                   m.setAccessible(true);
                   telephonyService = (ITelephony) m.invoke(telephony);
                   telephonyService.silenceRinger();
                   telephonyService.endCall();
                  } catch (Exception e) {
                   e.printStackTrace();
                  }
            }
        }
    }
This is the code I have used to reject the call. But it rejects with one ring.
 
     
     
     
     
    