mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-06 12:15:38 +00:00
30 lines
892 B
Java
30 lines
892 B
Java
package com.topjohnwu.magisk.components;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.work.ListenableWorker;
|
|
|
|
import com.topjohnwu.magisk.BuildConfig;
|
|
import com.topjohnwu.magisk.Config;
|
|
import com.topjohnwu.magisk.tasks.CheckUpdates;
|
|
import com.topjohnwu.magisk.uicomponents.Notifications;
|
|
import com.topjohnwu.superuser.Shell;
|
|
|
|
public class UpdateCheckService extends DelegateWorker {
|
|
|
|
@NonNull
|
|
@Override
|
|
public ListenableWorker.Result doWork() {
|
|
Shell.getShell();
|
|
CheckUpdates.checkNow(this::onCheckDone);
|
|
return ListenableWorker.Result.success();
|
|
}
|
|
|
|
private void onCheckDone() {
|
|
if (BuildConfig.VERSION_CODE < Config.remoteManagerVersionCode) {
|
|
Notifications.managerUpdate();
|
|
} else if (Config.magiskVersionCode < Config.remoteMagiskVersionCode) {
|
|
Notifications.magiskUpdate();
|
|
}
|
|
}
|
|
}
|