- 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
27 lines
951 B
Java
27 lines
951 B
Java
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;
|
|
}
|
|
}
|