- 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
73 lines
2.6 KiB
Java
73 lines
2.6 KiB
Java
package com.unity3d.mediation;
|
|
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class LevelPlayAdError {
|
|
public static final a Companion = new a(null);
|
|
public static final int ERROR_CODE_INVALID_AD_UNIT_ID = 626;
|
|
public static final int ERROR_CODE_IS_LOAD_FAILED_ALREADY_CALLED = 627;
|
|
public static final int ERROR_CODE_LOAD_BEFORE_INIT_SUCCESS_CALLBACK = 625;
|
|
public static final int ERROR_CODE_LOAD_WHILE_SHOW = 629;
|
|
public static final int ERROR_CODE_NO_AD_UNIT_ID_SPECIFIED = 624;
|
|
public static final int ERROR_CODE_SHOW_BEFORE_LOAD_SUCCESS_CALLBACK = 628;
|
|
public static final int ERROR_CODE_SHOW_WHILE_SHOW = 630;
|
|
private final IronSourceError a;
|
|
private final String b;
|
|
|
|
public static final class a {
|
|
private a() {
|
|
}
|
|
|
|
public /* synthetic */ a(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
}
|
|
|
|
public LevelPlayAdError(IronSourceError ironSourceError, String str) {
|
|
this.a = ironSourceError;
|
|
this.b = str;
|
|
}
|
|
|
|
public /* synthetic */ LevelPlayAdError(IronSourceError ironSourceError, String str, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(ironSourceError, (i & 2) != 0 ? null : str);
|
|
}
|
|
|
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
|
public LevelPlayAdError(String adUnitId, int i, String errorMessage) {
|
|
this(new IronSourceError(i, errorMessage), adUnitId);
|
|
Intrinsics.checkNotNullParameter(adUnitId, "adUnitId");
|
|
Intrinsics.checkNotNullParameter(errorMessage, "errorMessage");
|
|
}
|
|
|
|
public final String getAdUnitId() {
|
|
return this.b;
|
|
}
|
|
|
|
public final int getErrorCode() {
|
|
IronSourceError ironSourceError = this.a;
|
|
if (ironSourceError != null) {
|
|
return ironSourceError.getErrorCode();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
public final String getErrorMessage() {
|
|
IronSourceError ironSourceError = this.a;
|
|
String errorMessage = ironSourceError != null ? ironSourceError.getErrorMessage() : null;
|
|
return errorMessage == null ? "" : errorMessage;
|
|
}
|
|
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("adUnitId: ");
|
|
sb.append(this.b);
|
|
sb.append(' ');
|
|
IronSourceError ironSourceError = this.a;
|
|
sb.append(ironSourceError != null ? ironSourceError.toString() : null);
|
|
return sb.toString();
|
|
}
|
|
}
|