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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,193 @@
package com.applovin.adview;
import android.content.Context;
import android.graphics.Color;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.util.TypedValue;
import android.widget.RelativeLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.view.ViewCompat;
import com.applovin.impl.adview.a;
import com.applovin.impl.sdk.n;
import com.applovin.sdk.AppLovinAd;
import com.applovin.sdk.AppLovinAdClickListener;
import com.applovin.sdk.AppLovinAdDisplayListener;
import com.applovin.sdk.AppLovinAdLoadListener;
import com.applovin.sdk.AppLovinAdSize;
import com.applovin.sdk.AppLovinSdk;
/* loaded from: classes.dex */
public class AppLovinAdView extends RelativeLayout {
public static final String NAMESPACE = "http://schemas.applovin.com/android/1.0";
private a a;
public AppLovinAdView(AppLovinAdSize appLovinAdSize, Context context) {
this(appLovinAdSize, (String) null, context);
}
private void a(AppLovinAdSize appLovinAdSize, String str, AppLovinSdk appLovinSdk, Context context, AttributeSet attributeSet) {
if (isInEditMode()) {
a(attributeSet, context);
return;
}
a aVar = new a();
this.a = aVar;
aVar.a(this, context, appLovinAdSize, str, appLovinSdk, attributeSet);
}
public a getController() {
return this.a;
}
@Override // android.view.ViewGroup, android.view.View
public void onAttachedToWindow() {
super.onAttachedToWindow();
a aVar = this.a;
if (aVar != null) {
aVar.B();
}
}
@Override // android.view.View
public String toString() {
return "AppLovinAdView{zoneId='" + getZoneId() + "\", size=" + getSize() + '}';
}
public AppLovinAdView(AppLovinAdSize appLovinAdSize, String str, Context context) {
super(context);
a(appLovinAdSize, str, null, context, null);
}
public void destroy() {
a aVar = this.a;
if (aVar != null) {
aVar.b();
}
}
public AppLovinAdSize getSize() {
a aVar = this.a;
if (aVar != null) {
return aVar.m();
}
return null;
}
public String getZoneId() {
a aVar = this.a;
if (aVar != null) {
return aVar.n();
}
return null;
}
public void loadNextAd() {
a aVar = this.a;
if (aVar != null) {
aVar.v();
} else {
n.i("AppLovinSdk", "Unable to load next ad: AppLovinAdView is not initialized.");
}
}
@Override // android.view.ViewGroup, android.view.View
public void onDetachedFromWindow() {
a aVar = this.a;
if (aVar != null) {
aVar.C();
}
super.onDetachedFromWindow();
}
public void pause() {
a aVar = this.a;
if (aVar != null) {
aVar.F();
}
}
public void renderAd(AppLovinAd appLovinAd) {
a aVar = this.a;
if (aVar != null) {
aVar.c(appLovinAd);
}
}
public void resume() {
a aVar = this.a;
if (aVar != null) {
aVar.H();
}
}
public void setAdClickListener(AppLovinAdClickListener appLovinAdClickListener) {
a aVar = this.a;
if (aVar != null) {
aVar.a(appLovinAdClickListener);
}
}
public void setAdDisplayListener(AppLovinAdDisplayListener appLovinAdDisplayListener) {
a aVar = this.a;
if (aVar != null) {
aVar.a(appLovinAdDisplayListener);
}
}
public void setAdLoadListener(AppLovinAdLoadListener appLovinAdLoadListener) {
a aVar = this.a;
if (aVar != null) {
aVar.a(appLovinAdLoadListener);
}
}
public void setAdViewEventListener(AppLovinAdViewEventListener appLovinAdViewEventListener) {
a aVar = this.a;
if (aVar != null) {
aVar.a(appLovinAdViewEventListener);
}
}
public void setExtraInfo(@NonNull String str, @Nullable Object obj) {
if (str == null) {
throw new IllegalArgumentException("No key specified");
}
a aVar = this.a;
if (aVar != null) {
aVar.a(str, obj);
}
}
public AppLovinAdView(AppLovinSdk appLovinSdk, AppLovinAdSize appLovinAdSize, Context context) {
this(appLovinSdk, appLovinAdSize, null, context);
}
public AppLovinAdView(AppLovinSdk appLovinSdk, AppLovinAdSize appLovinAdSize, String str, Context context) {
super(context.getApplicationContext());
a(appLovinAdSize, str, appLovinSdk, context, null);
}
public AppLovinAdView(Context context, AttributeSet attributeSet) {
this(context, attributeSet, 0);
}
public AppLovinAdView(Context context, AttributeSet attributeSet, int i) {
super(context, attributeSet, i);
a(null, null, null, context, attributeSet);
}
private void a(AttributeSet attributeSet, Context context) {
DisplayMetrics displayMetrics = context.getResources().getDisplayMetrics();
int i = displayMetrics.widthPixels;
int applyDimension = (int) TypedValue.applyDimension(1, 50.0f, displayMetrics);
TextView textView = new TextView(context);
textView.setBackgroundColor(Color.rgb(220, 220, 220));
textView.setTextColor(ViewCompat.MEASURED_STATE_MASK);
textView.setText("AppLovin Ad");
textView.setGravity(17);
addView(textView, i, applyDimension);
}
}

