25 lines
536 B
Java
25 lines
536 B
Java
package com.example.exampleservice;
|
|
|
|
import android.app.Service;
|
|
import android.content.Intent;
|
|
import android.os.IBinder;
|
|
import android.util.Log;
|
|
|
|
import androidx.annotation.Nullable;
|
|
import androidx.core.app.NotificationChannelCompat;
|
|
import androidx.core.app.NotificationCompat;
|
|
|
|
public class KoolService extends QuickPowerService {
|
|
|
|
|
|
@Override
|
|
public void onStartCommandInit(Intent intent, int flags, int startId) {
|
|
|
|
}
|
|
|
|
@Nullable
|
|
@Override
|
|
public IBinder onBind(Intent intent) {
|
|
return null;
|
|
}
|
|
} |