Files
rr3-apk/decompiled-community/sources/com/unity3d/ads/adplayer/EmbeddableAdPlayer.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

28 lines
1.1 KiB
Java

package com.unity3d.ads.adplayer;
import androidx.annotation.CallSuper;
import com.unity3d.ads.adplayer.AdPlayer;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsKt;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public interface EmbeddableAdPlayer extends AdPlayer {
public static final class DefaultImpls {
@CallSuper
public static Object destroy(EmbeddableAdPlayer embeddableAdPlayer, Continuation continuation) {
Object coroutine_suspended;
Object destroy = AdPlayer.DefaultImpls.destroy(embeddableAdPlayer, continuation);
coroutine_suspended = IntrinsicsKt__IntrinsicsKt.getCOROUTINE_SUSPENDED();
return destroy == coroutine_suspended ? destroy : Unit.INSTANCE;
}
public static void show(EmbeddableAdPlayer embeddableAdPlayer, ShowOptions showOptions) {
Intrinsics.checkNotNullParameter(showOptions, "showOptions");
AdPlayer.DefaultImpls.show(embeddableAdPlayer, showOptions);
}
}
}