导航菜单

页面标题

页面副标题

RummyCircle v11000.89 - FirebaseFCMService.java 源代码

正在查看: RummyCircle v11000.89 应用的 FirebaseFCMService.java JAVA 源代码文件

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


package com.games24x7.pgnotification.services;

import android.content.Context;
import androidx.datastore.preferences.protobuf.t;
import com.games24x7.pgeventbus.PGEventBus;
import com.games24x7.pgeventbus.event.EventInfo;
import com.games24x7.pgeventbus.event.PGEvent;
import com.games24x7.pgnotification.PGNotificationManager;
import com.google.firebase.messaging.FirebaseMessagingService;
import kotlin.Metadata;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
import org.jetbrains.annotations.NotNull;
import org.json.JSONObject;

@Metadata
public final class FirebaseFCMService extends FirebaseMessagingService {

    @NotNull
    private final String TAG = "FirebaseFCMService";

    @NotNull
    private Context _mContext = this;

    public void onMessageReceived(@org.jetbrains.annotations.NotNull com.google.firebase.messaging.z r22) {
        throw new UnsupportedOperationException("Method not decompiled: com.games24x7.pgnotification.services.FirebaseFCMService.onMessageReceived(com.google.firebase.messaging.z):void");
    }

    public void onNewToken(@NotNull String str) {
        Intrinsics.checkNotNullParameter(str, "token");
        super.onNewToken(str);
        JSONObject h = t.h("token", str);
        PGEventBus pGEventBus = new PGEventBus();
        PGNotificationManager.Companion.getClass();
        EventInfo eventInfo = new EventInfo("NEW_TOKEN_GENERATED", PGNotificationManager.access$getMEventType$cp(), (String) null, (String) null, 12, (DefaultConstructorMarker) null);
        String jSONObject = h.toString();
        Intrinsics.checkNotNullExpressionValue(jSONObject, "jsonObject.toString()");
        pGEventBus.postEvent(new PGEvent(eventInfo, jSONObject, new EventInfo("na", "na", (String) null, (String) null, 12, (DefaultConstructorMarker) null)));
    }
}