summaryrefslogtreecommitdiffstats
path: root/tvout/src/com/teamhacksung/tvout/BootCompletedReceiver.java
blob: 5ed6af67aa9d06de0452902de696a18bebe57ac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.teamhacksung.tvout;

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

public class BootCompletedReceiver extends BroadcastReceiver {
	@Override
	public void onReceive(Context context, Intent intent) {
		context.startService(new Intent(context, TvOutService.class));
	}
}