jimu-decompiled/sources/com/unity3d/ads/webplayer/WebPlayerBridgeInterface.java
2025-05-13 19:24:51 +02:00

16 lines
502 B
Java

package com.unity3d.ads.webplayer;
import android.webkit.JavascriptInterface;
import com.unity3d.ads.webview.WebViewApp;
import com.unity3d.ads.webview.WebViewEventCategory;
/* loaded from: classes2.dex */
public class WebPlayerBridgeInterface {
@JavascriptInterface
public void handleEvent(String str) {
if (WebViewApp.getCurrentApp() != null) {
WebViewApp.getCurrentApp().sendEvent(WebViewEventCategory.WEBPLAYER, WebPlayerEvent.WEBPLAYER_EVENT, str);
}
}
}