- 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
25 lines
802 B
Java
25 lines
802 B
Java
package com.google.firebase.sessions;
|
|
|
|
import com.google.firebase.Firebase;
|
|
import com.google.firebase.FirebaseKt;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface SessionDatastore {
|
|
public static final Companion Companion = Companion.$$INSTANCE;
|
|
|
|
String getCurrentSessionId();
|
|
|
|
void updateSessionId(String str);
|
|
|
|
public static final class Companion {
|
|
public static final /* synthetic */ Companion $$INSTANCE = new Companion();
|
|
|
|
public final SessionDatastore getInstance() {
|
|
Object obj = FirebaseKt.getApp(Firebase.INSTANCE).get(SessionDatastore.class);
|
|
Intrinsics.checkNotNullExpressionValue(obj, "Firebase.app[SessionDatastore::class.java]");
|
|
return (SessionDatastore) obj;
|
|
}
|
|
}
|
|
}
|