Merge "Record the path to adb used for the device"

am: b7cf899a10

Change-Id: I747f346a3ab5e8a6fdbce6fac3db5af7dc115ae0
This commit is contained in:
Ryan Prichard
2017-11-02 02:22:17 +00:00
committed by android-build-merger

View File

@@ -260,6 +260,7 @@ class AndroidDevice(object):
def __init__(self, serial, product=None, adb_path='adb'):
self.serial = serial
self.product = product
self.adb_path = adb_path
self.adb_cmd = [adb_path]
if self.serial is not None: