enum AppStatus : Enum<AppStatus>
| Member | Description |
|---|---|
Unknown |
Represents that the AppStatus is unknown.
|
Entitled |
The user possesses a valid entitlement for the app, indicating they have the right to install it, although it is not currently installed on the device.
|
DownloadQueued |
The app is scheduled for download. The download will start as soon as prior queued downloads are completed.
|
Downloading |
The app is currently being downloaded to the device. This status is active during the download process until it is complete.
|
Installing |
The app is currently being installed on the device. This status remains until the installation is fully completed.
|
Installed |
The app is successfully installed on the device and is ready to be used.
|
Uninstalling |
The app is currently being uninstalled from the device. This status remains until the uninstallation process is complete.
|
InstallQueued |
The installation of the app is scheduled and will commence once any prior installations are completed.
|
value
: Int
[Get] |
Signature
val value: Int |