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,57 @@
package kotlin.jvm.internal;
/* loaded from: classes5.dex */
public final class DoubleCompanionObject {
public static final DoubleCompanionObject INSTANCE = new DoubleCompanionObject();
public static final double MAX_VALUE = Double.MAX_VALUE;
public static final double MIN_VALUE = Double.MIN_VALUE;
public static final double NEGATIVE_INFINITY = Double.NEGATIVE_INFINITY;
public static final double NaN = Double.NaN;
public static final double POSITIVE_INFINITY = Double.POSITIVE_INFINITY;
public static final int SIZE_BITS = 64;
public static final int SIZE_BYTES = 8;
public static /* synthetic */ void getMAX_VALUE$annotations() {
}
public static /* synthetic */ void getMIN_VALUE$annotations() {
}
public static /* synthetic */ void getNEGATIVE_INFINITY$annotations() {
}
public static /* synthetic */ void getNaN$annotations() {
}
public static /* synthetic */ void getPOSITIVE_INFINITY$annotations() {
}
public static /* synthetic */ void getSIZE_BITS$annotations() {
}
public static /* synthetic */ void getSIZE_BYTES$annotations() {
}
public final double getMAX_VALUE() {
return Double.MAX_VALUE;
}
public final double getMIN_VALUE() {
return Double.MIN_VALUE;
}
public final double getNEGATIVE_INFINITY() {
return Double.NEGATIVE_INFINITY;
}
public final double getNaN() {
return Double.NaN;
}
public final double getPOSITIVE_INFINITY() {
return Double.POSITIVE_INFINITY;
}
private DoubleCompanionObject() {
}
}