- 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
34 lines
2.0 KiB
Java
34 lines
2.0 KiB
Java
package gatewayprotocol.v1;
|
|
|
|
import gatewayprotocol.v1.DeveloperConsentOptionKt;
|
|
import gatewayprotocol.v1.DeveloperConsentOuterClass;
|
|
import kotlin.jvm.functions.Function1;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlin.jvm.internal.SourceDebugExtension;
|
|
|
|
@SourceDebugExtension({"SMAP\nDeveloperConsentOptionKt.kt\nKotlin\n*S Kotlin\n*F\n+ 1 DeveloperConsentOptionKt.kt\ngatewayprotocol/v1/DeveloperConsentOptionKtKt\n+ 2 fake.kt\nkotlin/jvm/internal/FakeKt\n*L\n1#1,115:1\n1#2:116\n*E\n"})
|
|
/* loaded from: classes5.dex */
|
|
public final class DeveloperConsentOptionKtKt {
|
|
/* renamed from: -initializedeveloperConsentOption, reason: not valid java name */
|
|
public static final DeveloperConsentOuterClass.DeveloperConsentOption m4009initializedeveloperConsentOption(Function1 block) {
|
|
Intrinsics.checkNotNullParameter(block, "block");
|
|
DeveloperConsentOptionKt.Dsl.Companion companion = DeveloperConsentOptionKt.Dsl.Companion;
|
|
DeveloperConsentOuterClass.DeveloperConsentOption.Builder newBuilder = DeveloperConsentOuterClass.DeveloperConsentOption.newBuilder();
|
|
Intrinsics.checkNotNullExpressionValue(newBuilder, "newBuilder()");
|
|
DeveloperConsentOptionKt.Dsl _create = companion._create(newBuilder);
|
|
block.invoke(_create);
|
|
return _create._build();
|
|
}
|
|
|
|
public static final DeveloperConsentOuterClass.DeveloperConsentOption copy(DeveloperConsentOuterClass.DeveloperConsentOption developerConsentOption, Function1 block) {
|
|
Intrinsics.checkNotNullParameter(developerConsentOption, "<this>");
|
|
Intrinsics.checkNotNullParameter(block, "block");
|
|
DeveloperConsentOptionKt.Dsl.Companion companion = DeveloperConsentOptionKt.Dsl.Companion;
|
|
DeveloperConsentOuterClass.DeveloperConsentOption.Builder builder = developerConsentOption.toBuilder();
|
|
Intrinsics.checkNotNullExpressionValue(builder, "this.toBuilder()");
|
|
DeveloperConsentOptionKt.Dsl _create = companion._create(builder);
|
|
block.invoke(_create);
|
|
return _create._build();
|
|
}
|
|
}
|