- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
77 lines
1.9 KiB
Java
77 lines
1.9 KiB
Java
package com.unity3d.ironsourceads;
|
|
|
|
import com.ironsource.mediationsdk.l;
|
|
import com.vungle.ads.internal.protos.Sdk;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class AdSize {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final int a;
|
|
private final int b;
|
|
private final String c;
|
|
|
|
public static final class Companion {
|
|
private Companion() {
|
|
}
|
|
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
public final AdSize banner() {
|
|
return new AdSize(Sdk.SDKError.Reason.WEBVIEW_ERROR_VALUE, 50, l.a, null);
|
|
}
|
|
|
|
public final AdSize large() {
|
|
return new AdSize(Sdk.SDKError.Reason.WEBVIEW_ERROR_VALUE, 90, l.b, null);
|
|
}
|
|
|
|
public final AdSize leaderboard() {
|
|
return new AdSize(728, 90, l.d, null);
|
|
}
|
|
|
|
public final AdSize mediumRectangle() {
|
|
return new AdSize(300, 250, l.g, null);
|
|
}
|
|
}
|
|
|
|
private AdSize(int i, int i2, String str) {
|
|
this.a = i;
|
|
this.b = i2;
|
|
this.c = str;
|
|
}
|
|
|
|
public /* synthetic */ AdSize(int i, int i2, String str, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(i, i2, str);
|
|
}
|
|
|
|
public static final AdSize banner() {
|
|
return Companion.banner();
|
|
}
|
|
|
|
public static final AdSize large() {
|
|
return Companion.large();
|
|
}
|
|
|
|
public static final AdSize leaderboard() {
|
|
return Companion.leaderboard();
|
|
}
|
|
|
|
public static final AdSize mediumRectangle() {
|
|
return Companion.mediumRectangle();
|
|
}
|
|
|
|
public final int getHeight() {
|
|
return this.b;
|
|
}
|
|
|
|
public final String getSizeDescription() {
|
|
return this.c;
|
|
}
|
|
|
|
public final int getWidth() {
|
|
return this.a;
|
|
}
|
|
}
|