Files
rr3-apk/decompiled/sources/com/unity3d/ads/adplayer/AndroidFullscreenWebViewAdPlayer$displayEventsRouter$1.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

107 lines
5.6 KiB
Java

package com.unity3d.ads.adplayer;
import com.unity3d.ads.adplayer.DisplayMessage;
import java.util.Map;
import kotlin.ResultKt;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsKt;
import kotlin.coroutines.jvm.internal.DebugMetadata;
import kotlin.coroutines.jvm.internal.SuspendLambda;
import kotlin.jvm.functions.Function2;
import kotlinx.coroutines.CoroutineScope;
import kotlinx.coroutines.flow.MutableSharedFlow;
@DebugMetadata(c = "com.unity3d.ads.adplayer.AndroidFullscreenWebViewAdPlayer$displayEventsRouter$1", f = "AndroidFullscreenWebViewAdPlayer.kt", l = {114, 115, 116, 117, 118, 120}, m = "invokeSuspend")
/* loaded from: classes4.dex */
public final class AndroidFullscreenWebViewAdPlayer$displayEventsRouter$1 extends SuspendLambda implements Function2 {
final /* synthetic */ DisplayMessage $displayMessage;
int label;
final /* synthetic */ AndroidFullscreenWebViewAdPlayer this$0;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public AndroidFullscreenWebViewAdPlayer$displayEventsRouter$1(DisplayMessage displayMessage, AndroidFullscreenWebViewAdPlayer androidFullscreenWebViewAdPlayer, Continuation continuation) {
super(2, continuation);
this.$displayMessage = displayMessage;
this.this$0 = androidFullscreenWebViewAdPlayer;
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Continuation create(Object obj, Continuation continuation) {
return new AndroidFullscreenWebViewAdPlayer$displayEventsRouter$1(this.$displayMessage, this.this$0, continuation);
}
@Override // kotlin.jvm.functions.Function2
public final Object invoke(CoroutineScope coroutineScope, Continuation continuation) {
return ((AndroidFullscreenWebViewAdPlayer$displayEventsRouter$1) create(coroutineScope, continuation)).invokeSuspend(Unit.INSTANCE);
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Object invokeSuspend(Object obj) {
Object coroutine_suspended;
WebViewAdPlayer webViewAdPlayer;
WebViewAdPlayer webViewAdPlayer2;
WebViewAdPlayer webViewAdPlayer3;
WebViewAdPlayer webViewAdPlayer4;
coroutine_suspended = IntrinsicsKt__IntrinsicsKt.getCOROUTINE_SUSPENDED();
switch (this.label) {
case 0:
ResultKt.throwOnFailure(obj);
DisplayMessage displayMessage = this.$displayMessage;
if (displayMessage instanceof DisplayMessage.DisplayReady) {
webViewAdPlayer4 = this.this$0.webViewAdPlayer;
Map<String, Object> showOptions = ((DisplayMessage.DisplayReady) this.$displayMessage).getShowOptions();
this.label = 1;
if (webViewAdPlayer4.requestShow(showOptions, this) == coroutine_suspended) {
return coroutine_suspended;
}
} else if (displayMessage instanceof DisplayMessage.WebViewInstanceRequest) {
MutableSharedFlow displayMessages = AndroidFullscreenWebViewAdPlayer.Companion.getDisplayMessages();
DisplayMessage.WebViewInstanceResponse webViewInstanceResponse = new DisplayMessage.WebViewInstanceResponse(this.$displayMessage.getOpportunityId(), this.this$0.getWebViewContainer().getWebView());
this.label = 2;
if (displayMessages.emit(webViewInstanceResponse, this) == coroutine_suspended) {
return coroutine_suspended;
}
} else if (displayMessage instanceof DisplayMessage.VisibilityChanged) {
webViewAdPlayer3 = this.this$0.webViewAdPlayer;
boolean isVisible = ((DisplayMessage.VisibilityChanged) this.$displayMessage).isVisible();
this.label = 3;
if (webViewAdPlayer3.sendVisibilityChange(isVisible, this) == coroutine_suspended) {
return coroutine_suspended;
}
} else if (displayMessage instanceof DisplayMessage.FocusChanged) {
webViewAdPlayer2 = this.this$0.webViewAdPlayer;
boolean isFocused = ((DisplayMessage.FocusChanged) this.$displayMessage).isFocused();
this.label = 4;
if (webViewAdPlayer2.sendFocusChange(isFocused, this) == coroutine_suspended) {
return coroutine_suspended;
}
} else if (displayMessage instanceof DisplayMessage.DisplayDestroyed) {
webViewAdPlayer = this.this$0.webViewAdPlayer;
this.label = 5;
if (webViewAdPlayer.sendActivityDestroyed(this) == coroutine_suspended) {
return coroutine_suspended;
}
} else if (displayMessage instanceof DisplayMessage.DisplayError) {
AndroidFullscreenWebViewAdPlayer androidFullscreenWebViewAdPlayer = this.this$0;
this.label = 6;
if (androidFullscreenWebViewAdPlayer.destroy(this) == coroutine_suspended) {
return coroutine_suspended;
}
}
break;
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
ResultKt.throwOnFailure(obj);
break;
default:
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
}
return Unit.INSTANCE;
}
}