(archivePath: string)
| 145 | } |
| 146 | |
| 147 | function detectAndroidMetadata(archivePath: string): MaterializedArtifact['detected'] { |
| 148 | const appName = readBaseNameIfMeaningful(archivePath); |
| 149 | return appName ? { appName } : {}; |
| 150 | } |
| 151 | |
| 152 | async function detectIosIpaMetadata( |
| 153 | archivePath: string, |
no test coverage detected
searching dependent graphs…