Question

Is there a way to back up an Android app folder from an emulator to a computer, then restore it to another emulator?

For example, Android emulator A has an app called Foo, therefore it has the following folder with many sub-folders and numerous files: /data/data/com.my.foo

I would like to back up this folder, then restore it to emulator B.

Is this doable?

Was it helpful?

Solution

In eclipse:

DDMS perspective -> select emulator in devices tab -> File Explorer on the right hand side

Download to PC and revert the process on the other emulator.


Pushing via adb:

It seems that the eclipse tools does not support putting folders on to device.

pushing from adb commandline: adb root push com.my.foo /data/data/com.my.foo/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top