Files
rr3-apk/decompiled/sources/com/applovin/impl/i4.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

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;
}
}