Add lots more skeleton

This commit is contained in:
bspeice
2013-10-09 19:39:20 -04:00
parent e0f029f387
commit 9fc974402b
4 changed files with 89 additions and 91 deletions

View File

@ -0,0 +1,18 @@
package com.uncc.gameday.alerts;
import android.app.IntentService;
import android.content.Intent;
public class AlertService extends IntentService {
private static final String name = "AlertService";
public AlertService() {
super(name);
}
@Override
protected void onHandleIntent(Intent intent) {
// Go fetch all the alerts!
}
}