View File

@@ -0,0 +1,7 @@
package com.applovin.adview;
/* loaded from: classes.dex */
public enum AppLovinAdViewDisplayErrorCode {
UNSPECIFIED,
WEBVIEW_NOT_FOUND
}

View File

@@ -0,0 +1,14 @@
package com.applovin.adview;
import com.applovin.sdk.AppLovinAd;
/* loaded from: classes.dex */
public interface AppLovinAdViewEventListener {
void adClosedFullscreen(AppLovinAd appLovinAd, AppLovinAdView appLovinAdView);
void adFailedToDisplay(AppLovinAd appLovinAd, AppLovinAdView appLovinAdView, AppLovinAdViewDisplayErrorCode appLovinAdViewDisplayErrorCode);
void adLeftApplication(AppLovinAd appLovinAd, AppLovinAdView appLovinAdView);
void adOpenedFullscreen(AppLovinAd appLovinAd, AppLovinAdView appLovinAdView);
}

View File

@@ -0,0 +1,326 @@
package com.applovin.adview;
import android.R;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Bundle;
import android.os.Process;
import android.text.TextUtils;
import android.view.KeyEvent;
import android.view.View;
import android.webkit.WebView;
import android.window.OnBackInvokedCallback;
import android.window.OnBackInvokedDispatcher;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.view.ViewCompat;
import com.applovin.impl.adview.activity.FullscreenAdService;
import com.applovin.impl.ma;
import com.applovin.impl.p9;
import com.applovin.impl.r;
import com.applovin.impl.s;
import com.applovin.impl.sdk.j;
import com.applovin.impl.sdk.n;
import com.applovin.impl.sdk.utils.CollectionUtils;
import com.applovin.impl.sdk.utils.JsonUtils;
import com.applovin.impl.sdk.utils.StringUtils;
import com.applovin.impl.sj;
import com.applovin.impl.t6;
import com.applovin.impl.tb;
import com.applovin.impl.u9;
import com.applovin.impl.uj;
import com.applovin.impl.x1;
import com.applovin.impl.yp;
import com.applovin.impl.z3;
import com.applovin.sdk.AppLovinSdk;
import com.applovin.sdk.AppLovinSdkSettings;
import com.ironsource.v8;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import org.json.JSONObject;
/* loaded from: classes.dex */
public class AppLovinFullscreenActivity extends Activity implements t6 {
@SuppressLint({"StaticFieldLeak"})
public static tb parentInterstitialWrapper;
private j a;
private p9 b;
private final AtomicBoolean c = new AtomicBoolean(true);
private com.applovin.impl.adview.activity.a d;
private b f;
private boolean g;
private x1 h;
private long i;
public static class b implements OnBackInvokedCallback {
private final Runnable a;
public b(Runnable runnable) {
this.a = runnable;
}
public void onBackInvoked() {
this.a.run();
}
}
private void b() {
j jVar = this.a;
if (jVar == null || !((Boolean) jVar.a(sj.v2)).booleanValue()) {
return;
}
final Long l = (Long) this.a.a(sj.w2);
this.h = x1.a(l.longValue(), true, this.a, new Runnable() { // from class: com.applovin.adview.AppLovinFullscreenActivity$$ExternalSyntheticLambda0
@Override // java.lang.Runnable
public final void run() {
AppLovinFullscreenActivity.this.a(l);
}
});
}
@Override // com.applovin.impl.t6
public void dismiss() {
OnBackInvokedDispatcher onBackInvokedDispatcher;
if (z3.l() && this.f != null) {
onBackInvokedDispatcher = getOnBackInvokedDispatcher();
onBackInvokedDispatcher.unregisterOnBackInvokedCallback(this.f);
this.f = null;
}
p9 p9Var = this.b;
if (p9Var != null) {
p9Var.f();
} else {
finish();
}
}
@Override // android.app.Activity
public void onBackPressed() {
c();
}
@Override // android.app.Activity, android.content.ComponentCallbacks
public void onConfigurationChanged(@NonNull Configuration configuration) {
super.onConfigurationChanged(configuration);
p9 p9Var = this.b;
if (p9Var != null) {
p9Var.a(configuration);
}
}
@Override // android.app.Activity
public void onCreate(@Nullable Bundle bundle) {
OnBackInvokedDispatcher onBackInvokedDispatcher;
super.onCreate(bundle);
if (bundle != null && parentInterstitialWrapper == null) {
n.j("AppLovinFullscreenActivity", "Dismissing ad. Activity was destroyed while in background.");
dismiss();
return;
}
try {
requestWindowFeature(1);
} catch (Throwable th) {
n.c("AppLovinFullscreenActivity", "Failed to request window feature", th);
}
getWindow().setFlags(1024, 1024);
getWindow().addFlags(16777216);
getWindow().addFlags(128);
View findViewById = findViewById(R.id.content);
findViewById.setBackgroundColor(ViewCompat.MEASURED_STATE_MASK);
String stringExtra = getIntent().getStringExtra("com.applovin.interstitial.sdk_key");
if (TextUtils.isEmpty(stringExtra)) {
tb tbVar = parentInterstitialWrapper;
if (tbVar != null && tbVar.f() != null) {
tb.a(parentInterstitialWrapper.f(), parentInterstitialWrapper.c(), "Empty SDK key", null, this);
}
finish();
return;
}
j a2 = AppLovinSdk.getInstance(stringExtra, new AppLovinSdkSettings(this), this).a();
this.a = a2;
this.g = ((Boolean) a2.a(sj.N2)).booleanValue();
findViewById.setFitsSystemWindows(true);
r.a(this.g, this);
if (z3.l() && ((Boolean) this.a.a(sj.c6)).booleanValue()) {
this.f = new b(new Runnable() { // from class: com.applovin.adview.AppLovinFullscreenActivity$$ExternalSyntheticLambda1
@Override // java.lang.Runnable
public final void run() {
AppLovinFullscreenActivity.this.c();
}
});
onBackInvokedDispatcher = getOnBackInvokedDispatcher();
onBackInvokedDispatcher.registerOnBackInvokedCallback(0, this.f);
}
a();
b();
tb tbVar2 = parentInterstitialWrapper;
if (tbVar2 != null) {
p9.a(tbVar2.f(), parentInterstitialWrapper.b(), parentInterstitialWrapper.c(), parentInterstitialWrapper.d(), parentInterstitialWrapper.h(), this.a, this, new a());
return;
}
Intent intent = new Intent(this, (Class<?>) FullscreenAdService.class);
com.applovin.impl.adview.activity.a aVar = new com.applovin.impl.adview.activity.a(this, this.a);
this.d = aVar;
bindService(intent, aVar, 1);
if (z3.j()) {
String str = this.a.g0().getExtraParameters().get("disable_set_data_dir_suffix");
if (StringUtils.isValidString(str) && Boolean.parseBoolean(str)) {
return;
}
try {
WebView.setDataDirectorySuffix(String.valueOf(Process.myPid()));
} catch (Throwable unused) {
}
}
}
@Override // android.app.Activity
public void onDestroy() {
j jVar = this.a;
if (jVar != null && ((Boolean) jVar.a(sj.u2)).booleanValue()) {
this.a.i0().b(uj.L);
this.a.i0().b(uj.N);
this.a.i0().b(uj.O);
}
if (this.h != null) {
this.a.i0().b(uj.M);
this.h.a();
this.h = null;
}
com.applovin.impl.adview.activity.a aVar = this.d;
if (aVar != null) {
try {
unbindService(aVar);
} catch (Throwable unused) {
}
}
p9 p9Var = this.b;
if (p9Var != null) {
if (!p9Var.j()) {
this.b.f();
}
this.b.t();
}
parentInterstitialWrapper = null;
super.onDestroy();
}
@Override // android.app.Activity
public void onPause() {
super.onPause();
p9 p9Var = this.b;
if (p9Var != null) {
p9Var.u();
}
}
@Override // android.app.Activity
public void onResume() {
p9 p9Var;
try {
super.onResume();
if (this.c.get() || (p9Var = this.b) == null) {
return;
}
p9Var.v();
} catch (IllegalArgumentException e) {
this.a.J();
if (n.a()) {
this.a.J().a("AppLovinFullscreenActivity", "Error was encountered in onResume().", e);
}
this.a.E().a("AppLovinFullscreenActivity", v8.h.u0, e);
dismiss();
}
}
@Override // android.app.Activity
public void onStop() {
super.onStop();
p9 p9Var = this.b;
if (p9Var != null) {
p9Var.w();
}
}
public void setPresenter(@Nullable p9 p9Var) {
this.b = p9Var;
}
/* JADX INFO: Access modifiers changed from: private */
public void c() {
p9 p9Var = this.b;
if (p9Var != null) {
p9Var.s();
}
if (yp.e(getApplicationContext())) {
super.onBackPressed();
}
}
@Override // android.app.Activity, android.view.KeyEvent.Callback
public boolean onKeyDown(int i, KeyEvent keyEvent) {
p9 p9Var = this.b;
if (p9Var != null) {
p9Var.a(i, keyEvent);
}
return super.onKeyDown(i, keyEvent);
}
@Override // android.app.Activity, android.view.Window.Callback
public void onWindowFocusChanged(boolean z) {
if (this.b != null) {
if (!this.c.getAndSet(false) || (this.b instanceof u9)) {
this.b.b(z);
}
if (z) {
r.a(this.g, this);
}
}
super.onWindowFocusChanged(z);
}
private void a() {
tb tbVar;
j jVar = this.a;
if (jVar == null || !((Boolean) jVar.a(sj.u2)).booleanValue() || (tbVar = parentInterstitialWrapper) == null || tbVar.f() == null) {
return;
}
com.applovin.impl.sdk.ad.b f = parentInterstitialWrapper.f();
List f2 = f.f();
if (CollectionUtils.isEmpty(f2)) {
return;
}
s sVar = (s) f2.get(0);
JSONObject jSONObject = new JSONObject();
JsonUtils.putStringIfValid(jSONObject, "app_killed_postback_url", sVar.c());
JsonUtils.putStringIfValid(jSONObject, "app_killed_postback_backup_url", sVar.a());
this.a.i0().b(uj.N, jSONObject.toString());
this.a.i0().b(uj.L, Long.valueOf(System.currentTimeMillis()));
this.a.i0().b(uj.O, CollectionUtils.toJsonString(ma.a(f), JsonUtils.EMPTY_JSON));
}
/* JADX INFO: Access modifiers changed from: private */
public /* synthetic */ void a(Long l) {
this.i += l.longValue();
this.a.i0().b(uj.M, Long.valueOf(this.i));
}
public class a implements p9.d {
public a() {
}
@Override // com.applovin.impl.p9.d
public void a(p9 p9Var) {
AppLovinFullscreenActivity.this.b = p9Var;
p9Var.y();
}
@Override // com.applovin.impl.p9.d
public void a(String str, Throwable th) {
tb.a(AppLovinFullscreenActivity.parentInterstitialWrapper.f(), AppLovinFullscreenActivity.parentInterstitialWrapper.c(), str, th, AppLovinFullscreenActivity.this);
}
}
}

