导航菜单

页面标题

页面副标题

管控平台 v5.2.3.0. - DeviceService.java 源代码

正在查看: 管控平台 v5.2.3.0. 应用的 DeviceService.java JAVA 源代码文件

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


package com.iflytek.mdmservice.policy.service;

import android.app.IntentService;
import android.content.Intent;
import androidx.annotation.Nullable;
import com.iflytek.mdmcommon.LogUtil;
import com.iflytek.mdmlibrary.MdmSdk;
import com.iflytek.mdmservice.k.d0;
import com.igexin.push.config.c;

public class DeviceService extends IntentService {
    public DeviceService() {
        this("DeviceService");
    }

    @Override
    protected void onHandleIntent(@Nullable Intent intent) {
        try {
            Thread.sleep(c.t);
        } catch (InterruptedException e) {
            LogUtil.e("DeviceService", e.getMessage());
            Thread.currentThread().interrupt();
        }
        d0.b0().p1("非法外设,弹出设备");
        MdmSdk.setStorageUnmounted();
    }

    public DeviceService(String str) {
        super(str);
    }
}