MCPcopy Create free account
hub / github.com/callstack/agent-device / install

Function install

src/platforms/android/snapshot-helper-install.ts:164–170  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

162 options: { packageName: string; timeoutMs?: number },
163): Promise<Awaited<ReturnType<AndroidAdbExecutor>>> {
164 const install = async () =>
165 await installAndroidAdbPackage(apkPath, {
166 allowFailure: true,
167 provider: adbProvider,
168 ...installOptions,
169 timeoutMs: options.timeoutMs,
170 });
171
172 const result = await install();
173 if (result.exitCode === 0 || !isInstallUpdateIncompatible(result)) {

Callers 2

installAndroidAdbPackageFunction · 0.85

Calls 1

installAndroidAdbPackageFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…