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,52 @@
package com.iab.omid.library.unity3d.adsession;
import com.iab.omid.library.unity3d.utils.c;
import com.iab.omid.library.unity3d.utils.g;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public class AdSessionConfiguration {
private final CreativeType creativeType;
private final Owner impressionOwner;
private final ImpressionType impressionType;
private final boolean isolateVerificationScripts;
private final Owner mediaEventsOwner;
private AdSessionConfiguration(CreativeType creativeType, ImpressionType impressionType, Owner owner, Owner owner2, boolean z) {
this.creativeType = creativeType;
this.impressionType = impressionType;
this.impressionOwner = owner;
if (owner2 == null) {
this.mediaEventsOwner = Owner.NONE;
} else {
this.mediaEventsOwner = owner2;
}
this.isolateVerificationScripts = z;
}
public static AdSessionConfiguration createAdSessionConfiguration(CreativeType creativeType, ImpressionType impressionType, Owner owner, Owner owner2, boolean z) {
g.a(creativeType, "CreativeType is null");
g.a(impressionType, "ImpressionType is null");
g.a(owner, "Impression owner is null");
g.a(owner, creativeType, impressionType);
return new AdSessionConfiguration(creativeType, impressionType, owner, owner2, z);
}
public boolean isNativeImpressionOwner() {
return Owner.NATIVE == this.impressionOwner;
}
public boolean isNativeMediaEventsOwner() {
return Owner.NATIVE == this.mediaEventsOwner;
}
public JSONObject toJsonObject() {
JSONObject jSONObject = new JSONObject();
c.a(jSONObject, "impressionOwner", this.impressionOwner);
c.a(jSONObject, "mediaEventsOwner", this.mediaEventsOwner);
c.a(jSONObject, "creativeType", this.creativeType);
c.a(jSONObject, "impressionType", this.impressionType);
c.a(jSONObject, "isolateVerificationScripts", Boolean.valueOf(this.isolateVerificationScripts));
return jSONObject;
}
}