Files
rr3-apk/decompiled-community/sources/com/unity3d/ads/adplayer/AndroidShowOptions.java
Daniel Elliott c080f0d97f 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
2026-02-18 15:48:36 -08:00

71 lines
2.3 KiB
Java

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