- 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
95 lines
2.9 KiB
Java
95 lines
2.9 KiB
Java
package com.applovin.impl;
|
|
|
|
import android.net.Uri;
|
|
import com.applovin.sdk.AppLovinSdkConfiguration;
|
|
import com.applovin.sdk.AppLovinTermsAndPrivacyPolicyFlowSettings;
|
|
import com.mbridge.msdk.newreward.player.view.hybrid.util.MRAIDCommunicatorUtil;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class i4 implements AppLovinTermsAndPrivacyPolicyFlowSettings {
|
|
private boolean a;
|
|
private AppLovinSdkConfiguration.ConsentFlowUserGeography b;
|
|
private a c;
|
|
private Uri d;
|
|
private Uri e;
|
|
|
|
public a a() {
|
|
return this.c;
|
|
}
|
|
|
|
public void a(a aVar) {
|
|
this.c = aVar;
|
|
}
|
|
|
|
@Override // com.applovin.sdk.AppLovinTermsAndPrivacyPolicyFlowSettings
|
|
public AppLovinSdkConfiguration.ConsentFlowUserGeography getDebugUserGeography() {
|
|
return this.b;
|
|
}
|
|
|
|
@Override // com.applovin.sdk.AppLovinTermsFlowSettings
|
|
public Uri getPrivacyPolicyUri() {
|
|
return this.d;
|
|
}
|
|
|
|
@Override // com.applovin.sdk.AppLovinTermsFlowSettings
|
|
public Uri getTermsOfServiceUri() {
|
|
return this.e;
|
|
}
|
|
|
|
@Override // com.applovin.sdk.AppLovinTermsFlowSettings
|
|
public boolean isEnabled() {
|
|
return this.a;
|
|
}
|
|
|
|
public String toString() {
|
|
return "ConsentFlowSettings{isEnabled=" + this.a + ", privacyPolicyUri=" + this.d + ", termsOfServiceUri=" + this.e + '}';
|
|
}
|
|
|
|
public enum a {
|
|
TERMS(MRAIDCommunicatorUtil.STATES_DEFAULT),
|
|
UNIFIED("unified");
|
|
|
|
private final String a;
|
|
|
|
public String b() {
|
|
return this.a;
|
|
}
|
|
|
|
a(String str) {
|
|
this.a = str;
|
|
}
|
|
}
|
|
|
|
public i4(boolean z, AppLovinSdkConfiguration.ConsentFlowUserGeography consentFlowUserGeography, a aVar, Uri uri, Uri uri2) {
|
|
this.a = z;
|
|
this.b = consentFlowUserGeography;
|
|
this.c = aVar;
|
|
this.d = uri;
|
|
this.e = uri2;
|
|
}
|
|
|
|
@Override // com.applovin.sdk.AppLovinTermsFlowSettings
|
|
public void setEnabled(boolean z) {
|
|
com.applovin.impl.sdk.n.g("ConsentFlowSettingsImpl", "Setting consent flow enabled: " + z);
|
|
this.a = z;
|
|
}
|
|
|
|
@Override // com.applovin.sdk.AppLovinTermsAndPrivacyPolicyFlowSettings
|
|
public void setDebugUserGeography(AppLovinSdkConfiguration.ConsentFlowUserGeography consentFlowUserGeography) {
|
|
com.applovin.impl.sdk.n.g("ConsentFlowSettingsImpl", "Setting user debug geography: " + consentFlowUserGeography);
|
|
this.b = consentFlowUserGeography;
|
|
}
|
|
|
|
@Override // com.applovin.sdk.AppLovinTermsFlowSettings
|
|
public void setPrivacyPolicyUri(Uri uri) {
|
|
com.applovin.impl.sdk.n.g("ConsentFlowSettingsImpl", "Setting privacy policy: " + uri);
|
|
this.d = uri;
|
|
}
|
|
|
|
@Override // com.applovin.sdk.AppLovinTermsFlowSettings
|
|
public void setTermsOfServiceUri(Uri uri) {
|
|
com.applovin.impl.sdk.n.g("ConsentFlowSettingsImpl", "Setting terms of service: " + uri);
|
|
this.e = uri;
|
|
}
|
|
}
|