I have an apk file ,how do i install it in android emulator. I am working under Linux operating system.
Asked
Active
Viewed 1,313 times
4 Answers
0
Goto Shell/Terminal/, reach at android-sdk/tools directory then
adb install fileName.apk // (u can run this command on windows)
or
./adb install fileName.apk //( u can run this command on linux)
use full for me (Installing .apk file on Emulator in Linux)
0
if you have eclipse then right click your project and click Run as->Android Application. It will ask your avd device and click that. After few sec your app will be loaded in your emulator. Best of luck:)

AndroidEnthusiastic
- 941
- 9
- 22
0
For installing .apk file in emulator ...
go to command prompt
type.... adb install yourApp.apk
but in your system ,if more than one emulator or/and device are running then you have to select particular emulator/device and than install .apk file

hardik pansuria
- 208
- 1
- 3
- 13