导航菜单

页面标题

页面副标题

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

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

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


package com.iflytek.mdmservice.service;

import android.app.IntentService;
import android.content.Intent;
import android.net.Uri;
import androidx.annotation.Nullable;
import com.iflytek.mdmcommon.LogUtil;
import com.iflytek.mdmservice.MDMApp;

public class UninstallService extends IntentService {
    public UninstallService() {
        super("UninstallService");
    }

    @Override
    protected void onHandleIntent(@Nullable Intent intent) {
        LogUtil.d("定时卸载service");
        MDMApp.j().getContentResolver().notifyChange(Uri.parse("content://com.iflytek.mdmservice.provider.AppInfoProvider/policy"), null);
    }
}