- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
418 B
Java
13 lines
418 B
Java
package com.google.android.datatransport.runtime;
|
|
|
|
import com.google.firebase.encoders.proto.ProtobufEncoder;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public abstract class ProtoEncoderDoNotUse {
|
|
public static final ProtobufEncoder ENCODER = ProtobufEncoder.builder().configureWith(AutoProtoEncoderDoNotUseEncoder.CONFIG).build();
|
|
|
|
public static byte[] encode(Object obj) {
|
|
return ENCODER.encode(obj);
|
|
}
|
|
}
|