ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
To connect to a roscore that is running in an AVD, you'll need to use adb forwarding. See http://developer.android.com/guide/developing/tools/adb.html#forwardports
For example:
adb forward tcp:11311 tcp:11311
That will forward all TCP connections to port 11311 on your host to your AVD on port 11311.