How to block calls in android

OMG!!! YES, WE CAN DO THAT!!! I was going to kill myself after severe 24 hours of investigating and discovering… But I’ve found “fresh” solution! // “cheat” with Java reflection to gain access to TelephonyManager’s // ITelephony getter Class c = Class.forName(tm.getClass().getName()); Method m = c.getDeclaredMethod(“getITelephony”); m.setAccessible(true); telephonyService = (ITelephony)m.invoke(tm); all all all of hundreds … Read more