-
public final class LastRunInfoProvides information about the last launch of the application, if there was one.
-
-
Field Summary
Fields Modifier and Type Field Description private final IntegerconsecutiveLaunchCrashesprivate final Booleancrashedprivate final BooleancrashedDuringLaunch
-
Constructor Summary
Constructors Constructor Description LastRunInfo(Integer consecutiveLaunchCrashes, Boolean crashed, Boolean crashedDuringLaunch)
-
Method Summary
Modifier and Type Method Description final IntegergetConsecutiveLaunchCrashes()The number times the app has consecutively crashed during its launch period. final BooleangetCrashed()Whether the last app run ended with a crash, or was abnormally terminated by the system. final BooleangetCrashedDuringLaunch()True if the previous app run ended with a crash during its launch period. StringtoString()-
-
Method Detail
-
getConsecutiveLaunchCrashes
final Integer getConsecutiveLaunchCrashes()
The number times the app has consecutively crashed during its launch period.
-
getCrashed
final Boolean getCrashed()
Whether the last app run ended with a crash, or was abnormally terminated by the system.
-
getCrashedDuringLaunch
final Boolean getCrashedDuringLaunch()
True if the previous app run ended with a crash during its launch period.
-
-
-
-