I have downloaded an apk file from one site in the emulator its show getting downloaded at the top of the screen 开发者_开发问答in an arrow button.but i didn't find the apk file in my SD card or anyvery else.Will it be stored in any other location in the emuliator.
Will any one help me to find the downloaded apk file place in emuliator
The downloaded file is supposed to be stored in a "download" folder on the sdcard. Check mnt/sdcard/download
folder, the apk might be there (Use the DDMS to do so).
Go to your command line and to the Android-sdk-windows\platform-tools folder. Then call:
adb shell
cd /sdcard/download
You'll see your file there.
精彩评论