We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72c96bc commit 786d10bCopy full SHA for 786d10b
src/interceptors/android/adb-commands.ts
@@ -9,6 +9,9 @@ export const SYSTEM_CA_PATH = '/system/etc/security/cacerts';
9
10
export function createAdbClient() {
11
return adb.createClient({
12
+ port: process.env['ANDROID_ADB_SERVER_PORT']
13
+ ? parseInt(process.env['ANDROID_ADB_SERVER_PORT'], 10)
14
+ : 5037,
15
// The path used to start adb, if it isn't already running:
16
bin: process.env['ANDROID_HOME']
17
? path.join(process.env['ANDROID_HOME'], 'platform-tools', 'adb')
0 commit comments