- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
34 lines
772 B
Java
34 lines
772 B
Java
package com.vungle.ads;
|
|
|
|
import com.vungle.ads.internal.protos.Sdk;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public enum BannerAdSize {
|
|
VUNGLE_MREC("mrec", 300, 250),
|
|
BANNER("banner", Sdk.SDKError.Reason.WEBVIEW_ERROR_VALUE, 50),
|
|
BANNER_SHORT("banner_short", 300, 50),
|
|
BANNER_LEADERBOARD("banner_leaderboard", 728, 90);
|
|
|
|
private final int height;
|
|
private final String sizeName;
|
|
private final int width;
|
|
|
|
public final int getHeight() {
|
|
return this.height;
|
|
}
|
|
|
|
public final String getSizeName() {
|
|
return this.sizeName;
|
|
}
|
|
|
|
public final int getWidth() {
|
|
return this.width;
|
|
}
|
|
|
|
BannerAdSize(String str, int i, int i2) {
|
|
this.sizeName = str;
|
|
this.width = i;
|
|
this.height = i2;
|
|
}
|
|
}
|