正在查看: Sandridge Go v2025.2.170190457 应用的 MAMNotificationReceiverService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Sandridge Go v2025.2.170190457 应用的 MAMNotificationReceiverService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package com.microsoft.intune.mam.client.notification;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import com.microsoft.intune.mam.client.app.M;
import com.microsoft.intune.mam.policy.notification.NotificationReceiverBinderFactory;
public final class MAMNotificationReceiverService extends Service {
private IBinder o;
@Override
protected void attachBaseContext(Context context) {
M.l(context);
super.attachBaseContext(context);
}
@Override
public IBinder onBind(Intent intent) {
return this.o;
}
@Override
public void onCreate() {
NotificationReceiverBinderFactory notificationReceiverBinderFactory = (NotificationReceiverBinderFactory) M.e(NotificationReceiverBinderFactory.class);
this.o = notificationReceiverBinderFactory == null ? null : notificationReceiverBinderFactory.create();
}
}