문제

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?

도움이 되었습니까?

해결책

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/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top