(archivePath: string)
| 66 | } |
| 67 | |
| 68 | async 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 | |
| 81 | async function resolveIosArtifact( |
| 82 | archivePath: string, |
no test coverage detected
searching dependent graphs…