Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,90 @@
package com.applovin.mediation.nativeAds.adPlacer;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.applovin.impl.sdk.n;
import java.util.Set;
import java.util.TreeSet;
/* loaded from: classes2.dex */
public class MaxAdPlacerSettings {
public static final int MIN_REPEATING_INTERVAL = 2;
private final String a;
private String b;
private final Set c = new TreeSet();
private int d = 0;
private int e = 256;
private int f = 4;
public MaxAdPlacerSettings(String str) {
this.a = str;
}
public void addFixedPosition(int i) {
this.c.add(Integer.valueOf(i));
}
public String getAdUnitId() {
return this.a;
}
public Set<Integer> getFixedPositions() {
return this.c;
}
public int getMaxAdCount() {
return this.e;
}
public int getMaxPreloadedAdCount() {
return this.f;
}
@Nullable
public String getPlacement() {
return this.b;
}
public int getRepeatingInterval() {
return this.d;
}
public boolean hasValidPositioning() {
return !this.c.isEmpty() || isRepeatingEnabled();
}
public boolean isRepeatingEnabled() {
return this.d >= 2;
}
public void resetFixedPositions() {
this.c.clear();
}
public void setMaxAdCount(int i) {
this.e = i;
}
public void setMaxPreloadedAdCount(int i) {
this.f = i;
}
public void setPlacement(@Nullable String str) {
this.b = str;
}
@NonNull
public String toString() {
return "MaxAdPlacerSettings{adUnitId='" + this.a + "', fixedPositions=" + this.c + ", repeatingInterval=" + this.d + ", maxAdCount=" + this.e + ", maxPreloadedAdCount=" + this.f + '}';
}
public void setRepeatingInterval(int i) {
if (i >= 2) {
this.d = i;
n.g("MaxAdPlacerSettings", "Repeating interval set to " + i);
return;
}
this.d = 0;
n.j("MaxAdPlacerSettings", "Repeating interval has been disabled, since it has been set to " + i + ", which is less than minimum value of 2");
}
}