Created
March 27, 2013 10:08
-
-
Save beshkenadze/5253168 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.demo; | |
import android.content.BroadcastReceiver; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.os.Binder; | |
import android.os.Bundle; | |
import android.os.IBinder; | |
import android.telephony.PhoneStateListener; | |
import android.telephony.TelephonyManager; | |
import android.util.Log; | |
import java.lang.reflect.Constructor; | |
import java.lang.reflect.InvocationTargetException; | |
import java.lang.reflect.Method; | |
/** | |
* User: Aleksandr Beshkenadze <[email protected]> | |
* Date: 22.03.13 | |
* Time: 15:25 | |
*/ | |
public class MyPhoneReceiver extends BroadcastReceiver { | |
public void onReceive(final Context context, Intent intent) { | |
Bundle bundle = intent.getExtras(); | |
if (bundle == null) | |
return; | |
String state = bundle.getString(TelephonyManager.EXTRA_STATE); | |
try { | |
//String serviceManagerName = "android.os.IServiceManager"; | |
String serviceManagerName = "android.os.ServiceManager"; | |
String serviceManagerNativeName = "android.os.ServiceManagerNative"; | |
String telephonyName = "com.android.internal.telephony.ITelephony"; | |
Class telephonyStubClass; | |
Class serviceManagerClass; | |
Class serviceManagerStubClass; | |
Class serviceManagerNativeClass; | |
Class serviceManagerNativeStubClass; | |
Method getDefault; | |
Method[] temps; | |
Constructor[] serviceManagerConstructor; | |
// Method getService; | |
Object serviceManagerObject; | |
Class<?> telephonyClass = Class.forName(telephonyName); | |
telephonyStubClass = telephonyClass.getClasses()[0]; | |
serviceManagerClass = Class.forName(serviceManagerName); | |
serviceManagerNativeClass = Class.forName(serviceManagerNativeName); | |
Method getService = // getDefaults[29]; | |
serviceManagerClass.getMethod("getService", String.class); | |
Method tempInterfaceMethod = serviceManagerNativeClass.getMethod( | |
"asInterface", IBinder.class); | |
Binder tmpBinder = new Binder(); | |
tmpBinder.attachInterface(null, "fake"); | |
serviceManagerObject = tempInterfaceMethod.invoke(null, tmpBinder); | |
IBinder retbinder = (IBinder) getService.invoke(serviceManagerObject, "phone"); | |
Method serviceMethod = telephonyStubClass.getMethod("asInterface", IBinder.class); | |
final Object telephonyObject = serviceMethod.invoke(null, retbinder); | |
final Method telephonyEndCall = telephonyClass.getMethod("endCall"); | |
if (state.equals(TelephonyManager.EXTRA_STATE_RINGING)) { | |
TelephonyManager telephony = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); | |
telephony.listen(new PhoneStateListener() { | |
@Override | |
public void onCallStateChanged(int state, final String incomingNumber) { | |
super.onCallStateChanged(state, incomingNumber); | |
if (incomingNumber.equals("+71234567890")) { | |
try { | |
telephonyEndCall.invoke(telephonyObject); | |
} catch (IllegalAccessException e) { | |
e.printStackTrace(); | |
} catch (InvocationTargetException e) { | |
e.printStackTrace(); | |
} | |
} | |
} | |
}, PhoneStateListener.LISTEN_CALL_STATE); | |
} | |
} catch (Exception e) { | |
e.printStackTrace(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment