Conversation

holy fucking shit, android (aosp) actually has useful working backups that don't require you to upload everything to google servers and which you can manually trigger and have it work they're just incredibly well hidden h/t for giving me the right direction
3
181
note: this is mostly useful as a replacement for `adb backup`/`adb restore` that doesn't require blood sacrifices to restore half of your data instead of none of your data it doesn't work remotely and AFAIU requires a userdebug build
3
40
Replying to and
CTS is kind of unprivileged and does most of the testing via apps, but it also does a whole lot of stuff via `adb shell` that an app could never do, and it uses `adb shell` to install the thousands of different app-based test suites, etc.
1
1
Replying to and
If you look at the CTS modules list, you'll see a lot of modules with the term "Host" in their name, and that means a test suite that operates via `adb shell` and largely does the work on the host running the CTS test harness, not within an app on the device like most tests.
1
1
Show replies