-
- All Implemented Interfaces:
-
java.lang.annotation.Annotation
@Deprecated()@Documented()@Retention(value = RetentionPolicy.RUNTIME)@Target(value = ElementType.TYPE)@Inherited() public @interface AcraScheduler
-
-
Field Summary
Fields Modifier and Type Field Description public final static StringEXTRA_APP_RESTARTED
-
Method Summary
Modifier and Type Method Description abstract intrequiresNetworkType()Network constraint for report sending abstract booleanrequiresCharging()Charging constraint for report sending abstract booleanrequiresDeviceIdle()Idle constraint for report sending abstract booleanrequiresBatteryNotLow()Battery constraint for report sending abstract booleanrestartAfterCrash()Restarts the last activity immediately after a crash. -
-
Method Detail
-
requiresNetworkType
abstract int requiresNetworkType()
Network constraint for report sending
-
requiresCharging
abstract boolean requiresCharging()
Charging constraint for report sending
-
requiresDeviceIdle
abstract boolean requiresDeviceIdle()
Idle constraint for report sending
-
requiresBatteryNotLow
abstract boolean requiresBatteryNotLow()
Battery constraint for report sending
-
restartAfterCrash
abstract boolean restartAfterCrash()
Restarts the last activity immediately after a crash.If an activity is restarted, the EXTRA_APP_RESTARTED extra will contain a boolean true.Note that this might interact badly with the crash dialog.
-
-
-
-