Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package com.google.firebase.messaging;
import com.google.firebase.encoders.annotations.Encodable;
import com.google.firebase.encoders.proto.ProtobufEncoder;
import com.google.firebase.messaging.reporting.MessagingClientEventExtension;
import java.io.IOException;
import java.io.OutputStream;
@Encodable
/* loaded from: classes3.dex */
public abstract class ProtoEncoderDoNotUse {
private static final ProtobufEncoder ENCODER = ProtobufEncoder.builder().configureWith(AutoProtoEncoderDoNotUseEncoder.CONFIG).build();
private ProtoEncoderDoNotUse() {
}
public static byte[] encode(Object obj) {
return ENCODER.encode(obj);
}
public abstract MessagingClientEventExtension getMessagingClientEventExtension();
public static void encode(Object obj, OutputStream outputStream) throws IOException {
ENCODER.encode(obj, outputStream);
}
}