- 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
128 lines
4.1 KiB
Java
128 lines
4.1 KiB
Java
package com.vungle.ads.internal.model;
|
|
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlinx.serialization.KSerializer;
|
|
import kotlinx.serialization.SerialName;
|
|
import kotlinx.serialization.Serializable;
|
|
import kotlinx.serialization.descriptors.SerialDescriptor;
|
|
import kotlinx.serialization.encoding.CompositeEncoder;
|
|
import kotlinx.serialization.internal.PluginExceptionsKt;
|
|
import kotlinx.serialization.internal.SerializationConstructorMarker;
|
|
|
|
@Serializable
|
|
/* loaded from: classes4.dex */
|
|
public final class AppNode {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final String appId;
|
|
private final String bundle;
|
|
private final String ver;
|
|
|
|
public static /* synthetic */ AppNode copy$default(AppNode appNode, String str, String str2, String str3, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = appNode.bundle;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
str2 = appNode.ver;
|
|
}
|
|
if ((i & 4) != 0) {
|
|
str3 = appNode.appId;
|
|
}
|
|
return appNode.copy(str, str2, str3);
|
|
}
|
|
|
|
@SerialName("id")
|
|
public static /* synthetic */ void getAppId$annotations() {
|
|
}
|
|
|
|
public final String component1() {
|
|
return this.bundle;
|
|
}
|
|
|
|
public final String component2() {
|
|
return this.ver;
|
|
}
|
|
|
|
public final String component3() {
|
|
return this.appId;
|
|
}
|
|
|
|
public final AppNode copy(String bundle, String ver, String appId) {
|
|
Intrinsics.checkNotNullParameter(bundle, "bundle");
|
|
Intrinsics.checkNotNullParameter(ver, "ver");
|
|
Intrinsics.checkNotNullParameter(appId, "appId");
|
|
return new AppNode(bundle, ver, appId);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof AppNode)) {
|
|
return false;
|
|
}
|
|
AppNode appNode = (AppNode) obj;
|
|
return Intrinsics.areEqual(this.bundle, appNode.bundle) && Intrinsics.areEqual(this.ver, appNode.ver) && Intrinsics.areEqual(this.appId, appNode.appId);
|
|
}
|
|
|
|
public final String getAppId() {
|
|
return this.appId;
|
|
}
|
|
|
|
public final String getBundle() {
|
|
return this.bundle;
|
|
}
|
|
|
|
public final String getVer() {
|
|
return this.ver;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (((this.bundle.hashCode() * 31) + this.ver.hashCode()) * 31) + this.appId.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "AppNode(bundle=" + this.bundle + ", ver=" + this.ver + ", appId=" + this.appId + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<AppNode> serializer() {
|
|
return AppNode$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ AppNode(int i, String str, String str2, @SerialName("id") String str3, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if (7 != (i & 7)) {
|
|
PluginExceptionsKt.throwMissingFieldException(i, 7, AppNode$$serializer.INSTANCE.getDescriptor());
|
|
}
|
|
this.bundle = str;
|
|
this.ver = str2;
|
|
this.appId = str3;
|
|
}
|
|
|
|
public AppNode(String bundle, String ver, String appId) {
|
|
Intrinsics.checkNotNullParameter(bundle, "bundle");
|
|
Intrinsics.checkNotNullParameter(ver, "ver");
|
|
Intrinsics.checkNotNullParameter(appId, "appId");
|
|
this.bundle = bundle;
|
|
this.ver = ver;
|
|
this.appId = appId;
|
|
}
|
|
|
|
public static final void write$Self(AppNode self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
output.encodeStringElement(serialDesc, 0, self.bundle);
|
|
output.encodeStringElement(serialDesc, 1, self.ver);
|
|
output.encodeStringElement(serialDesc, 2, self.appId);
|
|
}
|
|
}
|