mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-07-15 20:55:08 -04:00
Add lots more skeleton
This commit is contained in:
18
src/com/uncc/gameday/alerts/AlertService.java
Normal file
18
src/com/uncc/gameday/alerts/AlertService.java
Normal 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!
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user