Skip to content

Commit

Permalink
fix(ios): remove old tiverify.xcframework references from project (#1…
Browse files Browse the repository at this point in the history
…2110)

Fixes TIMOB-28099
  • Loading branch information
build committed Sep 21, 2020
1 parent 9b44531 commit cd7c270
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3946,7 +3946,9 @@ iOSBuilder.prototype.createXcodeProject = function createXcodeProject(next) {
});

// add tiverify.framework
xcodeProject.removeFramework('tiverify.xcframework', { customFramework: true, embed: true });
// technically the `lastKNownFileType` option is wrong, but the xcode module
// does not properly handle `.xcframework` extensions without it yet
xcodeProject.removeFramework('tiverify.xcframework', { lastKnownFileType: 'wrapper.framework' });

const tiverifyFrameworkFileRefUuid = this.generateXcodeUuid(xcodeProject);
const tiverifyFrameworkBuildFileUuid = this.generateXcodeUuid(xcodeProject);
Expand Down

0 comments on commit cd7c270

Please sign in to comment.