View File

@@ -0,0 +1,69 @@
package com.applovin.adview;
import androidx.lifecycle.Lifecycle;
import androidx.lifecycle.LifecycleObserver;
import androidx.lifecycle.OnLifecycleEvent;
import com.applovin.impl.p9;
import com.applovin.impl.sdk.j;
import com.applovin.impl.tb;
import java.util.concurrent.atomic.AtomicBoolean;
/* loaded from: classes.dex */
public class AppLovinFullscreenAdViewObserver implements LifecycleObserver {
private final j a;
private final AtomicBoolean b = new AtomicBoolean(true);
private p9 c;
private tb d;
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
public void onResume() {
p9 p9Var;
if (this.b.getAndSet(false) || (p9Var = this.c) == null) {
return;
}
p9Var.v();
this.c.a(0L);
}
public void setPresenter(p9 p9Var) {
this.c = p9Var;
}
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroy() {
tb tbVar = this.d;
if (tbVar != null) {
tbVar.a();
this.d = null;
}
p9 p9Var = this.c;
if (p9Var != null) {
p9Var.f();
this.c.t();
this.c = null;
}
}
@OnLifecycleEvent(Lifecycle.Event.ON_PAUSE)
public void onPause() {
p9 p9Var = this.c;
if (p9Var != null) {
p9Var.u();
this.c.x();
}
}
@OnLifecycleEvent(Lifecycle.Event.ON_STOP)
public void onStop() {
p9 p9Var = this.c;
if (p9Var != null) {
p9Var.w();
}
}
public AppLovinFullscreenAdViewObserver(Lifecycle lifecycle, tb tbVar, j jVar) {
this.d = tbVar;
this.a = jVar;
lifecycle.addObserver(this);
}
}

