backup - backing up android device using adb -


i attempting copy applications , data android tablet1 android tablet2. both tablets has same specification , same type.

my approach use command

 adb backup -f my_backup.ab -apk -shared -all 

to files tablet1 use command:

 adb restore my_backup.ab 

to restore(basically copy) backed files tablet2.

the restore works fine, problem backup not backup applications data on device.

do have idea why might happening?

thanks response , time.

execute on computer

adb backup -apk -shared -all 

this should create backup.ab of apps, os, , data. restore, execute following.

adb restore backup.ab 

Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -