Is there a backup solution that backups the complete phone?
I use Helium, but it does not backup your google data, ie account settings, and etc.
Titanium Backup. But it requires root for what you want to backup
http://android.stackexchange.com/questions/28296/full-backup-of-non-rooted-devices
The solution (1/3 the way down) that uses adb works well. The windows command looks like this: "adb backup -apk -shared -all -system -f backup08262012.ab"
Sent from my SM-G925A
Related
Hi,
My dad just got himself a new phone and now it's my task to set him up with his apps on the new Phone.
My trouble is that I can't find a solution that back up App AND Data.
I have always had my phones rooted from Day 1 so i had an easy Titanium Backup+Restore and don't know about non-root methods.
Rooting is not really an option as my dad won't let me because he thinks it will break everything :
I searched and found Helium Backup which would be what i need, except that it only works on 4.x+
Do you know a Root-free backup&restore for the Transition from a
2.2 Motorola Defy
to a
4.0/4.1 Motorola Razr i ?
thank you in advance and thanks will follow
btw: why doesn't android simply backup all your data along with your contacts etc...?
There is a way to save your whole phone without root, you have to use adb.
Use this command:
Code:
adb backup –all -apk -shared –f c:\backup.ab
It will save all your data, apps and the internal or external storage.
Baasi said:
There is a way to save your whole phone without root, you have to use adb.
Use this command:
Code:
adb backup –all -apk -shared –f c:\backup.ab
It will save all your data, apps and the internal or external storage.
Click to expand...
Click to collapse
thanks, do you also know, how to restore them with data onto an unrooted 4.1 phone ?
something along
adb restore –all -apk -shared –f c:\backup.ab ?
Hello,
I have unlocked my Bootloader on my HTC One and before I make this, I made a full backup with "adb backup -all -shared -apk -f F:\backups\backup_all.ab" but when I make "adb restore F:\backups\backup_all.ab" it stays 10mins at "uk.co.sevendigital.android.partner" and stops the restoring process. I have less than 50% of my Apps/Data. How I can get the last 50%?
Hi!
I want to know If I can...
I've chinesse mtk android phone (4.4.2). This phone isn't rooted.
I've made a backup with adb:
adb backup -f backup.ad -apk -shared -all -system
Then I take an other (same) phone, this phone is factory reset. So I want to adb restore backup.ad...
But when I've restored the backup I can see that all app are restored but system settins as (apn, brigthness, gps settings, etc... is not resteored )
So, what I've to do if i want to do a backup all phone (app, settings and system setting) ¿can i do this?
Nobody help me?
Hi,
I have a droid turbo 2, and have all the backup and restore settings checked. I've had my phone connected overnight several times, but it seems to have barely backed up even the most basic stock apps. The Google Drive files are so small that I question whether anything is backed up (see attached pic). What am I doing wrong? Is there a way force a backup via brute force?
Anyone?
Is using adb to perform your backup possible? If so there are many guides on setting adb up then once you have a recognised device issue "adb backup -all -apk -system backup.ab. you could use the -shared or -noshared depending on if you want to backup internal storage. Then when you want to restore issue "adb restore backup.ab" thats the only fix I can suggest without more info.
I use PE custom rom and I have tried to backup app data without success. Adb commands works fine but when I have restored backup, I can't find any backup app icons on my phone. What I doing wrong?
adb backup -f app.backup -all -apk -nosystem
adb restore app.backup
The sad reality is that ADB actually listens to app manifests when they request that userdata not be backed up. It'll only restore the apps themselves, even if you encrypt the backup. To backup app data these days, you need root access and an app that can handle the backup/restore procedure via root.