- 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
259 lines
11 KiB
Java
259 lines
11 KiB
Java
package gatewayprotocol.v1;
|
|
|
|
import com.google.protobuf.ByteString;
|
|
import com.google.protobuf.CodedInputStream;
|
|
import com.google.protobuf.ExtensionRegistryLite;
|
|
import com.google.protobuf.GeneratedMessageLite;
|
|
import com.google.protobuf.InvalidProtocolBufferException;
|
|
import com.google.protobuf.MessageLiteOrBuilder;
|
|
import com.google.protobuf.Parser;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class AllowedPiiOuterClass {
|
|
|
|
public interface AllowedPiiOrBuilder extends MessageLiteOrBuilder {
|
|
boolean getIdfa();
|
|
|
|
boolean getIdfv();
|
|
}
|
|
|
|
public static void registerAllExtensions(ExtensionRegistryLite extensionRegistryLite) {
|
|
}
|
|
|
|
private AllowedPiiOuterClass() {
|
|
}
|
|
|
|
public static final class AllowedPii extends GeneratedMessageLite<AllowedPii, Builder> implements AllowedPiiOrBuilder {
|
|
private static final AllowedPii DEFAULT_INSTANCE;
|
|
public static final int IDFA_FIELD_NUMBER = 1;
|
|
public static final int IDFV_FIELD_NUMBER = 2;
|
|
private static volatile Parser<AllowedPii> PARSER;
|
|
private boolean idfa_;
|
|
private boolean idfv_;
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearIdfa() {
|
|
this.idfa_ = false;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearIdfv() {
|
|
this.idfv_ = false;
|
|
}
|
|
|
|
public static AllowedPii getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setIdfa(boolean z) {
|
|
this.idfa_ = z;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setIdfv(boolean z) {
|
|
this.idfv_ = z;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.AllowedPiiOuterClass.AllowedPiiOrBuilder
|
|
public boolean getIdfa() {
|
|
return this.idfa_;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.AllowedPiiOuterClass.AllowedPiiOrBuilder
|
|
public boolean getIdfv() {
|
|
return this.idfv_;
|
|
}
|
|
|
|
private AllowedPii() {
|
|
}
|
|
|
|
public static AllowedPii parseFrom(ByteBuffer byteBuffer) throws InvalidProtocolBufferException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
|
|
}
|
|
|
|
public static AllowedPii parseFrom(ByteBuffer byteBuffer, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, extensionRegistryLite);
|
|
}
|
|
|
|
public static AllowedPii parseFrom(ByteString byteString) throws InvalidProtocolBufferException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString);
|
|
}
|
|
|
|
public static AllowedPii parseFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString, extensionRegistryLite);
|
|
}
|
|
|
|
public static AllowedPii parseFrom(byte[] bArr) throws InvalidProtocolBufferException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
|
|
}
|
|
|
|
public static AllowedPii parseFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, extensionRegistryLite);
|
|
}
|
|
|
|
public static AllowedPii parseFrom(InputStream inputStream) throws IOException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static AllowedPii parseFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static AllowedPii parseDelimitedFrom(InputStream inputStream) throws IOException {
|
|
return (AllowedPii) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static AllowedPii parseDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (AllowedPii) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static AllowedPii parseFrom(CodedInputStream codedInputStream) throws IOException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream);
|
|
}
|
|
|
|
public static AllowedPii parseFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (AllowedPii) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.createBuilder();
|
|
}
|
|
|
|
public static Builder newBuilder(AllowedPii allowedPii) {
|
|
return DEFAULT_INSTANCE.createBuilder(allowedPii);
|
|
}
|
|
|
|
public static final class Builder extends GeneratedMessageLite.Builder<AllowedPii, Builder> implements AllowedPiiOrBuilder {
|
|
public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) {
|
|
this();
|
|
}
|
|
|
|
private Builder() {
|
|
super(AllowedPii.DEFAULT_INSTANCE);
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.AllowedPiiOuterClass.AllowedPiiOrBuilder
|
|
public boolean getIdfa() {
|
|
return ((AllowedPii) this.instance).getIdfa();
|
|
}
|
|
|
|
public Builder setIdfa(boolean z) {
|
|
copyOnWrite();
|
|
((AllowedPii) this.instance).setIdfa(z);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearIdfa() {
|
|
copyOnWrite();
|
|
((AllowedPii) this.instance).clearIdfa();
|
|
return this;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.AllowedPiiOuterClass.AllowedPiiOrBuilder
|
|
public boolean getIdfv() {
|
|
return ((AllowedPii) this.instance).getIdfv();
|
|
}
|
|
|
|
public Builder setIdfv(boolean z) {
|
|
copyOnWrite();
|
|
((AllowedPii) this.instance).setIdfv(z);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearIdfv() {
|
|
copyOnWrite();
|
|
((AllowedPii) this.instance).clearIdfv();
|
|
return this;
|
|
}
|
|
}
|
|
|
|
@Override // com.google.protobuf.GeneratedMessageLite
|
|
public final Object dynamicMethod(GeneratedMessageLite.MethodToInvoke methodToInvoke, Object obj, Object obj2) {
|
|
AnonymousClass1 anonymousClass1 = null;
|
|
switch (AnonymousClass1.$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[methodToInvoke.ordinal()]) {
|
|
case 1:
|
|
return new AllowedPii();
|
|
case 2:
|
|
return new Builder(anonymousClass1);
|
|
case 3:
|
|
return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\u0007\u0002\u0007", new Object[]{"idfa_", "idfv_"});
|
|
case 4:
|
|
return DEFAULT_INSTANCE;
|
|
case 5:
|
|
Parser<AllowedPii> parser = PARSER;
|
|
if (parser == null) {
|
|
synchronized (AllowedPii.class) {
|
|
try {
|
|
parser = PARSER;
|
|
if (parser == null) {
|
|
parser = new GeneratedMessageLite.DefaultInstanceBasedParser<>(DEFAULT_INSTANCE);
|
|
PARSER = parser;
|
|
}
|
|
} finally {
|
|
}
|
|
}
|
|
}
|
|
return parser;
|
|
case 6:
|
|
return (byte) 1;
|
|
case 7:
|
|
return null;
|
|
default:
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|
|
|
|
static {
|
|
AllowedPii allowedPii = new AllowedPii();
|
|
DEFAULT_INSTANCE = allowedPii;
|
|
GeneratedMessageLite.registerDefaultInstance(AllowedPii.class, allowedPii);
|
|
}
|
|
|
|
public static Parser<AllowedPii> parser() {
|
|
return DEFAULT_INSTANCE.getParserForType();
|
|
}
|
|
}
|
|
|
|
/* renamed from: gatewayprotocol.v1.AllowedPiiOuterClass$1, reason: invalid class name */
|
|
public static /* synthetic */ class AnonymousClass1 {
|
|
public static final /* synthetic */ int[] $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke;
|
|
|
|
static {
|
|
int[] iArr = new int[GeneratedMessageLite.MethodToInvoke.values().length];
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke = iArr;
|
|
try {
|
|
iArr[GeneratedMessageLite.MethodToInvoke.NEW_MUTABLE_INSTANCE.ordinal()] = 1;
|
|
} catch (NoSuchFieldError unused) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.NEW_BUILDER.ordinal()] = 2;
|
|
} catch (NoSuchFieldError unused2) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.BUILD_MESSAGE_INFO.ordinal()] = 3;
|
|
} catch (NoSuchFieldError unused3) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_DEFAULT_INSTANCE.ordinal()] = 4;
|
|
} catch (NoSuchFieldError unused4) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_PARSER.ordinal()] = 5;
|
|
} catch (NoSuchFieldError unused5) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_MEMOIZED_IS_INITIALIZED.ordinal()] = 6;
|
|
} catch (NoSuchFieldError unused6) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.SET_MEMOIZED_IS_INITIALIZED.ordinal()] = 7;
|
|
} catch (NoSuchFieldError unused7) {
|
|
}
|
|
}
|
|
}
|
|
}
|