Connect Eclipse to Android emulator on a different machine

后端 未结 6 2037
抹茶落季
抹茶落季 2020-12-16 17:27

Can\'t seem to find the following information although I\'m pretty sure this should be possible: I\'m running an Android emulator on a machine A. I\'m developing on another

6条回答
  •  春和景丽
    2020-12-16 17:45

    Follow these steps to connect your VM to eclipse IDE:

    First run ICS from your VM and open up android command prompt. (Navigate to applications and run Terminal Emulator)

    Type "netcfg" in terminal to find out IP of your vm

    Then go to cmd(windows command prompt) and move to "platform-tool" folder in your android installation path(in my case cd C:\android-sdk-windows\platform-tools)

    Then type "adb connect your ip" command (adb connect 190.156.10.122)

    Now you can debug your android application in vm without pain. Try this and this

提交回复
热议问题