MCPcopy Index your code
hub / github.com/callstack/agent-device / parseAndroidAvdList

Function parseAndroidAvdList

src/platforms/android/devices.ts:291–296  ·  view source on GitHub ↗
(rawOutput: string)

Source from the content-addressed store, hash-verified

289}
290
291export function parseAndroidAvdList(rawOutput: string): string[] {
292 return rawOutput
293 .split('\n')
294 .map((line) => line.trim())
295 .filter((line) => line.length > 0);
296}
297
298export function resolveAndroidAvdName(
299 avdNames: string[],

Callers 2

devices.test.tsFile · 0.90
listAndroidAvdNamesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected