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,47 @@
package com.google.firebase.platforminfo;
/* loaded from: classes3.dex */
public final class AutoValue_LibraryVersion extends LibraryVersion {
public final String libraryName;
public final String version;
@Override // com.google.firebase.platforminfo.LibraryVersion
public String getLibraryName() {
return this.libraryName;
}
@Override // com.google.firebase.platforminfo.LibraryVersion
public String getVersion() {
return this.version;
}
public AutoValue_LibraryVersion(String str, String str2) {
if (str == null) {
throw new NullPointerException("Null libraryName");
}
this.libraryName = str;
if (str2 == null) {
throw new NullPointerException("Null version");
}
this.version = str2;
}
public String toString() {
return "LibraryVersion{libraryName=" + this.libraryName + ", version=" + this.version + "}";
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof LibraryVersion)) {
return false;
}
LibraryVersion libraryVersion = (LibraryVersion) obj;
return this.libraryName.equals(libraryVersion.getLibraryName()) && this.version.equals(libraryVersion.getVersion());
}
public int hashCode() {
return ((this.libraryName.hashCode() ^ 1000003) * 1000003) ^ this.version.hashCode();
}
}