- 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
68 lines
1.8 KiB
Java
68 lines
1.8 KiB
Java
package com.vungle.ads;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.util.LinkedHashMap;
|
|
import java.util.Map;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class AdConfig {
|
|
public static final int AUTO_ROTATE = 2;
|
|
public static final Companion Companion = new Companion(null);
|
|
public static final int IMMEDIATE_BACK = 2;
|
|
public static final int LANDSCAPE = 1;
|
|
public static final int PORTRAIT = 0;
|
|
private static final String WATERMARK = "WATERMARK";
|
|
private int settings;
|
|
private Map<String, String> extras = new LinkedHashMap();
|
|
private int adOrientation = 2;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface Orientation {
|
|
}
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface Settings {
|
|
}
|
|
|
|
@Orientation
|
|
public static /* synthetic */ void getAdOrientation$annotations() {
|
|
}
|
|
|
|
public final int getAdOrientation() {
|
|
return this.adOrientation;
|
|
}
|
|
|
|
public final int getSettings() {
|
|
return this.settings;
|
|
}
|
|
|
|
public final void setAdOrientation(int i) {
|
|
this.adOrientation = i;
|
|
}
|
|
|
|
public final void setBackButtonImmediatelyEnabled(boolean z) {
|
|
this.settings = z ? this.settings | 2 : this.settings & (-3);
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
}
|
|
|
|
public final void setWatermark(String watermark) {
|
|
Intrinsics.checkNotNullParameter(watermark, "watermark");
|
|
this.extras.put(WATERMARK, watermark);
|
|
}
|
|
|
|
public final String getWatermark$vungle_ads_release() {
|
|
return this.extras.get(WATERMARK);
|
|
}
|
|
}
|