SystemBackupStatus

actual class SystemBackupStatus(context: PlatformContext)

Android implementation of SystemBackupStatus.

Note: There's no public API for apps to directly check if Google Backup is enabled. We use heuristics based on system properties and settings when possible. The backup rules configuration ensures our app data is included when backup runs.

expect class SystemBackupStatus(context: PlatformContext)

Platform-specific system backup status checking.

Android: Uses BackupManager to check if Google Backup is enabled iOS: Always returns true (iCloud backup is handled differently)

Constructors

Link copied to clipboard
actual constructor(context: PlatformContext)
expect constructor(context: PlatformContext)

Functions

Link copied to clipboard
actual fun isBackupEnabled(): Boolean

Check if Google Backup appears to be enabled on this device.

expect fun isBackupEnabled(): Boolean

Check if system backup (Google Backup / iCloud) is enabled.

Link copied to clipboard
actual fun openBackupSettings()

Open the system backup settings screen.

expect fun openBackupSettings()

Open the system backup settings screen.