- 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
98 lines
4.1 KiB
Java
98 lines
4.1 KiB
Java
package gatewayprotocol.v1;
|
|
|
|
import com.google.protobuf.kotlin.DslList;
|
|
import com.google.protobuf.kotlin.DslProxy;
|
|
import com.google.protobuf.kotlin.ProtoDslMarker;
|
|
import gatewayprotocol.v1.DeveloperConsentOuterClass;
|
|
import java.util.List;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class DeveloperConsentKt {
|
|
public static final DeveloperConsentKt INSTANCE = new DeveloperConsentKt();
|
|
|
|
@ProtoDslMarker
|
|
public static final class Dsl {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final DeveloperConsentOuterClass.DeveloperConsent.Builder _builder;
|
|
|
|
public /* synthetic */ Dsl(DeveloperConsentOuterClass.DeveloperConsent.Builder builder, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(builder);
|
|
}
|
|
|
|
private Dsl(DeveloperConsentOuterClass.DeveloperConsent.Builder builder) {
|
|
this._builder = builder;
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final /* synthetic */ Dsl _create(DeveloperConsentOuterClass.DeveloperConsent.Builder builder) {
|
|
Intrinsics.checkNotNullParameter(builder, "builder");
|
|
return new Dsl(builder, null);
|
|
}
|
|
}
|
|
|
|
public final /* synthetic */ DeveloperConsentOuterClass.DeveloperConsent _build() {
|
|
DeveloperConsentOuterClass.DeveloperConsent build = this._builder.build();
|
|
Intrinsics.checkNotNullExpressionValue(build, "_builder.build()");
|
|
return build;
|
|
}
|
|
|
|
public static final class OptionsProxy extends DslProxy {
|
|
private OptionsProxy() {
|
|
}
|
|
}
|
|
|
|
public final /* synthetic */ DslList getOptions() {
|
|
List<DeveloperConsentOuterClass.DeveloperConsentOption> optionsList = this._builder.getOptionsList();
|
|
Intrinsics.checkNotNullExpressionValue(optionsList, "_builder.getOptionsList()");
|
|
return new DslList(optionsList);
|
|
}
|
|
|
|
public final /* synthetic */ void addOptions(DslList dslList, DeveloperConsentOuterClass.DeveloperConsentOption value) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this._builder.addOptions(value);
|
|
}
|
|
|
|
public final /* synthetic */ void plusAssignOptions(DslList<DeveloperConsentOuterClass.DeveloperConsentOption, OptionsProxy> dslList, DeveloperConsentOuterClass.DeveloperConsentOption value) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
addOptions(dslList, value);
|
|
}
|
|
|
|
public final /* synthetic */ void addAllOptions(DslList dslList, Iterable values) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(values, "values");
|
|
this._builder.addAllOptions(values);
|
|
}
|
|
|
|
public final /* synthetic */ void plusAssignAllOptions(DslList<DeveloperConsentOuterClass.DeveloperConsentOption, OptionsProxy> dslList, Iterable<DeveloperConsentOuterClass.DeveloperConsentOption> values) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(values, "values");
|
|
addAllOptions(dslList, values);
|
|
}
|
|
|
|
public final /* synthetic */ void setOptions(DslList dslList, int i, DeveloperConsentOuterClass.DeveloperConsentOption value) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this._builder.setOptions(i, value);
|
|
}
|
|
|
|
public final /* synthetic */ void clearOptions(DslList dslList) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
this._builder.clearOptions();
|
|
}
|
|
}
|
|
|
|
private DeveloperConsentKt() {
|
|
}
|
|
}
|