- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
67 lines
1.6 KiB
Java
67 lines
1.6 KiB
Java
package com.applovin.sdk;
|
|
|
|
import android.content.Context;
|
|
import androidx.annotation.Nullable;
|
|
import com.applovin.impl.sdk.AppLovinSdkInitializationConfigurationImpl;
|
|
import com.applovin.mediation.MaxSegmentCollection;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface AppLovinSdkInitializationConfiguration {
|
|
|
|
public interface Builder {
|
|
AppLovinSdkInitializationConfiguration build();
|
|
|
|
List<String> getAdUnitIds();
|
|
|
|
@Nullable
|
|
String getMediationProvider();
|
|
|
|
@Nullable
|
|
String getPluginVersion();
|
|
|
|
String getSdkKey();
|
|
|
|
@Nullable
|
|
MaxSegmentCollection getSegmentCollection();
|
|
|
|
List<String> getTestDeviceAdvertisingIds();
|
|
|
|
boolean isExceptionHandlerEnabled();
|
|
|
|
Builder setAdUnitIds(List<String> list);
|
|
|
|
Builder setExceptionHandlerEnabled(boolean z);
|
|
|
|
Builder setMediationProvider(@Nullable String str);
|
|
|
|
Builder setPluginVersion(@Nullable String str);
|
|
|
|
Builder setSegmentCollection(MaxSegmentCollection maxSegmentCollection);
|
|
|
|
Builder setTestDeviceAdvertisingIds(List<String> list);
|
|
}
|
|
|
|
static Builder builder(String str, Context context) {
|
|
return new AppLovinSdkInitializationConfigurationImpl.BuilderImpl(str, context);
|
|
}
|
|
|
|
List<String> getAdUnitIds();
|
|
|
|
@Nullable
|
|
String getMediationProvider();
|
|
|
|
@Nullable
|
|
String getPluginVersion();
|
|
|
|
@Nullable
|
|
String getSdkKey();
|
|
|
|
@Nullable
|
|
MaxSegmentCollection getSegmentCollection();
|
|
|
|
List<String> getTestDeviceAdvertisingIds();
|
|
|
|
boolean isExceptionHandlerEnabled();
|
|
}
|