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 @@ -519,16 +519,16 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
519
519
let pluginPodFileContent = this . $fs . readText ( pluginPodFilePath ) . wait ( ) ;
520
520
let contentToWrite = this . buildPodfileContent ( pluginPodFilePath , pluginPodFileContent ) ;
521
521
this . $fs . appendFile ( this . projectPodFilePath , contentToWrite ) . wait ( ) ;
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 in CocoaPods." ) ;
526
+ this . savePbxProj ( project ) . wait ( ) ;
522
527
}
523
528
524
529
if ( opts && opts . executePodInstall && this . $fs . exists ( pluginPodFilePath ) . wait ( ) ) {
525
530
this . executePodInstall ( ) . wait ( ) ;
526
531
}
527
-
528
- let project = this . createPbxProj ( ) ;
529
- project . updateBuildProperty ( "IPHONEOS_DEPLOYMENT_TARGET" , "8.0" ) ;
530
- this . $logger . info ( "The iOS Deployment Target is now 8.0 in order to support Cocoa Touch Frameworks." ) ;
531
- this . savePbxProj ( project ) . wait ( ) ;
532
532
} ) . future < void > ( ) ( ) ;
533
533
}
534
534
You can’t perform that action at this time.
0 commit comments