@@ -28,6 +28,7 @@ const appc = require('node-appc'),
28
28
path = require ( 'path' ) ,
29
29
temp = require ( 'temp' ) ,
30
30
util = require ( 'util' ) ,
31
+ xcodeParser = require ( 'xcode/lib/parser/pbxproj' ) ,
31
32
__ = appc . i18n ( __dirname ) . __ ,
32
33
series = appc . async . series ,
33
34
xcode = require ( 'xcode' ) ;
@@ -117,6 +118,20 @@ iOSModuleBuilder.prototype.detectMacOSTarget = function detectMacOSTarget() {
117
118
return isMacOSEnabled ;
118
119
} ;
119
120
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
+
120
135
iOSModuleBuilder . prototype . run = function run ( logger , config , cli , finished ) {
121
136
Builder . prototype . run . apply ( this , arguments ) ;
122
137
@@ -237,6 +252,60 @@ iOSModuleBuilder.prototype.processLicense = function processLicense() {
237
252
} ;
238
253
239
254
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
+
240
309
const re = / ^ ( \S + ) \s * = \s * ( .* ) $ / ,
241
310
bindingReg = / \$ \( ( [ ^ $ ] + ) \) / g;
242
311
0 commit comments