package com.applovin.sdk; import androidx.annotation.Nullable; import java.util.List; /* loaded from: classes2.dex */ public interface AppLovinSdkConfiguration { @Deprecated public enum ConsentDialogState { UNKNOWN, APPLIES, DOES_NOT_APPLY } public enum ConsentFlowUserGeography { UNKNOWN, GDPR, OTHER } @Deprecated ConsentDialogState getConsentDialogState(); ConsentFlowUserGeography getConsentFlowUserGeography(); String getCountryCode(); @Nullable List getEnabledAmazonAdUnitIds(); boolean isTestModeEnabled(); }