App Update Info
The AppUpdateInfo struct is designed to mimic the object defined within the Google Play Core library almost exactly.
The struct contains information about the avilability and progress of an app update. This object is produced when using the Get App Update Info and Set App Update Resumed Listener blueprint functions.
FAppUpdateInfo
Field | Type | Description |
---|---|---|
PackageName | FString | Returns the package name for the app to be updated. |
AvailableVersionCode | int32 | If an update is available or in progress, this returns the version code of the update. |
UpdateAvailability | EUpdateAvailability | Returns whether an update is available for the app. |
InstallStatus | EInstallStatus | Returns the progress status of the update. |
ClientVersionStalenessDays | int32 | If an update is available or in progress, this returns the number of days since the Google Play Store app on the user's device has learnt about an available update. |
UpdatePriority | int32 | Returns the in-app update priority for this update, as defined by the developer in the Google Play Developer API. |
BytesDownloaded | int64 | Returns the number of bytes downloaded so far. |
TotalBytesToDownload | int64 | Returns the total number of bytes to be downloaded for this update. |