Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In AVD emulator how to see sdcard folder and install an APK to the AVD?

I have created an Android emulator (Android Virtual Device), but I am unable to find out the SD card I have built during creation of this.

How can I find the SD card and its content and also how to install APK files to the AVD?

like image 926
Trikaldarshiii Avatar asked May 21 '12 07:05

Trikaldarshiii


People also ask

How do I install APK on AVD emulator?

Step to install APK in Emulator : Step 1 -> Run the emulator step 2-> Paste the apk in SDK manager tools and platform-tools folders. Step 3->Run this command adb install AppNaem. APK . Wait for 2 min it's show Success Message.


1 Answers

  1. switch to DDMS perspective
  2. select the emulator in devices list, whose sdcard you want to explore.
  3. open File Explorer tab on right hand side.
  4. expand tree structure. mnt/sdcard/

refer to image belowenter image description here


To install apk manually: copy your apk to to sdk/platform-tools folder and run following command in the same folder

adb install apklocation.apk 
like image 75
N-JOY Avatar answered Sep 18 '22 18:09

N-JOY