17 lines
283 B
Java
17 lines
283 B
Java
package com.xxpatx.os.alarm;
|
|
|
|
import android.app.Service;
|
|
import android.content.Intent;
|
|
import android.os.IBinder;
|
|
|
|
public class AlarmService extends Service {
|
|
public AlarmService() {
|
|
}
|
|
|
|
@Override
|
|
public IBinder onBind(Intent intent) {
|
|
return null;
|
|
}
|
|
|
|
}
|