Add support for multiple connected android devices

* We forward a different range of ports to each device so we can pick
  and choose which to communicate with based on its index.
* The index is encoded in the 'hostname' like so: adb:X:deviceidhere
* Whenever we want to interact with an android device we always specify
  the device, never leave it to a default.
This commit is contained in:
baldurk
2017-06-15 05:28:07 -07:00
committed by Baldur Karlsson
parent 06b5b300c3
commit 6423a82d18
13 changed files with 143 additions and 69 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ void RemoteHost::Launch()
if(IsHostADB())
{
RENDERDOC_StartAndroidRemoteServer();
RENDERDOC_StartAndroidRemoteServer(Hostname.toUtf8().data());
QThread::msleep(WAIT_TIME);
return;
}