Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 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;
}
}