Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to browse android emulator SD on Windows without Eclipse?

Can't understand how to browse android emulator sd card. I am using IDEA, not Eclipse and can't use Eclipse tool for this purpose.

like image 398
Georgy Gobozov Avatar asked Sep 07 '10 20:09

Georgy Gobozov


People also ask

How do I access files on Android emulator?

From the main menu, go to View -> Tool Windows -> Device File Explorer. You can then select your device / emulator from the drop down list. To access /data/user/0/com. example.

What command is used to install SD card in emulator?

Use the mksdcard tool to create a FAT32 disk image that you can load into emulators running different Android Virtual Devices (AVDs) to simulate the presence of the same SD card in multiple devices. The mksdcard tool provided in the Android SDK Tools package is located in android-sdk /emulator/ mksdcard .

Can we simulate SD card in android?

You can create a disk image and then load it to the emulator at startup, to simulate the presence of a user's SD card in the device. To do this, you can use the android tool to create a new SD card image with a new AVD, or you can use the mksdcard utility included in the SDK.


2 Answers

Use DDMS. It is available as a standalone tool, in addition to the Eclipse perspective.

like image 169
CommonsWare Avatar answered Sep 21 '22 07:09

CommonsWare


Or you can also use adb located in android-sdk-directory/tools.

To do this open up a command line and type adb shell when developing on Linux or adb.exe shell when developing on Windows then you will be logged in into your Android emulator where you can simply use basic UNIX commands to navigate to the SDcard.
You'd do that like this cd /sdcard and to list whats in there you us ls.

Hope it helped.

like image 27
Octavian A. Damiean Avatar answered Sep 20 '22 07:09

Octavian A. Damiean