- 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
38 lines
999 B
Java
38 lines
999 B
Java
package com.unity3d.mediation;
|
|
|
|
import android.content.Context;
|
|
import com.ironsource.nk;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class LevelPlay {
|
|
public static final LevelPlay INSTANCE = new LevelPlay();
|
|
|
|
public enum AdFormat {
|
|
BANNER("banner"),
|
|
INTERSTITIAL("interstitial"),
|
|
REWARDED("rewarded"),
|
|
NATIVE_AD("nativeAd");
|
|
|
|
private final String a;
|
|
|
|
AdFormat(String str) {
|
|
this.a = str;
|
|
}
|
|
|
|
public final String getValue() {
|
|
return this.a;
|
|
}
|
|
}
|
|
|
|
private LevelPlay() {
|
|
}
|
|
|
|
public static final void init(Context context, LevelPlayInitRequest initRequest, LevelPlayInitListener listener) {
|
|
Intrinsics.checkNotNullParameter(context, "context");
|
|
Intrinsics.checkNotNullParameter(initRequest, "initRequest");
|
|
Intrinsics.checkNotNullParameter(listener, "listener");
|
|
nk.a.a(context, initRequest, listener);
|
|
}
|
|
}
|