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,70 @@
package com.unity3d.ads.adplayer;
import android.content.Context;
import java.util.Map;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class AndroidShowOptions implements ShowOptions {
private final Context context;
private final Map<String, Object> unityAdsShowOptions;
/* JADX WARN: Multi-variable type inference failed */
public static /* synthetic */ AndroidShowOptions copy$default(AndroidShowOptions androidShowOptions, Context context, Map map, int i, Object obj) {
if ((i & 1) != 0) {
context = androidShowOptions.context;
}
if ((i & 2) != 0) {
map = androidShowOptions.unityAdsShowOptions;
}
return androidShowOptions.copy(context, map);
}
public final Context component1() {
return this.context;
}
public final Map<String, Object> component2() {
return this.unityAdsShowOptions;
}
public final AndroidShowOptions copy(Context context, Map<String, ? extends Object> map) {
Intrinsics.checkNotNullParameter(context, "context");
return new AndroidShowOptions(context, map);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof AndroidShowOptions)) {
return false;
}
AndroidShowOptions androidShowOptions = (AndroidShowOptions) obj;
return Intrinsics.areEqual(this.context, androidShowOptions.context) && Intrinsics.areEqual(this.unityAdsShowOptions, androidShowOptions.unityAdsShowOptions);
}
public final Context getContext() {
return this.context;
}
public final Map<String, Object> getUnityAdsShowOptions() {
return this.unityAdsShowOptions;
}
public int hashCode() {
int hashCode = this.context.hashCode() * 31;
Map<String, Object> map = this.unityAdsShowOptions;
return hashCode + (map == null ? 0 : map.hashCode());
}
public String toString() {
return "AndroidShowOptions(context=" + this.context + ", unityAdsShowOptions=" + this.unityAdsShowOptions + ')';
}
public AndroidShowOptions(Context context, Map<String, ? extends Object> map) {
Intrinsics.checkNotNullParameter(context, "context");
this.context = context;
this.unityAdsShowOptions = map;
}
}