updateStatus property

String? updateStatus
getter/setter pair

The status of an update: whether an update exists and what type it is. Possible string values are:

  • "UPDATE_STATUS_UNKNOWN" : It is unknown whether there is a pending system update. This happens when, for example, the device API level is less than 26, or if the version of Android Device Policy is outdated.
  • "UP_TO_DATE" : There is no pending system update available on the device.
  • "UNKNOWN_UPDATE_AVAILABLE" : There is a pending system update available, but its type is not known.
  • "SECURITY_UPDATE_AVAILABLE" : There is a pending security update available.
  • "OS_UPDATE_AVAILABLE" : There is a pending OS update available.

Implementation

core.String? updateStatus;