StorageInfo

data class StorageInfo(val totalSpaceBytes: Long, val freeSpaceBytes: Long, val isLowSpaceWarning: Boolean)

Contains details about device storage limits, which can affect updates.

Constructors

Link copied to clipboard
constructor(totalSpaceBytes: Long, freeSpaceBytes: Long, isLowSpaceWarning: Boolean)

Properties

Link copied to clipboard

The amount of available internal storage in bytes.

Link copied to clipboard

True if free space drops below a critical threshold.

Link copied to clipboard

The total internal storage capacity in bytes.