Android Debug Bridge interface
appium-adb
==========


A wrapper over Android Debugger Bridge, implemented using ES6
and along with async/await. This package is mainly used by Appium to perform all adb operations on Android devices.
``bash`
npm install appium-adb
`bash`
npm run dev
`bash`
npm run test
By default the functional tests use an avd named NEXUS_S_18_X86, with API LevelPLATFORM_VERSION
18. To change this, you can use the environment variables ,API_LEVEL, and ANDROID_AVD. If PLATFORM_VERSION is set then it is notAPI_LEVEL
necessary to set as it will be inferred.
`bash`
npm run e2e-test
example:
`js
import { ADB } from 'appium-adb';
const adb = await ADB.createADB();
console.log(await adb.getPIDsByName('com.android.phone'));
``