Add support for Android's backup mechanism
See original GitHub issueImplement BackupAgent
that uses the settings import/export code.
See https://developer.android.com/guide/topics/data/autobackup and the discussion in pull request #3846.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:5
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Data backup overview - Android Developers
This page describes what data you should back up and the backup options ... Note: If your app doesn't have a backup mechanism...
Read more >How to implement backup & restore in Android app | Medium
Exploring how to provide your own backup-restore mechanism in ... Android comes with its own backup support but not without some problems.
Read more >Back up or restore data on your Android device - Google Help
Open your phone's Settings app. · Tap System And then Backup. · Tap Backup account And then Add account. · If needed, enter...
Read more >Auto Backup for Apps made simple - Android Developers Blog
Simply add the android:fullBackupOnly="true" attribute on <application/> . This is ignored on pre-M versions of Android, meaning onBackup/ ...
Read more >Auto Backup API in Android - MindOrks
Android provides an interface between application and data backup infrastructure. It is mostly used with the Key-Value backup mechanism and ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Android has now option to enable backups, only if they are encrypted.
Info: https://github.com/seedvault-app/seedvault/wiki/FAQ
And mentioned example how it was enabled in the Tranportr app: grote/Transportr@4dc38f4
Please try to understand that it doesn’t matter what behavior would be acceptable to you. This is something that needs to work for everyone.
Saving (potentially unencrypted) passwords to a backup provider needs to be opt-in, not opt-out via disabling the system’s backup mechanism (that a lot of people probably don’t even know about).