File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -514,16 +514,16 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
514
514
let pluginPodFileContent = this . $fs . readText ( pluginPodFilePath ) . wait ( ) ;
515
515
let contentToWrite = this . buildPodfileContent ( pluginPodFilePath , pluginPodFileContent ) ;
516
516
this . $fs . appendFile ( this . projectPodFilePath , contentToWrite ) . wait ( ) ;
517
+
518
+ let project = this . createPbxProj ( ) ;
519
+ project . updateBuildProperty ( "IPHONEOS_DEPLOYMENT_TARGET" , "8.0" ) ;
520
+ this . $logger . info ( "The iOS Deployment Target is now 8.0 in order to support Cocoa Touch Frameworks." ) ;
521
+ this . savePbxProj ( project ) . wait ( ) ;
517
522
}
518
523
519
524
if ( opts && opts . executePodInstall && this . $fs . exists ( pluginPodFilePath ) . wait ( ) ) {
520
525
this . executePodInstall ( ) . wait ( ) ;
521
526
}
522
-
523
- let project = this . createPbxProj ( ) ;
524
- project . updateBuildProperty ( "IPHONEOS_DEPLOYMENT_TARGET" , "8.0" ) ;
525
- this . $logger . info ( "The iOS Deployment Target is now 8.0 in order to support Cocoa Touch Frameworks." ) ;
526
- this . savePbxProj ( project ) . wait ( ) ;
527
527
} ) . future < void > ( ) ( ) ;
528
528
}
529
529
You can’t perform that action at this time.
0 commit comments