Created
January 12, 2009 08:03
-
-
Save IceskYsl/45922 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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