Issue
I didn't find any documentation on how to use these 2 guys
adb emu avd snapshot pull
adb emu avd snapshot push
I am able to export an existing AVD snapshot with
$ adb emu avd snapshot pull baseline /User/user1/baseline
WARNING: unrecognized file format /User/user1/baseline
OK
It seems that I am also able to import the AVD snapshot with
$ adb emu avd snapshot push baseline /Users/user1/baseline
WARNING: unrecognized file format /Users/user1/baseline
OK
Listing the snapshots with adb emu avd snapshot list
shows nothing.
What is the correct way to export and import AVD snapshots?
Solution
Answering my own question
While running snapshot list
after snapshot push
doesn't show the pushed snapshot, running snapshot load baseline
actually loads the pushed snapshot and everything works as expected.
My course of action
Export the snapshot
adb emu avd snapshot save baseline
adb emu avd snapshot pull baseline /Users/user1/baseline
Import the snapshot
- Start the emulator (in my case with
-wipe-data
) adb emu avd snapshot push baseline /Users/user1/baseline
adb emu avd snapshot load baseline
Answered By - tonymontana
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.