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

This commit is contained in:
Treehugger Robot
2017-11-02 02:16:28 +00:00
committed by Gerrit Code Review

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: