导航菜单

页面标题

页面副标题

Tasker v6.5.11 - ServicePluginFinished.java 源代码

正在查看: Tasker v6.5.11 应用的 ServicePluginFinished.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package com.joaomgcd.taskerm.plugin;

import android.annotation.TargetApi;
import android.app.IntentService;
import android.content.ComponentName;
import android.content.Intent;
import com.joaomgcd.taskerm.util.p;
import net.dinglisch.android.taskerm.ExecuteService;

@TargetApi(26)
public final class ServicePluginFinished extends IntentService {
    public ServicePluginFinished() {
        super("ServicePluginFinished");
    }

    public final String a() {
        return "ServicePluginFinished";
    }

    @Override
    public void onCreate() {
        super.onCreate();
    }

    @Override
    public void onDestroy() {
        p.C(this, a());
        super.onDestroy();
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        if (intent == null) {
            return;
        }
        intent.setComponent(new ComponentName(getPackageName(), ExecuteService.class.getName()));
        ExecuteService.Z5(this, intent);
    }
}