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,46 @@
package com.google.android.gms.common.util;
import com.google.android.gms.common.annotation.KeepForSdk;
@KeepForSdk
/* loaded from: classes2.dex */
public final class GmsVersion {
@KeepForSdk
public static final int VERSION_HALLOUMI = 4100000;
@KeepForSdk
public static final int VERSION_JARLSBERG = 4300000;
@KeepForSdk
public static final int VERSION_KENAFA = 4400000;
@KeepForSdk
public static final int VERSION_LONGHORN = 5000000;
@KeepForSdk
public static final int VERSION_MANCHEGO = 6000000;
@KeepForSdk
public static final int VERSION_ORLA = 7000000;
@KeepForSdk
public static final int VERSION_PARMESAN = 7200000;
@KeepForSdk
public static final int VERSION_QUESO = 7500000;
@KeepForSdk
public static final int VERSION_REBLOCHON = 7800000;
@KeepForSdk
public static final int VERSION_SAGA = 8000000;
private GmsVersion() {
}
@KeepForSdk
public static boolean isAtLeastFenacho(int i) {
return i >= 3200000;
}
}