Open-source idb interaction code

Summary:
I've outlined the tasks required to get iOS device support working for open source users [here](https://github.com/facebook/flipper/issues/262).

This is the first step. It publishes the same code we use internally to GitHub, but in a state where it is only "available" for non-public builds. This will not change any behavior, but means that together with the community, we can start adapting it to suit everyone, and then eventually flip "available" to true for everyone.

Reviewed By: passy

Differential Revision: D21740193

fbshipit-source-id: 586c79ad850f67da330c10a007605ff25a187544
This commit is contained in:
John Knox
2020-05-29 05:58:18 -07:00
committed by Facebook GitHub Bot
parent bd50f60316
commit 5723553fba
5 changed files with 136 additions and 74 deletions

View File

@@ -16,7 +16,7 @@ import {promisify} from 'util';
import path from 'path';
import child_process from 'child_process';
const execFile = child_process.execFile;
import iosUtil from '../fb-stubs/iOSContainerUtility';
import iosUtil from '../utils/iOSContainerUtility';
import IOSDevice from '../devices/IOSDevice';
import isProduction from '../utils/isProduction';
import GK from '../fb-stubs/GK';