Record the path to adb used for the device

Test: run ndk-gdb.py
Change-Id: I12487c63ee00aae46adba9c98056f295a341c64a
This commit is contained in:
Ryan Prichard
2017-10-19 16:43:52 -07:00
parent 21147e4d93
commit 5b1219eaaa

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: