use adbkit instead of adbkit-fb

Summary: Finally we are able to switch back from our adbkit-fb fork to the original `adbkit`. Replacing all imports

Reviewed By: jknoxville

Differential Revision: D17343236

fbshipit-source-id: e6dd328f1a956544e8be2ab768aa270972463c6b
This commit is contained in:
Daniel Büchele
2019-09-13 05:25:36 -07:00
committed by Facebook Github Bot
parent b3de081f68
commit e33f72bb21
12 changed files with 55 additions and 62 deletions

View File

@@ -9,7 +9,7 @@ import {promisify} from 'util';
import child_process from 'child_process';
import promiseRetry from 'promise-retry';
import adbConfig from '../utils/adbConfig';
import adbkit, {Client} from 'adbkit-fb';
import adbkit, {Client} from 'adbkit';
const MAX_RETRIES = 5;
let instance: Promise<Client>;