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

Function resolveAndroidArtifact

src/daemon/artifact-materialization.ts:68–79  ·  view source on GitHub ↗
(archivePath: string)

Source from the content-addressed store, hash-verified

66}
67
68async function resolveAndroidArtifact(archivePath: string): Promise<MaterializedArtifact> {
69 const kind = await detectAndroidArtifactKind(archivePath);
70 const normalizedArchivePath = normalizeArchiveExtension(
71 archivePath,
72 kind === 'aab' ? '.aab' : '.apk',
73 );
74 return {
75 archivePath: normalizedArchivePath,
76 installablePath: normalizedArchivePath,
77 detected: detectAndroidMetadata(normalizedArchivePath),
78 };
79}
80
81async function resolveIosArtifact(
82 archivePath: string,

Callers 1

Calls 3

detectAndroidMetadataFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…