INNER CODE UNIT · Java
KeepAliveService
termux/termux-api · app/src/main/java/com/termux/api/KeepAliveService.java:11
public class KeepAliveService extends Service {
private static final String LOG_TAG = "KeepAliveService";
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Logger.logDebug(LOG_TAG, "onStartCommand");
return Service.START_STICKY;
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
}