From 489f4589089b172a7c38b29940897fd162c790c0 Mon Sep 17 00:00:00 2001 From: Mitko-Kerezov Date: Thu, 14 Apr 2016 09:52:50 +0300 Subject: [PATCH] Remove CocoaPods .xcconfig file #includes The CLI already takes care to include these files' contents inside `plugins-debug` and `plugins-release` xcconfig files, so these includes are gratuitous. Moreover due to an [issue with CocoaPods 1.0.0](https://github.com/NativeScript/nativescript-cli/issues/1611), the referenced CocoaPods .xcconfig file path is wrong. --- build/project-template/__PROJECT_NAME__/build-debug.xcconfig | 1 - build/project-template/__PROJECT_NAME__/build-release.xcconfig | 1 - 2 files changed, 2 deletions(-) diff --git a/build/project-template/__PROJECT_NAME__/build-debug.xcconfig b/build/project-template/__PROJECT_NAME__/build-debug.xcconfig index 1bcf90bdd..a5232ac85 100644 --- a/build/project-template/__PROJECT_NAME__/build-debug.xcconfig +++ b/build/project-template/__PROJECT_NAME__/build-debug.xcconfig @@ -1,3 +1,2 @@ #include "build.xcconfig" -#include "Pods/Target Support Files/Pods/Pods.debug.xcconfig" #include "../plugins-debug.xcconfig" diff --git a/build/project-template/__PROJECT_NAME__/build-release.xcconfig b/build/project-template/__PROJECT_NAME__/build-release.xcconfig index 81193b002..4b22228e1 100644 --- a/build/project-template/__PROJECT_NAME__/build-release.xcconfig +++ b/build/project-template/__PROJECT_NAME__/build-release.xcconfig @@ -1,3 +1,2 @@ #include "build.xcconfig" -#include "Pods/Target Support Files/Pods/Pods.release.xcconfig" #include "../plugins-release.xcconfig"