Android Open Source - android-sms-gateway Sms Broadcast Receiver






From Project

Back to project page android-sms-gateway.

License

The source code is released under:

Apache License

If you think the Android project android-sms-gateway listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.anjlab.android.smsgateway.gcm;
/*ww  w . ja va 2 s. com*/
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.support.v4.content.WakefulBroadcastReceiver;

public class SmsBroadcastReceiver extends WakefulBroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        ComponentName comp = new ComponentName(context.getPackageName(), SmsIntentService.class.getName());
        startWakefulService(context, (intent.setComponent(comp)));
        setResultCode(Activity.RESULT_OK);
    }
}




Java Source Code List

com.anjlab.android.smsgateway.gcm.GatewayApplication.java
com.anjlab.android.smsgateway.gcm.MainActivity.java
com.anjlab.android.smsgateway.gcm.SmsBroadcastReceiver.java
com.anjlab.android.smsgateway.gcm.SmsIntentService.java