- 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
73 lines
2.1 KiB
Java
73 lines
2.1 KiB
Java
package com.unity3d.mediation.interstitial;
|
|
|
|
import android.app.Activity;
|
|
import com.ironsource.ck;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class LevelPlayInterstitialAd {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final String a;
|
|
private final ck b;
|
|
|
|
public static final class Companion {
|
|
private Companion() {
|
|
}
|
|
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
public final boolean isPlacementCapped(String placementName) {
|
|
Intrinsics.checkNotNullParameter(placementName, "placementName");
|
|
return ck.j.a(placementName);
|
|
}
|
|
}
|
|
|
|
public LevelPlayInterstitialAd(String adUnitId) {
|
|
Intrinsics.checkNotNullParameter(adUnitId, "adUnitId");
|
|
this.a = adUnitId;
|
|
ck a = ck.b.a();
|
|
this.b = a;
|
|
a.a(adUnitId);
|
|
}
|
|
|
|
public static final boolean isPlacementCapped(String str) {
|
|
return Companion.isPlacementCapped(str);
|
|
}
|
|
|
|
public static /* synthetic */ void showAd$default(LevelPlayInterstitialAd levelPlayInterstitialAd, Activity activity, String str, int i, Object obj) {
|
|
if ((i & 2) != 0) {
|
|
str = null;
|
|
}
|
|
levelPlayInterstitialAd.showAd(activity, str);
|
|
}
|
|
|
|
public final String getAdUnitId() {
|
|
return this.a;
|
|
}
|
|
|
|
public final boolean isAdReady() {
|
|
return this.b.h();
|
|
}
|
|
|
|
public final void loadAd() {
|
|
this.b.i();
|
|
}
|
|
|
|
public final void setListener(LevelPlayInterstitialAdListener levelPlayInterstitialAdListener) {
|
|
this.b.a(levelPlayInterstitialAdListener);
|
|
}
|
|
|
|
public final void showAd(Activity activity) {
|
|
Intrinsics.checkNotNullParameter(activity, "activity");
|
|
showAd$default(this, activity, null, 2, null);
|
|
}
|
|
|
|
public final void showAd(Activity activity, String str) {
|
|
Intrinsics.checkNotNullParameter(activity, "activity");
|
|
this.b.a(activity, str);
|
|
}
|
|
}
|