- 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
129 lines
4.6 KiB
Java
129 lines
4.6 KiB
Java
package com.unity3d.ads.adplayer;
|
|
|
|
import android.webkit.WebView;
|
|
import java.util.Map;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public abstract class DisplayMessage {
|
|
private final String opportunityId;
|
|
|
|
public /* synthetic */ DisplayMessage(String str, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(str);
|
|
}
|
|
|
|
public final String getOpportunityId() {
|
|
return this.opportunityId;
|
|
}
|
|
|
|
private DisplayMessage(String str) {
|
|
this.opportunityId = str;
|
|
}
|
|
|
|
public static final class DisplayReady extends DisplayMessage {
|
|
private final Map<String, Object> showOptions;
|
|
|
|
public final Map<String, Object> getShowOptions() {
|
|
return this.showOptions;
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public DisplayReady(String opportunityId, Map<String, ? extends Object> map) {
|
|
super(opportunityId, null);
|
|
Intrinsics.checkNotNullParameter(opportunityId, "opportunityId");
|
|
this.showOptions = map;
|
|
}
|
|
|
|
public /* synthetic */ DisplayReady(String str, Map map, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(str, (i & 2) != 0 ? null : map);
|
|
}
|
|
}
|
|
|
|
public static final class WebViewInstanceRequest extends DisplayMessage {
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public WebViewInstanceRequest(String opportunityId) {
|
|
super(opportunityId, null);
|
|
Intrinsics.checkNotNullParameter(opportunityId, "opportunityId");
|
|
}
|
|
}
|
|
|
|
public static final class VisibilityChanged extends DisplayMessage {
|
|
private final boolean isVisible;
|
|
|
|
public final boolean isVisible() {
|
|
return this.isVisible;
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public VisibilityChanged(String opportunityId, boolean z) {
|
|
super(opportunityId, null);
|
|
Intrinsics.checkNotNullParameter(opportunityId, "opportunityId");
|
|
this.isVisible = z;
|
|
}
|
|
}
|
|
|
|
public static final class FocusChanged extends DisplayMessage {
|
|
private final boolean isFocused;
|
|
|
|
public final boolean isFocused() {
|
|
return this.isFocused;
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public FocusChanged(String opportunityId, boolean z) {
|
|
super(opportunityId, null);
|
|
Intrinsics.checkNotNullParameter(opportunityId, "opportunityId");
|
|
this.isFocused = z;
|
|
}
|
|
}
|
|
|
|
public static final class DisplayDestroyed extends DisplayMessage {
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public DisplayDestroyed(String opportunityId) {
|
|
super(opportunityId, null);
|
|
Intrinsics.checkNotNullParameter(opportunityId, "opportunityId");
|
|
}
|
|
}
|
|
|
|
public static final class DisplayError extends DisplayMessage {
|
|
private final String reason;
|
|
|
|
public final String getReason() {
|
|
return this.reason;
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public DisplayError(String opportunityId, String reason) {
|
|
super(opportunityId, null);
|
|
Intrinsics.checkNotNullParameter(opportunityId, "opportunityId");
|
|
Intrinsics.checkNotNullParameter(reason, "reason");
|
|
this.reason = reason;
|
|
}
|
|
}
|
|
|
|
public static final class WebViewInstanceResponse extends DisplayMessage {
|
|
private final WebView webView;
|
|
|
|
public final WebView getWebView() {
|
|
return this.webView;
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public WebViewInstanceResponse(String opportunityId, WebView webView) {
|
|
super(opportunityId, null);
|
|
Intrinsics.checkNotNullParameter(opportunityId, "opportunityId");
|
|
Intrinsics.checkNotNullParameter(webView, "webView");
|
|
this.webView = webView;
|
|
}
|
|
}
|
|
|
|
public static final class DisplayFinishRequest extends DisplayMessage {
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public DisplayFinishRequest(String opportunityId) {
|
|
super(opportunityId, null);
|
|
Intrinsics.checkNotNullParameter(opportunityId, "opportunityId");
|
|
}
|
|
}
|
|
}
|