(appBundlePath: string, key: string)
| 181 | } |
| 182 | |
| 183 | async function readIosPlistValue(appBundlePath: string, key: string): Promise<string | undefined> { |
| 184 | const infoPlistPath = path.join(appBundlePath, 'Info.plist'); |
| 185 | return await readInfoPlistString(infoPlistPath, key); |
| 186 | } |
| 187 | |
| 188 | function readBaseNameIfMeaningful(filePath: string, suffix?: string): string | undefined { |
| 189 | const basename = suffix |
no test coverage detected
searching dependent graphs…