View File

@@ -0,0 +1,107 @@
package com.applovin.adview;
import android.content.Context;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.lifecycle.Lifecycle;
import com.applovin.impl.jb;
import com.applovin.impl.sdk.n;
import com.applovin.sdk.AppLovinAd;
import com.applovin.sdk.AppLovinAdClickListener;
import com.applovin.sdk.AppLovinAdDisplayListener;
import com.applovin.sdk.AppLovinAdLoadListener;
import com.applovin.sdk.AppLovinAdRewardListener;
import com.applovin.sdk.AppLovinAdVideoPlaybackListener;
import com.applovin.sdk.AppLovinSdk;
/* loaded from: classes.dex */
public class AppLovinIncentivizedInterstitial {
private final jb a;
public AppLovinIncentivizedInterstitial(Context context) {
this(AppLovinSdk.getInstance(context));
}
public static AppLovinIncentivizedInterstitial create(Context context) {
return create(AppLovinSdk.getInstance(context));
}
public jb createIncentivizedAdController(String str, AppLovinSdk appLovinSdk) {
return new jb(str, appLovinSdk);
}
public String getZoneId() {
return this.a.c();
}
public boolean isAdReadyToDisplay() {
return this.a.d();
}
public void preload(AppLovinAdLoadListener appLovinAdLoadListener) {
if (appLovinAdLoadListener == null) {
n.i("AppLovinIncentivizedInterstitial", "AppLovinAdLoadListener was null when preloading incentivized interstitials; using a listener is highly recommended.");
}
this.a.b(appLovinAdLoadListener);
}
public void setExtraInfo(@NonNull String str, @Nullable Object obj) {
if (str == null) {
throw new IllegalArgumentException("No key specified");
}
this.a.a(str, obj);
}
public void show(Context context) {
show(context, null, null);
}
public String toString() {
return "AppLovinIncentivizedInterstitial{zoneId='" + getZoneId() + "', isAdReadyToDisplay=" + isAdReadyToDisplay() + '}';
}
public AppLovinIncentivizedInterstitial(AppLovinSdk appLovinSdk) {
this(null, appLovinSdk);
}
public static AppLovinIncentivizedInterstitial create(AppLovinSdk appLovinSdk) {
return create(null, appLovinSdk);
}
public void show(Context context, AppLovinAdRewardListener appLovinAdRewardListener) {
show(context, appLovinAdRewardListener, null);
}
public AppLovinIncentivizedInterstitial(String str, AppLovinSdk appLovinSdk) {
if (appLovinSdk != null) {
this.a = createIncentivizedAdController(str, appLovinSdk);
return;
}
throw new IllegalArgumentException("No sdk specified");
}
public static AppLovinIncentivizedInterstitial create(String str, AppLovinSdk appLovinSdk) {
return new AppLovinIncentivizedInterstitial(str, appLovinSdk);
}
public void show(Context context, AppLovinAdRewardListener appLovinAdRewardListener, AppLovinAdVideoPlaybackListener appLovinAdVideoPlaybackListener) {
show(context, appLovinAdRewardListener, appLovinAdVideoPlaybackListener, null);
}
public void show(Context context, AppLovinAdRewardListener appLovinAdRewardListener, AppLovinAdVideoPlaybackListener appLovinAdVideoPlaybackListener, AppLovinAdDisplayListener appLovinAdDisplayListener) {
show(context, appLovinAdRewardListener, appLovinAdVideoPlaybackListener, appLovinAdDisplayListener, null);
}
public void show(Context context, AppLovinAdRewardListener appLovinAdRewardListener, AppLovinAdVideoPlaybackListener appLovinAdVideoPlaybackListener, AppLovinAdDisplayListener appLovinAdDisplayListener, AppLovinAdClickListener appLovinAdClickListener) {
show(null, context, appLovinAdRewardListener, appLovinAdVideoPlaybackListener, appLovinAdDisplayListener, appLovinAdClickListener);
}
public void show(AppLovinAd appLovinAd, Context context, AppLovinAdRewardListener appLovinAdRewardListener, AppLovinAdVideoPlaybackListener appLovinAdVideoPlaybackListener, AppLovinAdDisplayListener appLovinAdDisplayListener, AppLovinAdClickListener appLovinAdClickListener) {
this.a.a(appLovinAd, context, null, appLovinAdRewardListener, appLovinAdVideoPlaybackListener, appLovinAdDisplayListener, appLovinAdClickListener);
}
public void show(AppLovinAd appLovinAd, ViewGroup viewGroup, Lifecycle lifecycle, Context context, AppLovinAdRewardListener appLovinAdRewardListener, AppLovinAdVideoPlaybackListener appLovinAdVideoPlaybackListener, AppLovinAdDisplayListener appLovinAdDisplayListener, AppLovinAdClickListener appLovinAdClickListener) {
this.a.b(appLovinAd, viewGroup, lifecycle, context, appLovinAdRewardListener, appLovinAdVideoPlaybackListener, appLovinAdDisplayListener, appLovinAdClickListener);
}
}

