Reputation: 1335
I'd like to know where Android Emulator Snapshots are stored on disc. I know how to take them via Extended Control but I can't find them on disc. I did a filesystem search but no hits. The idea is to share them with my team.
Upvotes: 65
Views: 54381
Reputation: 168
Below is the location of emulator-made snapshots.
Windows user:
%USERPROFILE%\.android\avd\<AVD_NAME>\snapshots\
%USERPROFILE%
is your current active user
Replace <AVD_NAME>
with the name of your Android Virtual Device (AVD).
Linux/macOS user:
~/.android/avd/<AVD_NAME>/snapshots/
Replace <AVD_NAME>
with the name of your Android Virtual Device (AVD).
Upvotes: 1
Reputation: 2414
Press for 3 dots. Then Press the Settings and in top right corner you will see the screenshot folder location.
Upvotes: 100
Reputation: 5040
There's now a setting for this in the Emulator itself. In the options menu, tap on the Three Dots button to open Extended Controls. Tap the 'Settings' item in the left-hand list and you'll see 'Screenshot save location', which is an editable field.
Upvotes: 28
Reputation: 4007
To retrieve the saved snapshot on disc, you have to go to the AVD location. In Android Virtual Device Manager, right click on your AVD, then show on disc. You will find a directory call snapshots
Upvotes: 38