Files
rr3-apk/decompiled/sources/com/vungle/ads/InterstitialAd.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

27 lines
1.1 KiB
Java

package com.vungle.ads;
import android.content.Context;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class InterstitialAd extends BaseFullscreenAd {
public /* synthetic */ InterstitialAd(Context context, String str, AdConfig adConfig, int i, DefaultConstructorMarker defaultConstructorMarker) {
this(context, str, (i & 4) != 0 ? new AdConfig() : adConfig);
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public InterstitialAd(Context context, String placementId, AdConfig adConfig) {
super(context, placementId, adConfig);
Intrinsics.checkNotNullParameter(context, "context");
Intrinsics.checkNotNullParameter(placementId, "placementId");
Intrinsics.checkNotNullParameter(adConfig, "adConfig");
}
@Override // com.vungle.ads.BaseAd
public InterstitialAdInternal constructAdInternal$vungle_ads_release(Context context) {
Intrinsics.checkNotNullParameter(context, "context");
return new InterstitialAdInternal(context);
}
}