正在查看: Bugko v9.2.6.0 应用的 PushNotificationMessagingService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Bugko v9.2.6.0 应用的 PushNotificationMessagingService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package crc640190106674015c54;
import com.google.firebase.messaging.FirebaseMessagingService;
import com.google.firebase.messaging.RemoteMessage;
import java.util.ArrayList;
import mono.android.IGCUserPeer;
import mono.android.Runtime;
import mono.android.TypeManager;
public class PushNotificationMessagingService extends FirebaseMessagingService implements IGCUserPeer {
public static final String __md_methods = "n_onNewToken:(Ljava/lang/String;)V:GetOnNewToken_Ljava_lang_String_Handler\nn_onMessageReceived:(Lcom/google/firebase/messaging/RemoteMessage;)V:GetOnMessageReceived_Lcom_google_firebase_messaging_RemoteMessage_Handler\n";
private ArrayList refList;
private native void n_onMessageReceived(RemoteMessage remoteMessage);
private native void n_onNewToken(String str);
static {
Runtime.register("Bugko.Droid.Services.PushNotificationMessagingService, Bugko.Droid", PushNotificationMessagingService.class, __md_methods);
}
public PushNotificationMessagingService() {
if (getClass() == PushNotificationMessagingService.class) {
TypeManager.Activate("Bugko.Droid.Services.PushNotificationMessagingService, Bugko.Droid", "", this, new Object[0]);
}
}
public void onNewToken(String str) {
n_onNewToken(str);
}
public void onMessageReceived(RemoteMessage remoteMessage) {
n_onMessageReceived(remoteMessage);
}
public void monodroidAddReference(Object obj) {
if (this.refList == null) {
this.refList = new ArrayList();
}
this.refList.add(obj);
}
public void monodroidClearReferences() {
ArrayList arrayList = this.refList;
if (arrayList != null) {
arrayList.clear();
}
}
}