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,60 @@
package com.tapjoy.internal;
import com.tapjoy.TJDeviceNetwork;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class u1 {
public final String a;
public final String b;
public final String c;
public final String d;
public final String e;
public final String f;
public u1() {
this.a = null;
this.b = null;
this.c = null;
this.d = null;
this.e = null;
this.f = null;
TJDeviceNetwork tJDeviceNetwork = TJDeviceNetwork.INSTANCE;
this.a = tJDeviceNetwork.getCarrierName();
this.b = tJDeviceNetwork.getCarrierNameSim();
this.f = tJDeviceNetwork.getDeviceCountrySIM();
this.c = tJDeviceNetwork.getCarrierCountryCode();
this.d = tJDeviceNetwork.getMobileCountryCode();
this.e = tJDeviceNetwork.getMobileNetworkCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof u1)) {
return false;
}
u1 u1Var = (u1) obj;
return Intrinsics.areEqual(this.a, u1Var.a) && Intrinsics.areEqual(this.b, u1Var.b) && Intrinsics.areEqual(this.c, u1Var.c) && Intrinsics.areEqual(this.d, u1Var.d) && Intrinsics.areEqual(this.e, u1Var.e) && Intrinsics.areEqual(this.f, u1Var.f);
}
public final int hashCode() {
String str = this.a;
int hashCode = (str == null ? 0 : str.hashCode()) * 31;
String str2 = this.b;
int hashCode2 = (hashCode + (str2 == null ? 0 : str2.hashCode())) * 31;
String str3 = this.c;
int hashCode3 = (hashCode2 + (str3 == null ? 0 : str3.hashCode())) * 31;
String str4 = this.d;
int hashCode4 = (hashCode3 + (str4 == null ? 0 : str4.hashCode())) * 31;
String str5 = this.e;
int hashCode5 = (hashCode4 + (str5 == null ? 0 : str5.hashCode())) * 31;
String str6 = this.f;
return hashCode5 + (str6 != null ? str6.hashCode() : 0);
}
public final String toString() {
return "TJCarrierModel(carrierName=" + this.a + ", carrierNameSim=" + this.b + ", carrierCountryCode=" + this.c + ", mobileCountryCode=" + this.d + ", mobileNetworkCode=" + this.e + ", countrySim=" + this.f + ")";
}
}