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,49 @@
package com.google.firebase.heartbeatinfo;
import java.util.List;
/* loaded from: classes3.dex */
public final class AutoValue_HeartBeatResult extends HeartBeatResult {
public final List usedDates;
public final String userAgent;
@Override // com.google.firebase.heartbeatinfo.HeartBeatResult
public List getUsedDates() {
return this.usedDates;
}
@Override // com.google.firebase.heartbeatinfo.HeartBeatResult
public String getUserAgent() {
return this.userAgent;
}
public AutoValue_HeartBeatResult(String str, List list) {
if (str == null) {
throw new NullPointerException("Null userAgent");
}
this.userAgent = str;
if (list == null) {
throw new NullPointerException("Null usedDates");
}
this.usedDates = list;
}
public String toString() {
return "HeartBeatResult{userAgent=" + this.userAgent + ", usedDates=" + this.usedDates + "}";
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof HeartBeatResult)) {
return false;
}
HeartBeatResult heartBeatResult = (HeartBeatResult) obj;
return this.userAgent.equals(heartBeatResult.getUserAgent()) && this.usedDates.equals(heartBeatResult.getUsedDates());
}
public int hashCode() {
return ((this.userAgent.hashCode() ^ 1000003) * 1000003) ^ this.usedDates.hashCode();
}
}