(appPath: string)
| 783 | } |
| 784 | |
| 785 | function isAndroidAppBundlePath(appPath: string): boolean { |
| 786 | return path.extname(appPath).toLowerCase() === '.aab'; |
| 787 | } |
| 788 | |
| 789 | async function installAndroidAppBundle(device: DeviceInfo, appPath: string): Promise<void> { |
| 790 | const provider = resolveAndroidAdbProvider(device); |
no outgoing calls
no test coverage detected