- 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
104 lines
4.3 KiB
Java
104 lines
4.3 KiB
Java
package com.vungle.ads.internal.model;
|
|
|
|
import com.tapjoy.TJAdUnitConstants;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlinx.serialization.KSerializer;
|
|
import kotlinx.serialization.UnknownFieldException;
|
|
import kotlinx.serialization.descriptors.SerialDescriptor;
|
|
import kotlinx.serialization.encoding.CompositeDecoder;
|
|
import kotlinx.serialization.encoding.CompositeEncoder;
|
|
import kotlinx.serialization.encoding.Decoder;
|
|
import kotlinx.serialization.encoding.Encoder;
|
|
import kotlinx.serialization.internal.GeneratedSerializer;
|
|
import kotlinx.serialization.internal.PluginGeneratedSerialDescriptor;
|
|
import kotlinx.serialization.internal.StringSerializer;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class AppNode$$serializer implements GeneratedSerializer<AppNode> {
|
|
public static final AppNode$$serializer INSTANCE;
|
|
public static final /* synthetic */ SerialDescriptor descriptor;
|
|
|
|
public SerialDescriptor getDescriptor() {
|
|
return descriptor;
|
|
}
|
|
|
|
static {
|
|
AppNode$$serializer appNode$$serializer = new AppNode$$serializer();
|
|
INSTANCE = appNode$$serializer;
|
|
SerialDescriptor pluginGeneratedSerialDescriptor = new PluginGeneratedSerialDescriptor("com.vungle.ads.internal.model.AppNode", appNode$$serializer, 3);
|
|
pluginGeneratedSerialDescriptor.addElement(TJAdUnitConstants.String.BUNDLE, false);
|
|
pluginGeneratedSerialDescriptor.addElement("ver", false);
|
|
pluginGeneratedSerialDescriptor.addElement("id", false);
|
|
descriptor = pluginGeneratedSerialDescriptor;
|
|
}
|
|
|
|
private AppNode$$serializer() {
|
|
}
|
|
|
|
public KSerializer<?>[] childSerializers() {
|
|
return new KSerializer[]{(KSerializer) StringSerializer.INSTANCE, (KSerializer) StringSerializer.INSTANCE, (KSerializer) StringSerializer.INSTANCE};
|
|
}
|
|
|
|
/* renamed from: deserialize, reason: merged with bridge method [inline-methods] */
|
|
public AppNode m3913deserialize(Decoder decoder) {
|
|
String str;
|
|
String str2;
|
|
String str3;
|
|
int i;
|
|
Intrinsics.checkNotNullParameter(decoder, "decoder");
|
|
SerialDescriptor descriptor2 = getDescriptor();
|
|
CompositeDecoder beginStructure = decoder.beginStructure(descriptor2);
|
|
if (beginStructure.decodeSequentially()) {
|
|
String decodeStringElement = beginStructure.decodeStringElement(descriptor2, 0);
|
|
String decodeStringElement2 = beginStructure.decodeStringElement(descriptor2, 1);
|
|
str = decodeStringElement;
|
|
str2 = beginStructure.decodeStringElement(descriptor2, 2);
|
|
str3 = decodeStringElement2;
|
|
i = 7;
|
|
} else {
|
|
String str4 = null;
|
|
String str5 = null;
|
|
String str6 = null;
|
|
boolean z = true;
|
|
int i2 = 0;
|
|
while (z) {
|
|
int decodeElementIndex = beginStructure.decodeElementIndex(descriptor2);
|
|
if (decodeElementIndex == -1) {
|
|
z = false;
|
|
} else if (decodeElementIndex == 0) {
|
|
str4 = beginStructure.decodeStringElement(descriptor2, 0);
|
|
i2 |= 1;
|
|
} else if (decodeElementIndex == 1) {
|
|
str6 = beginStructure.decodeStringElement(descriptor2, 1);
|
|
i2 |= 2;
|
|
} else {
|
|
if (decodeElementIndex != 2) {
|
|
throw new UnknownFieldException(decodeElementIndex);
|
|
}
|
|
str5 = beginStructure.decodeStringElement(descriptor2, 2);
|
|
i2 |= 4;
|
|
}
|
|
}
|
|
str = str4;
|
|
str2 = str5;
|
|
str3 = str6;
|
|
i = i2;
|
|
}
|
|
beginStructure.endStructure(descriptor2);
|
|
return new AppNode(i, str, str3, str2, null);
|
|
}
|
|
|
|
public void serialize(Encoder encoder, AppNode value) {
|
|
Intrinsics.checkNotNullParameter(encoder, "encoder");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
SerialDescriptor descriptor2 = getDescriptor();
|
|
CompositeEncoder beginStructure = encoder.beginStructure(descriptor2);
|
|
AppNode.write$Self(value, beginStructure, descriptor2);
|
|
beginStructure.endStructure(descriptor2);
|
|
}
|
|
|
|
public KSerializer<?>[] typeParametersSerializers() {
|
|
return GeneratedSerializer.DefaultImpls.typeParametersSerializers(this);
|
|
}
|
|
}
|