package com.example.alarm;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class AlarmReceiver extends BroadcastReceiver {
	@Override
	public void onReceive(Context context, Intent intent) {
		String keyword1 = intent.getStringExtra("hogeID");

		Intent newIntent = new Intent();
		newIntent.setAction("com.example.action.ALARM");
		newIntent.putExtra("hogeID", keyword1);
		context.sendBroadcast(newIntent);
	}
}
