Back to project page callerid-for-android.
The source code is released under:
GNU General Public License
If you think the Android project callerid-for-android 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.integralblue.callerid; /*w w w. ja v a 2s .co m*/ import roboguice.receiver.RoboBroadcastReceiver; import android.content.Context; import android.content.Intent; public class CallerIDBroadcastReceiver extends RoboBroadcastReceiver { @Override public void handleReceive(Context context, Intent intent) { super.handleReceive(context, intent); final Intent myIntent=new Intent(context,CallerIDService.class); myIntent.putExtras(intent); context.startService(myIntent); } }