View File

@@ -0,0 +1,22 @@
package com.applovin.adview;
import android.content.Context;
import com.applovin.impl.tb;
import com.applovin.sdk.AppLovinSdk;
/* loaded from: classes.dex */
public class AppLovinInterstitialAd {
public static AppLovinInterstitialAdDialog create(AppLovinSdk appLovinSdk, Context context) {
if (appLovinSdk == null) {
throw new IllegalArgumentException("No sdk specified");
}
if (context != null) {
return new tb(appLovinSdk, context);
}
throw new IllegalArgumentException("No context specified");
}
public String toString() {
return "AppLovinInterstitialAd{}";
}
}

View File

@@ -0,0 +1,30 @@
package com.applovin.adview;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.lifecycle.Lifecycle;
import com.applovin.sdk.AppLovinAd;
import com.applovin.sdk.AppLovinAdClickListener;
import com.applovin.sdk.AppLovinAdDisplayListener;
import com.applovin.sdk.AppLovinAdLoadListener;
import com.applovin.sdk.AppLovinAdVideoPlaybackListener;
/* loaded from: classes.dex */
public interface AppLovinInterstitialAdDialog {
void setAdClickListener(AppLovinAdClickListener appLovinAdClickListener);
void setAdDisplayListener(AppLovinAdDisplayListener appLovinAdDisplayListener);
void setAdLoadListener(AppLovinAdLoadListener appLovinAdLoadListener);
void setAdVideoPlaybackListener(AppLovinAdVideoPlaybackListener appLovinAdVideoPlaybackListener);
void setExtraInfo(@NonNull String str, @Nullable Object obj);
void show();
void showAndRender(AppLovinAd appLovinAd);
void showAndRender(AppLovinAd appLovinAd, ViewGroup viewGroup, Lifecycle lifecycle);
}