diff --git a/src/index.ts b/src/index.ts index f417f15..43734b8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -116,7 +116,11 @@ export const makeUniversalApp = async (opts: MakeUniversalOpts): Promise = if (x64Sha !== arm64Sha) { d('SHA for file', file.relativePath, `does not match across builds ${x64Sha}!=${arm64Sha}`); // The MainMenu.nib files generated by Xcode13 are deterministic in effect but not deterministic in generated sequence - if (path.basename(path.dirname(file.relativePath)) === 'MainMenu.nib') { + // Same for Assets.car + if ( + path.basename(path.dirname(file.relativePath)) === 'MainMenu.nib' || + path.basename(path.dirname(file.relativePath)) === 'Assets.car' + ) { // The mismatch here is OK so we just move on to the next one continue; }