Back to project page android-stereocontrol.
The source code is released under:
MIT License
If you think the Android project android-stereocontrol 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 net.homeip.dometec.stereocontrol; /* ww w.j a va2 s. c om*/ import android.app.Activity; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.support.v4.content.WakefulBroadcastReceiver; import android.widget.Toast; public class GcmBroadcastReceiver extends WakefulBroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { ComponentName comp = new ComponentName(context.getPackageName(), GcmIntentService.class.getName()); startWakefulService(context, (intent.setComponent(comp))); setResultCode(Activity.RESULT_OK); Toast.makeText(context, "wow!! received new push notification", Toast.LENGTH_LONG).show(); } }