- 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
22 lines
453 B
Java
22 lines
453 B
Java
package com.google.firebase.crashlytics.internal;
|
|
|
|
import com.google.firebase.crashlytics.internal.model.CrashlyticsReport;
|
|
import java.io.File;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface NativeSessionFileProvider {
|
|
File getAppFile();
|
|
|
|
CrashlyticsReport.ApplicationExitInfo getApplicationExitInto();
|
|
|
|
File getDeviceFile();
|
|
|
|
File getMetadataFile();
|
|
|
|
File getMinidumpFile();
|
|
|
|
File getOsFile();
|
|
|
|
File getSessionFile();
|
|
}
|