Back to project page BackbeamAndroid.
The source code is released under:
Copyright (c) 2012 Level Apps S.L. <http://backbeam.io> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software...
If you think the Android project BackbeamAndroid 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 io.backbeam; /*from w ww . j a va2 s . c o m*/ import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class GCMBroadcastReceiver extends BroadcastReceiver { @Override public final void onReceive(Context context, Intent intent) { GCMIntentService.runIntentInService(context, intent); setResult(Activity.RESULT_OK, null, null); } }