androidandroid-emulatorandroid-file

Where are Android Emulator Images Stored?


On the emulator, I downloaded an image from Google. I can find the image on the emulator, but I have no idea what the file location of the image is. To debug my app I need to know where that image is. How can I get the full path of the image?


Solution

  • This here seems to work for me:

    String path = Environment.getExternalStorageDirectory().getPath();
    String myJpgPath = path + "/Download/dog-best-friend-1.jpg";