Back to project page Chopping.
The source code is released under:
Apache License
If you think the Android project Chopping listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.chopping.utils; //w w w .j a v a2 s . co m import android.content.Context; import android.content.Intent; import android.support.v4.content.WakefulBroadcastReceiver; import com.chopping.application.LL; public final class IncomingCallReceiver extends WakefulBroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { DeviceUtils.rejectIncomingCall(context); LL.i("Rejected an incoming call."); } }