Skip to content

Commit 1912296

Browse files
authored
fix(ios): append TitaniumKit.xcframework if module is created with sdk < 9.2.0 (#12160)
Fixes TIMOB-28159
1 parent 655a487 commit 1912296

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

iphone/cli/commands/_buildModule.js

+69
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const appc = require('node-appc'),
2828
path = require('path'),
2929
temp = require('temp'),
3030
util = require('util'),
31+
xcodeParser = require('xcode/lib/parser/pbxproj'),
3132
__ = appc.i18n(__dirname).__,
3233
series = appc.async.series,
3334
xcode = require('xcode');
@@ -117,6 +118,20 @@ iOSModuleBuilder.prototype.detectMacOSTarget = function detectMacOSTarget() {
117118
return isMacOSEnabled;
118119
};
119120

121+
iOSModuleBuilder.prototype.generateXcodeUuid = function generateXcodeUuid(xcodeProject) {
122+
// normally we would want truly unique ids, but we want predictability so that we
123+
// can detect when the project has changed and if we need to rebuild the app
124+
if (!this.xcodeUuidIndex) {
125+
this.xcodeUuidIndex = 1;
126+
}
127+
const id = appc.string.lpad(this.xcodeUuidIndex++, 24, '0');
128+
if (xcodeProject && xcodeProject.allUuids().indexOf(id) >= 0) {
129+
return this.generateXcodeUuid(xcodeProject);
130+
} else {
131+
return id;
132+
}
133+
};
134+
120135
iOSModuleBuilder.prototype.run = function run(logger, config, cli, finished) {
121136
Builder.prototype.run.apply(this, arguments);
122137

@@ -237,6 +252,60 @@ iOSModuleBuilder.prototype.processLicense = function processLicense() {
237252
};
238253

239254
iOSModuleBuilder.prototype.processTiXcconfig = function processTiXcconfig(next) {
255+
const srcFile = path.join(this.projectDir, this.moduleName + '.xcodeproj', 'project.pbxproj');
256+
const xcodeProject = xcode.project(path.join(this.projectDir, this.moduleName + '.xcodeproj', 'project.pbxproj'));
257+
const contents = fs.readFileSync(srcFile).toString();
258+
const appName = this.moduleIdAsIdentifier;
259+
260+
if (this.isFramework && !contents.includes('TitaniumKit.xcframework')) {
261+
this.logger.warn(`Module created with sdk < 9.2.0, need to add TitaniumKit.xcframework. The ${this.moduleName}.xcodeproj has been updated.`);
262+
263+
xcodeProject.hash = xcodeParser.parse(contents);
264+
const xobjs = xcodeProject.hash.project.objects,
265+
projectUuid = xcodeProject.hash.project.rootObject,
266+
pbxProject = xobjs.PBXProject[projectUuid],
267+
mainTargetUuid = pbxProject.targets.filter(function (t) { return t.comment.replace(/^"/, '').replace(/"$/, '') === appName; })[0].value,
268+
mainGroupChildren = xobjs.PBXGroup[pbxProject.mainGroup].children,
269+
buildPhases = xobjs.PBXNativeTarget[mainTargetUuid].buildPhases,
270+
frameworksGroup = xobjs.PBXGroup[mainGroupChildren.filter(function (child) { return child.comment === 'Frameworks'; })[0].value],
271+
// we lazily find the frameworks and embed frameworks uuids by working our way backwards so we don't have to compare comments
272+
frameworksBuildPhase = xobjs.PBXFrameworksBuildPhase[
273+
buildPhases.filter(phase => xobjs.PBXFrameworksBuildPhase[phase.value])[0].value
274+
],
275+
frameworkFileRefUuid = this.generateXcodeUuid(xcodeProject),
276+
frameworkBuildFileUuid = this.generateXcodeUuid(xcodeProject);
277+
278+
xobjs.PBXFileReference[frameworkFileRefUuid] = {
279+
isa: 'PBXFileReference',
280+
lastKnownFileType: 'wrapper.xcframework',
281+
name: '"TitaniumKit.xcframework"',
282+
path: '"$(TITANIUM_SDK)/iphone/Frameworks/TitaniumKit.xcframework"',
283+
sourceTree: '"<absolute>"'
284+
};
285+
xobjs.PBXFileReference[frameworkFileRefUuid + '_comment'] = 'TitaniumKit.xcframework';
286+
287+
xobjs.PBXBuildFile[frameworkBuildFileUuid] = {
288+
isa: 'PBXBuildFile',
289+
fileRef: frameworkFileRefUuid,
290+
fileRef_comment: 'TitaniumKit.xcframework'
291+
};
292+
xobjs.PBXBuildFile[frameworkBuildFileUuid + '_comment'] = 'TitaniumKit.xcframework in Frameworks';
293+
294+
frameworksBuildPhase.files.push({
295+
value: frameworkBuildFileUuid,
296+
comment: xobjs.PBXBuildFile[frameworkBuildFileUuid + '_comment']
297+
});
298+
299+
frameworksGroup.children.push({
300+
value: frameworkFileRefUuid,
301+
comment: 'TitaniumKit.xcframework'
302+
});
303+
304+
const updatedContent = xcodeProject.writeSync();
305+
306+
fs.writeFileSync(srcFile, updatedContent);
307+
}
308+
240309
const re = /^(\S+)\s*=\s*(.*)$/,
241310
bindingReg = /\$\(([^$]+)\)/g;
242311

0 commit comments

Comments
 (0)