Back to project page commit-android.
The source code is released under:
GNU General Public License
If you think the Android project commit-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.mauriciogiordano.commit; /*from ww w . j a v a 2 s . co m*/ import android.app.Activity; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.support.v4.content.WakefulBroadcastReceiver; public class CommitAlarmReceiver extends WakefulBroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { // Explicitly specify that GcmIntentService will handle the intent. ComponentName comp = new ComponentName(context.getPackageName(), CommitAlarmIntent.class.getName()); // Start the service, keeping the device awake while it is launching. intent.putExtra("requestCode", Constants.INTENT_COMMIT_NOTIFICATION); startWakefulService(context, (intent.setComponent(comp))); setResultCode(Activity.RESULT_OK); } }