Conversation

Replying to
so how do you actually back up data without google services (which aren't a thing on grapheneos afaiu)? i've yet to find a way to do it that wouldn't make having a locked bootloader completely pointless, e.g. TWRP
1
Replying to
We include Seedvault which provides support for backing up app data. Some apps go out of the way to blacklist backing up data, which they're supposed to do for caches, hardware-specific data, data that can be easily re-generated, login sessions, etc. but many are very lazy.
1
Replying to and
So, unfortunately, a lot of apps choose to explicitly disable backups and it won't work for those. Seedvault is comparable to adb backup but without the arcane syntax and poor error reporting. You're prompted to restore in SetupWizard and it can restore when reinstalling an app.
2
Replying to
It can back up to a USB flash drive or a cloud backup service providing a Storage Provider. If you have anything like Termux with a Storage Provider, it's going to show up as one of the possible targets for storing the backup.
2
1
Replying to
Definitely does have caveats including how it's unfortunately very common for apps to take the lazy approach of disabling backups instead of keeping things that are not portable separate and including a blacklist of things that shouldn't be backed up.
1
Replying to
tbh even if just the OS settings would be restored it would make the phone a lot more useful for me, since I could actually use it without getting every bit of the build perfect on the first time (rn I'm fighting with the build system over open_gapps and the build system wins)
1
1
Replying to
It restores a decent amount of stuff but not everything. It's going to be getting substantially better in Android 11. The stock OS has slightly better integration of AOSP backup / restore because Play services has some extra bits and pieces to get more into app-based backups.
1
2
Replying to and
They're gradually moving it into AOSP though, which seems to be what's happening in Android 11 to some extent. github.com/stevesoltys/se Every Android distribution does have LocalTransport as a sample / testing backup service implementation but it's just meant for the CTS to use.
1
1
Replying to and
They should really replace adb backup via a local backup service meant for more than just CTS testing and then they could have an application for backing up onto a computer. I guess there might be Android OEMs with implementations of exactly that just not familiar with OEM forks.
1
Show replies