Files
rr3-apk/decompiled/sources/com/google/firebase/heartbeatinfo/HeartBeatInfo.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

24 lines
433 B
Java

package com.google.firebase.heartbeatinfo;
/* loaded from: classes3.dex */
public interface HeartBeatInfo {
HeartBeat getHeartBeatCode(String str);
public enum HeartBeat {
NONE(0),
SDK(1),
GLOBAL(2),
COMBINED(3);
private final int code;
public int getCode() {
return this.code;
}
HeartBeat(int i) {
this.code = i;
}
}
}