Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package gatewayprotocol.v1;
import gatewayprotocol.v1.OperativeEventErrorDataKt;
import gatewayprotocol.v1.OperativeEventRequestOuterClass;
import kotlin.jvm.functions.Function1;
import kotlin.jvm.internal.Intrinsics;
import kotlin.jvm.internal.SourceDebugExtension;
@SourceDebugExtension({"SMAP\nOperativeEventErrorDataKt.kt\nKotlin\n*S Kotlin\n*F\n+ 1 OperativeEventErrorDataKt.kt\ngatewayprotocol/v1/OperativeEventErrorDataKtKt\n+ 2 fake.kt\nkotlin/jvm/internal/FakeKt\n*L\n1#1,63:1\n1#2:64\n*E\n"})
/* loaded from: classes5.dex */
public final class OperativeEventErrorDataKtKt {
/* renamed from: -initializeoperativeEventErrorData, reason: not valid java name */
public static final OperativeEventRequestOuterClass.OperativeEventErrorData m4034initializeoperativeEventErrorData(Function1 block) {
Intrinsics.checkNotNullParameter(block, "block");
OperativeEventErrorDataKt.Dsl.Companion companion = OperativeEventErrorDataKt.Dsl.Companion;
OperativeEventRequestOuterClass.OperativeEventErrorData.Builder newBuilder = OperativeEventRequestOuterClass.OperativeEventErrorData.newBuilder();
Intrinsics.checkNotNullExpressionValue(newBuilder, "newBuilder()");
OperativeEventErrorDataKt.Dsl _create = companion._create(newBuilder);
block.invoke(_create);
return _create._build();
}
public static final OperativeEventRequestOuterClass.OperativeEventErrorData copy(OperativeEventRequestOuterClass.OperativeEventErrorData operativeEventErrorData, Function1 block) {
Intrinsics.checkNotNullParameter(operativeEventErrorData, "<this>");
Intrinsics.checkNotNullParameter(block, "block");
OperativeEventErrorDataKt.Dsl.Companion companion = OperativeEventErrorDataKt.Dsl.Companion;
OperativeEventRequestOuterClass.OperativeEventErrorData.Builder builder = operativeEventErrorData.toBuilder();
Intrinsics.checkNotNullExpressionValue(builder, "this.toBuilder()");
OperativeEventErrorDataKt.Dsl _create = companion._create(builder);
block.invoke(_create);
return _create._build();
}
}