Reputation: 59
I have my AVD emulator running in Android Studio, and want to store a file on the emulated device.
Using the push and pull buttons does not seem to store the device, while the console is not reporting any errors. Just dragging the file into the /mnt/sdcard folder or root or any other folder does not seem to store the file either, even though I get a popup window saying that it is transferring.
Is there a way to refresh the File Explorer in DDMS? Or does anyone know why my files might not be transferring to the emulated device?
Upvotes: 6
Views: 1518
Reputation: 21
Reselecting the same device in the Device File Explorer also seems to do the trick! Android Studio Dolphin Device File Explorer
Upvotes: 2
Reputation: 69
You can force refresh by killing and restarting the Android Debug Bridge process.
adb kill-server
adb start-server
Upvotes: 3