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,26 @@
package csdk.gluads;
/* loaded from: classes4.dex */
public class PrivacyStatus {
public static final String CCPA_APPLIES = "ccpaApplies";
public static final String CCPA_OPT_OUT = "ccpaOptOut";
public static final String GDPR_APPLIES = "gdprApplies";
public static final String HAS_CONSENT = "hasConsent";
public static final String TEEN_USER = "teen";
public static final String UNDER_AGE_USER = "underAgeUser";
public final boolean ccpaApplies;
public final boolean ccpaOptOut;
public final boolean gdprApplies;
public final boolean hasConsent;
public final boolean teenUser;
public final boolean underAgeUser;
public PrivacyStatus(boolean z, boolean z2, boolean z3, boolean z4, boolean z5, boolean z6) {
this.gdprApplies = z;
this.hasConsent = z2;
this.ccpaApplies = z3;
this.ccpaOptOut = z4;
this.underAgeUser = z5;
this.teenUser = z6;
}
}