2

I can backup with PC by "adb backup"command. But can I create backup file without using a PC somehow? Android device standalone.

1 Answers1

1

Yes you can. There are some tools to provide you with this functionality, e.g. Helium - App Sync and Backup. If your device is rooted, this app should work out-of-the-box. Otherwise you will need to initialize it once after each device start (reboot), which then requires a PC with ADB.


As requested in the comments, a few hints on how to get Helium started on a non-rooted device. First, this requires you to have at least a basic setup of ADB done on your computer (see: Is there a minimal installation of ADB?). Having met that, it should be as easy as enabling USB-Debugging on your Android device, connecting it via USB to the PC, and run the helper script downloaded from Helum's web page. The last 3 steps have to be repeated only once after each reboot of the device, and activate a background process Helium itself requires but cannot start itself (the user via ADB has higher privileges than an app in user-space, and thus can).

Izzy
  • 91,166
  • 73
  • 343
  • 943
  • my device is not rooted.can helium do backup without pc? – user2338888 Aug 08 '13 at 03:22
  • Yes. If your device is not rooted, you only need a PC once after each restart/boot of your device to get a background service started (no "normal" app gets enough elevated rights for that, so ADB has to do). For the backups themselves you don't need any additional device, and they are done to your SDCard. – Izzy Aug 08 '13 at 06:12
  • Izzy - Can you elaborate on how to initialize the program with ADB, after each restart? – user66001 Oct 11 '13 at 19:16
  • That depends on your pre-conditions. But you're right, I should include some hints although they can be find on the app's page. – Izzy Oct 11 '13 at 20:14