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