Add command to install app to flipper server

Summary: There is a new flipper server command to install apps. For android it uses adb (via adb kit) For ios depending on idb availablity it will use idb or xcrun. Consumed in the next diff

Reviewed By: lblasa, aigoncharov

Differential Revision: D36936637

fbshipit-source-id: e09d34d840a9f3bf9136bcaf94fb8ca15dd27cbb
This commit is contained in:
Luke De Feo
2022-07-07 07:50:14 -07:00
committed by Facebook GitHub Bot
parent 1b02f105dc
commit 6c5faf2932
11 changed files with 99 additions and 1 deletions

View File

@@ -80,4 +80,8 @@ export abstract class ServerDevice {
async navigateToLocation(_location: string) {
throw new Error('navigateLocation not implemented on BaseDevice');
}
async installApp(_appBundlePath: string): Promise<void> {
throw new Error('Install not implemented');
}
}