Installing a apk file ,in android emulator

This question already has an answer here:

  • How do you install an APK file in the Android emulator? 30 answers

  • 从shell运行以下命令。

    adb install yourapkname.apk
    

    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


    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)

    链接地址: http://www.djcxy.com/p/90670.html

    上一篇: 从命令提示符安装apk文件?

    下一篇: 在android模拟器中安装一个apk文件