Skip to content

Instantly share code, notes, and snippets.

@IceskYsl
Created January 12, 2009 08:03
Show Gist options
  • Save IceskYsl/45922 to your computer and use it in GitHub Desktop.
Save IceskYsl/45922 to your computer and use it in GitHub Desktop.
package com.ex_alarmService_1;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class AlarmReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent arg1) {
// TODO Auto-generated method stub
context.startService(new Intent(context, NotifyService.class));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment