- 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
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;
|
|
}
|
|
}
|