Add Discord community version (64-bit only)

- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,240 @@
package com.google.firebase.messaging.reporting;
import com.google.firebase.encoders.proto.ProtoEnum;
/* loaded from: classes3.dex */
public final class MessagingClientEvent {
public static final MessagingClientEvent DEFAULT_INSTANCE = new Builder().build();
public final String analytics_label_;
public final long bulk_id_;
public final long campaign_id_;
public final String collapse_key_;
public final String composer_label_;
public final Event event_;
public final String instance_id_;
public final String message_id_;
public final MessageType message_type_;
public final String package_name_;
public final int priority_;
public final long project_number_;
public final SDKPlatform sdk_platform_;
public final String topic_;
public final int ttl_;
public String getAnalyticsLabel() {
return this.analytics_label_;
}
public long getBulkId() {
return this.bulk_id_;
}
public long getCampaignId() {
return this.campaign_id_;
}
public String getCollapseKey() {
return this.collapse_key_;
}
public String getComposerLabel() {
return this.composer_label_;
}
public Event getEvent() {
return this.event_;
}
public String getInstanceId() {
return this.instance_id_;
}
public String getMessageId() {
return this.message_id_;
}
public MessageType getMessageType() {
return this.message_type_;
}
public String getPackageName() {
return this.package_name_;
}
public int getPriority() {
return this.priority_;
}
public long getProjectNumber() {
return this.project_number_;
}
public SDKPlatform getSdkPlatform() {
return this.sdk_platform_;
}
public String getTopic() {
return this.topic_;
}
public int getTtl() {
return this.ttl_;
}
public MessagingClientEvent(long j, String str, String str2, MessageType messageType, SDKPlatform sDKPlatform, String str3, String str4, int i, int i2, String str5, long j2, Event event, String str6, long j3, String str7) {
this.project_number_ = j;
this.message_id_ = str;
this.instance_id_ = str2;
this.message_type_ = messageType;
this.sdk_platform_ = sDKPlatform;
this.package_name_ = str3;
this.collapse_key_ = str4;
this.priority_ = i;
this.ttl_ = i2;
this.topic_ = str5;
this.bulk_id_ = j2;
this.event_ = event;
this.analytics_label_ = str6;
this.campaign_id_ = j3;
this.composer_label_ = str7;
}
public static Builder newBuilder() {
return new Builder();
}
public static final class Builder {
public long project_number_ = 0;
public String message_id_ = "";
public String instance_id_ = "";
public MessageType message_type_ = MessageType.UNKNOWN;
public SDKPlatform sdk_platform_ = SDKPlatform.UNKNOWN_OS;
public String package_name_ = "";
public String collapse_key_ = "";
public int priority_ = 0;
public int ttl_ = 0;
public String topic_ = "";
public long bulk_id_ = 0;
public Event event_ = Event.UNKNOWN_EVENT;
public String analytics_label_ = "";
public long campaign_id_ = 0;
public String composer_label_ = "";
public Builder setAnalyticsLabel(String str) {
this.analytics_label_ = str;
return this;
}
public Builder setCollapseKey(String str) {
this.collapse_key_ = str;
return this;
}
public Builder setComposerLabel(String str) {
this.composer_label_ = str;
return this;
}
public Builder setEvent(Event event) {
this.event_ = event;
return this;
}
public Builder setInstanceId(String str) {
this.instance_id_ = str;
return this;
}
public Builder setMessageId(String str) {
this.message_id_ = str;
return this;
}
public Builder setMessageType(MessageType messageType) {
this.message_type_ = messageType;
return this;
}
public Builder setPackageName(String str) {
this.package_name_ = str;
return this;
}
public Builder setProjectNumber(long j) {
this.project_number_ = j;
return this;
}
public Builder setSdkPlatform(SDKPlatform sDKPlatform) {
this.sdk_platform_ = sDKPlatform;
return this;
}
public Builder setTopic(String str) {
this.topic_ = str;
return this;
}
public Builder setTtl(int i) {
this.ttl_ = i;
return this;
}
public MessagingClientEvent build() {
return new MessagingClientEvent(this.project_number_, this.message_id_, this.instance_id_, this.message_type_, this.sdk_platform_, this.package_name_, this.collapse_key_, this.priority_, this.ttl_, this.topic_, this.bulk_id_, this.event_, this.analytics_label_, this.campaign_id_, this.composer_label_);
}
}
public enum MessageType implements ProtoEnum {
UNKNOWN(0),
DATA_MESSAGE(1),
TOPIC(2),
DISPLAY_NOTIFICATION(3);
private final int number_;
@Override // com.google.firebase.encoders.proto.ProtoEnum
public int getNumber() {
return this.number_;
}
MessageType(int i) {
this.number_ = i;
}
}
public enum SDKPlatform implements ProtoEnum {
UNKNOWN_OS(0),
ANDROID(1),
IOS(2),
WEB(3);
private final int number_;
@Override // com.google.firebase.encoders.proto.ProtoEnum
public int getNumber() {
return this.number_;
}
SDKPlatform(int i) {
this.number_ = i;
}
}
public enum Event implements ProtoEnum {
UNKNOWN_EVENT(0),
MESSAGE_DELIVERED(1),
MESSAGE_OPEN(2);
private final int number_;
@Override // com.google.firebase.encoders.proto.ProtoEnum
public int getNumber() {
return this.number_;
}
Event(int i) {
this.number_ = i;
}
}
}