Please enable JavaScript.
Coggle requires JavaScript to display documents.
ANDROID
BACKUP DATA - Coggle Diagram
ANDROID
BACKUP DATA
STORAGE
-
Backup data is stored in the user's Google Drive limited to 25 MB per app. Google treats this data as personal information in accordance with Google's Privacy Policy.
The saved data does not count toward the user's personal Google Drive quota. Only the most recent backup is stored. When a backup is made, any previous backup is deleted. The backup data can't be read by the user or other apps on the device.
-
Backups happen automatically, roughly once a day.
-
USER LOGIN
Doesn't require a user to be logged into your app. The user must be logged into the device with a Google account.
Data is restored when the app is installed. Users can select from a list of backup datasets if multiple datasets are available.
receive notification of backup events, such as onRestoreFinished() and onQuotaExceeded(long, long)
-
FREQUENCY
Apps must issue a request when there is data that is ready to be backed up. Requests from multiple apps are batched and executed every few hours.
-
STORAGE
data is stored in Android Backup Service and limited to 5 MB per app. Google treats this data as personal information in accordance with Google's Privacy Policy.
USER LOGIN
Doesn't require a user to be logged into your app. The user must be logged into the device with a Google account.
DATA RESTORE
Data is restored when the app is installed. If needed, you can request a manual restore.
-
-
-
BACKUP SCHEDULE
In practice, these conditions occur roughly every night, but a device might never back up (for example, if it never connects to a network). To conserve network bandwidth, the upload takes place only if the app data has changed.