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,97 @@
package com.ironsource;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class x7 {
private String a;
private String b;
private String c;
public x7(String cachedAppKey, String cachedUserId, String cachedSettings) {
Intrinsics.checkNotNullParameter(cachedAppKey, "cachedAppKey");
Intrinsics.checkNotNullParameter(cachedUserId, "cachedUserId");
Intrinsics.checkNotNullParameter(cachedSettings, "cachedSettings");
this.a = cachedAppKey;
this.b = cachedUserId;
this.c = cachedSettings;
}
public static /* synthetic */ x7 a(x7 x7Var, String str, String str2, String str3, int i, Object obj) {
if ((i & 1) != 0) {
str = x7Var.a;
}
if ((i & 2) != 0) {
str2 = x7Var.b;
}
if ((i & 4) != 0) {
str3 = x7Var.c;
}
return x7Var.a(str, str2, str3);
}
public final x7 a(String cachedAppKey, String cachedUserId, String cachedSettings) {
Intrinsics.checkNotNullParameter(cachedAppKey, "cachedAppKey");
Intrinsics.checkNotNullParameter(cachedUserId, "cachedUserId");
Intrinsics.checkNotNullParameter(cachedSettings, "cachedSettings");
return new x7(cachedAppKey, cachedUserId, cachedSettings);
}
public final String a() {
return this.a;
}
public final void a(String str) {
Intrinsics.checkNotNullParameter(str, "<set-?>");
this.a = str;
}
public final String b() {
return this.b;
}
public final void b(String str) {
Intrinsics.checkNotNullParameter(str, "<set-?>");
this.c = str;
}
public final String c() {
return this.c;
}
public final void c(String str) {
Intrinsics.checkNotNullParameter(str, "<set-?>");
this.b = str;
}
public final String d() {
return this.a;
}
public final String e() {
return this.c;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof x7)) {
return false;
}
x7 x7Var = (x7) obj;
return Intrinsics.areEqual(this.a, x7Var.a) && Intrinsics.areEqual(this.b, x7Var.b) && Intrinsics.areEqual(this.c, x7Var.c);
}
public final String f() {
return this.b;
}
public int hashCode() {
return (((this.a.hashCode() * 31) + this.b.hashCode()) * 31) + this.c.hashCode();
}
public String toString() {
return "CachedResponse(cachedAppKey=" + this.a + ", cachedUserId=" + this.b + ", cachedSettings=" + this.c + ')';
}
}