Computer 1 - Windows 7 - dev machine
- IP: 192.168.1.2
- Install Ranorex (6.1.1)
Computer 2 - Windows 7 - sharing android virtual machine
- IP: 192.168.1.3
- Install AVD1, AVD2, ... (installed Ranorex service)
(May be: computer 3, 4 - other dev machines)
I want to connect Ranorex to AVD devices through network.
Follow this tutorial: http://www.41post.com/5003/programming/ ... tor-access
- On computer 2, using port forwarding:
Code: Select all
netsh interface portproxy add v4tov4 listenport=5585 listenaddress=192.168.1.3 connectport=5555 connectaddress=127.0.0.1
Try with ADB
Code: Select all
adb connect 192.168.1.3:5585
Output: connected to 192.168.1.3:5585



Can this approach possible?