OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 """Utility script to install APKs from the command line quickly.""" | 7 """Utility script to install APKs from the command line quickly.""" |
8 | 8 |
9 import optparse | 9 import optparse |
10 import os | 10 import os |
11 import sys | 11 import sys |
12 | 12 |
13 from pylib import android_commands | |
14 from pylib import constants | 13 from pylib import constants |
15 from pylib.device import device_utils | 14 from pylib.device import device_utils |
16 | 15 |
17 | 16 |
18 def AddInstallAPKOption(option_parser): | 17 def AddInstallAPKOption(option_parser): |
19 """Adds apk option used to install the APK to the OptionParser.""" | 18 """Adds apk option used to install the APK to the OptionParser.""" |
20 option_parser.add_option('--apk', | 19 option_parser.add_option('--apk', |
21 help=('DEPRECATED The name of the apk containing the' | 20 help=('DEPRECATED The name of the apk containing the' |
22 ' application (with the .apk extension).')) | 21 ' application (with the .apk extension).')) |
23 option_parser.add_option('--apk_package', | 22 option_parser.add_option('--apk_package', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 options, args = parser.parse_args(argv) | 63 options, args = parser.parse_args(argv) |
65 | 64 |
66 if len(args) > 1 and options.apk: | 65 if len(args) > 1 and options.apk: |
67 parser.error("Appending the apk as argument can't be used with --apk.") | 66 parser.error("Appending the apk as argument can't be used with --apk.") |
68 elif len(args) > 2: | 67 elif len(args) > 2: |
69 parser.error("Too many arguments.") | 68 parser.error("Too many arguments.") |
70 | 69 |
71 constants.SetBuildType(options.build_type) | 70 constants.SetBuildType(options.build_type) |
72 ValidateInstallAPKOption(parser, options, args) | 71 ValidateInstallAPKOption(parser, options, args) |
73 | 72 |
74 devices = android_commands.GetAttachedDevices() | 73 devices = device_utils.DeviceUtils.HealthyDevices() |
75 | 74 |
76 if options.device: | 75 if options.device: |
77 if options.device not in devices: | 76 device_serials = [d.adb.GetDeviceSerial() for d in devices] |
| 77 if options.device not in device_serials: |
78 raise Exception('Error: %s not in attached devices %s' % (options.device, | 78 raise Exception('Error: %s not in attached devices %s' % (options.device, |
79 ','.join(devices))) | 79 ','.join(device_serials))) |
80 devices = [options.device] | 80 devices = [options.device] |
81 | 81 |
82 if not devices: | 82 if not devices: |
83 raise Exception('Error: no connected devices') | 83 raise Exception('Error: no connected devices') |
84 | 84 |
85 device_utils.DeviceUtils.parallel(devices).Install( | 85 device_utils.DeviceUtils.parallel(devices).Install( |
86 options.apk, reinstall=options.keep_data) | 86 options.apk, reinstall=options.keep_data) |
87 | 87 |
88 | 88 |
89 if __name__ == '__main__': | 89 if __name__ == '__main__': |
90 sys.exit(main(sys.argv)) | 90 sys.exit(main(sys.argv)) |
91 | 91 |
OLD | NEW |