From 1f7a7b8ffa14925010b3b9e77fc55c7deb29560a Mon Sep 17 00:00:00 2001 From: Dimitar Kerezov Date: Tue, 26 Apr 2016 12:40:07 +0300 Subject: [PATCH] Do not convert CocoaPods' .pbxproject back to ASCII format Only convert the main project's .pbxproject back to ASCII format as that's the only project modified by `node-xcode`. Xcode and CocoaPods are able to parse data from .pbxproject files regardless of their format - Binary, ASCII or XML --- lib/services/ios-project-service.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/services/ios-project-service.ts b/lib/services/ios-project-service.ts index 2927d0b6e1..692ce7b46c 100644 --- a/lib/services/ios-project-service.ts +++ b/lib/services/ios-project-service.ts @@ -503,10 +503,6 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ return path.join(this.platformData.projectRoot, this.$projectData.projectName + IOSProjectService.XCODE_PROJECT_EXT_NAME); } - private get cocoaPodsXcodeprojPath(): string { - return path.join(this.platformData.projectRoot, "Pods", "Pods" + IOSProjectService.XCODE_PROJECT_EXT_NAME); - } - private get projectPodFilePath(): string { return path.join(this.platformData.projectRoot, "Podfile"); } @@ -682,7 +678,6 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ if (this.$xcprojService.getXcprojInfo().wait().shouldUseXcproj) { this.$childProcess.exec(`xcproj --project ${this.xcodeprojPath} touch`).wait(); - this.$childProcess.exec(`xcproj --project ${this.cocoaPodsXcodeprojPath} touch`).wait(); } return childProcess;