From 1faa02cfb7f4f967fdafbb9d709a9dd7b0cde56a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=B9=8F=E9=9C=96?= <957415459@qq.com> Date: Fri, 2 Nov 2018 14:59:45 +0800 Subject: [PATCH] =?UTF-8?q?A=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- A.podspec | 4 +- A/Classes/ATarget/A_Target.h | 12 + A/Classes/ATarget/A_Target.m | 12 + A/Classes/AVC/AViewController.h | 13 + A/Classes/AVC/AViewController.m | 37 + A/Classes/ReplaceMe.m | 0 Example/A.xcodeproj/project.pbxproj | 40 +- .../A.xcworkspace/contents.xcworkspacedata | 10 + Example/Podfile.lock | 16 + Example/Pods/Local Podspecs/A.podspec.json | 22 + Example/Pods/Manifest.lock | 16 + Example/Pods/Pods.xcodeproj/project.pbxproj | 807 ++++++++++++++++++ Example/Pods/Target Support Files/A/A-dummy.m | 5 + .../Pods/Target Support Files/A/A-prefix.pch | 12 + .../Pods/Target Support Files/A/A-umbrella.h | 18 + .../Pods/Target Support Files/A/A.modulemap | 6 + .../Pods/Target Support Files/A/A.xcconfig | 8 + .../Pods/Target Support Files/A/Info.plist | 26 + .../Pods-A_Example/Info.plist | 26 + .../Pods-A_Example-acknowledgements.markdown | 26 + .../Pods-A_Example-acknowledgements.plist | 58 ++ .../Pods-A_Example/Pods-A_Example-dummy.m | 5 + .../Pods-A_Example-frameworks.sh | 153 ++++ .../Pods-A_Example-resources.sh | 118 +++ .../Pods-A_Example/Pods-A_Example-umbrella.h | 16 + .../Pods-A_Example.debug.xcconfig | 9 + .../Pods-A_Example/Pods-A_Example.modulemap | 6 + .../Pods-A_Example.release.xcconfig | 9 + .../Pods-A_Tests/Info.plist | 26 + .../Pods-A_Tests-acknowledgements.markdown | 3 + .../Pods-A_Tests-acknowledgements.plist | 29 + .../Pods-A_Tests/Pods-A_Tests-dummy.m | 5 + .../Pods-A_Tests/Pods-A_Tests-frameworks.sh | 146 ++++ .../Pods-A_Tests/Pods-A_Tests-resources.sh | 118 +++ .../Pods-A_Tests/Pods-A_Tests-umbrella.h | 16 + .../Pods-A_Tests/Pods-A_Tests.debug.xcconfig | 8 + .../Pods-A_Tests/Pods-A_Tests.modulemap | 6 + .../Pods-A_Tests.release.xcconfig | 8 + 38 files changed, 1829 insertions(+), 26 deletions(-) create mode 100644 A/Classes/ATarget/A_Target.h create mode 100644 A/Classes/ATarget/A_Target.m create mode 100644 A/Classes/AVC/AViewController.h create mode 100644 A/Classes/AVC/AViewController.m delete mode 100644 A/Classes/ReplaceMe.m create mode 100644 Example/A.xcworkspace/contents.xcworkspacedata create mode 100644 Example/Podfile.lock create mode 100644 Example/Pods/Local Podspecs/A.podspec.json create mode 100644 Example/Pods/Manifest.lock create mode 100644 Example/Pods/Pods.xcodeproj/project.pbxproj create mode 100644 Example/Pods/Target Support Files/A/A-dummy.m create mode 100644 Example/Pods/Target Support Files/A/A-prefix.pch create mode 100644 Example/Pods/Target Support Files/A/A-umbrella.h create mode 100644 Example/Pods/Target Support Files/A/A.modulemap create mode 100644 Example/Pods/Target Support Files/A/A.xcconfig create mode 100644 Example/Pods/Target Support Files/A/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-A_Example/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-acknowledgements.markdown create mode 100644 Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-acknowledgements.plist create mode 100644 Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-dummy.m create mode 100755 Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-frameworks.sh create mode 100755 Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-resources.sh create mode 100644 Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.release.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-A_Tests/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-acknowledgements.markdown create mode 100644 Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-acknowledgements.plist create mode 100644 Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-dummy.m create mode 100755 Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-frameworks.sh create mode 100755 Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-resources.sh create mode 100644 Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.release.xcconfig diff --git a/A.podspec b/A.podspec index cd7086e..7dfe31a 100644 --- a/A.podspec +++ b/A.podspec @@ -21,11 +21,11 @@ Pod::Spec.new do |s| TODO: Add long description of the pod here. DESC - s.homepage = 'https://github.com/957415459@qq.com/A' + s.homepage = 'https://github.com/chengyinglpl/A' # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { '957415459@qq.com' => '957415459@qq.com' } - s.source = { :git => 'https://github.com/957415459@qq.com/A.git', :tag => s.version.to_s } + s.source = { :git => 'https://github.com/chengyinglpl/A.git', :tag => s.version.to_s } # s.social_media_url = 'https://twitter.com/' s.ios.deployment_target = '8.0' diff --git a/A/Classes/ATarget/A_Target.h b/A/Classes/ATarget/A_Target.h new file mode 100644 index 0000000..724d1e9 --- /dev/null +++ b/A/Classes/ATarget/A_Target.h @@ -0,0 +1,12 @@ +// +// A_Target.h +// A +// +// Created by 李鹏霖 on 2018/11/2. +// + +#import + +@interface A_Target : NSObject + +@end diff --git a/A/Classes/ATarget/A_Target.m b/A/Classes/ATarget/A_Target.m new file mode 100644 index 0000000..cca1ea7 --- /dev/null +++ b/A/Classes/ATarget/A_Target.m @@ -0,0 +1,12 @@ +// +// A_Target.m +// A +// +// Created by 李鹏霖 on 2018/11/2. +// + +#import "A_Target.h" + +@implementation A_Target + +@end diff --git a/A/Classes/AVC/AViewController.h b/A/Classes/AVC/AViewController.h new file mode 100644 index 0000000..ba11ddc --- /dev/null +++ b/A/Classes/AVC/AViewController.h @@ -0,0 +1,13 @@ +// +// AViewController.h +// A_Example +// +// Created by 李鹏霖 on 2018/11/2. +// Copyright © 2018年 957415459@qq.com. All rights reserved. +// + +#import + +@interface AViewController : UIViewController + +@end diff --git a/A/Classes/AVC/AViewController.m b/A/Classes/AVC/AViewController.m new file mode 100644 index 0000000..5e95329 --- /dev/null +++ b/A/Classes/AVC/AViewController.m @@ -0,0 +1,37 @@ +// +// AViewController.m +// A_Example +// +// Created by 李鹏霖 on 2018/11/2. +// Copyright © 2018年 957415459@qq.com. All rights reserved. +// + +#import "AViewController.h" + +@interface AViewController () + +@end + +@implementation AViewController + +- (void)viewDidLoad { + [super viewDidLoad]; + // Do any additional setup after loading the view. +} + +- (void)didReceiveMemoryWarning { + [super didReceiveMemoryWarning]; + // Dispose of any resources that can be recreated. +} + +/* +#pragma mark - Navigation + +// In a storyboard-based application, you will often want to do a little preparation before navigation +- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { + // Get the new view controller using [segue destinationViewController]. + // Pass the selected object to the new view controller. +} +*/ + +@end diff --git a/A/Classes/ReplaceMe.m b/A/Classes/ReplaceMe.m deleted file mode 100644 index e69de29..0000000 diff --git a/Example/A.xcodeproj/project.pbxproj b/Example/A.xcodeproj/project.pbxproj index e3f184a..3650f29 100644 --- a/Example/A.xcodeproj/project.pbxproj +++ b/Example/A.xcodeproj/project.pbxproj @@ -38,7 +38,7 @@ /* Begin PBXFileReference section */ 1B7FCB0E383D3E7DFF322D1B /* Pods_A_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_A_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1E368B66539FC5008048B462 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = ""; }; + 1E368B66539FC5008048B462 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 2AA8729E2784DD551ACB4C52 /* Pods_A_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_A_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 388AF6F0F3826954087E2864 /* Pods-A_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-A_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.release.xcconfig"; sourceTree = ""; }; 6003F58A195388D20070C39A /* A_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = A_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -59,14 +59,14 @@ 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; - 6019F25DE3CAE3FE1FF8D98B /* A.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = A.podspec; path = ../A.podspec; sourceTree = ""; }; + 6019F25DE3CAE3FE1FF8D98B /* A.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = A.podspec; path = ../A.podspec; sourceTree = ""; }; 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 6B030DF05957D79E1FAB7C6A /* Pods-A_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-A_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.debug.xcconfig"; sourceTree = ""; }; 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 913F8959BE8DE54A826AFE66 /* Pods-A_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-A_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-A_Example/Pods-A_Example.debug.xcconfig"; sourceTree = ""; }; B0C1ED5CBA31C867748B61F1 /* Pods-A_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-A_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-A_Example/Pods-A_Example.release.xcconfig"; sourceTree = ""; }; - E893E8584A05EB9F7BCB2926 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; + E893E8584A05EB9F7BCB2926 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -207,7 +207,7 @@ 6003F586195388D20070C39A /* Sources */, 6003F587195388D20070C39A /* Frameworks */, 6003F588195388D20070C39A /* Resources */, - 6044DEF00A6D9CD25F014F4A /* [CP] Embed Pods Frameworks */, + A09E209CF91516F07C6E6DCD /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); @@ -299,15 +299,11 @@ buildActionMask = 2147483647; files = ( ); - inputFileListPaths = ( - ); inputPaths = ( "${PODS_PODFILE_DIR_PATH}/Podfile.lock", "${PODS_ROOT}/Manifest.lock", ); name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); outputPaths = ( "$(DERIVED_FILE_DIR)/Pods-A_Example-checkManifestLockResult.txt", ); @@ -316,29 +312,25 @@ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - 6044DEF00A6D9CD25F014F4A /* [CP] Embed Pods Frameworks */ = { + 808E90B5796506469186D359 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); - inputFileListPaths = ( - ); inputPaths = ( - "${SRCROOT}/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-frameworks.sh", - "${BUILT_PRODUCTS_DIR}/A/A.framework", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", ); + name = "[CP] Check Pods Manifest.lock"; outputPaths = ( - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework", + "$(DERIVED_FILE_DIR)/Pods-A_Tests-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-frameworks.sh\"\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - 808E90B5796506469186D359 /* [CP] Check Pods Manifest.lock */ = { + A09E209CF91516F07C6E6DCD /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -346,18 +338,18 @@ inputFileListPaths = ( ); inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", + "${SRCROOT}/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-frameworks.sh", + "${BUILT_PRODUCTS_DIR}/A/A.framework", ); - name = "[CP] Check Pods Manifest.lock"; + name = "[CP] Embed Pods Frameworks"; outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-A_Tests-checkManifestLockResult.txt", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ diff --git a/Example/A.xcworkspace/contents.xcworkspacedata b/Example/A.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..c006e63 --- /dev/null +++ b/Example/A.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/Example/Podfile.lock b/Example/Podfile.lock new file mode 100644 index 0000000..9165a72 --- /dev/null +++ b/Example/Podfile.lock @@ -0,0 +1,16 @@ +PODS: + - A (0.1.0) + +DEPENDENCIES: + - A (from `../`) + +EXTERNAL SOURCES: + A: + :path: "../" + +SPEC CHECKSUMS: + A: e058ecb1f5e845666be0906e7518a808f50eb036 + +PODFILE CHECKSUM: 36bcaff5876e8d9b35a5c4a7bbe6e8816ce55d77 + +COCOAPODS: 1.5.3 diff --git a/Example/Pods/Local Podspecs/A.podspec.json b/Example/Pods/Local Podspecs/A.podspec.json new file mode 100644 index 0000000..9c7fe06 --- /dev/null +++ b/Example/Pods/Local Podspecs/A.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "A", + "version": "0.1.0", + "summary": "A short description of A.", + "description": "TODO: Add long description of the pod here.", + "homepage": "https://github.com/957415459@qq.com/A", + "license": { + "type": "MIT", + "file": "LICENSE" + }, + "authors": { + "957415459@qq.com": "957415459@qq.com" + }, + "source": { + "git": "https://github.com/957415459@qq.com/A.git", + "tag": "0.1.0" + }, + "platforms": { + "ios": "8.0" + }, + "source_files": "A/Classes/**/*" +} diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock new file mode 100644 index 0000000..9165a72 --- /dev/null +++ b/Example/Pods/Manifest.lock @@ -0,0 +1,16 @@ +PODS: + - A (0.1.0) + +DEPENDENCIES: + - A (from `../`) + +EXTERNAL SOURCES: + A: + :path: "../" + +SPEC CHECKSUMS: + A: e058ecb1f5e845666be0906e7518a808f50eb036 + +PODFILE CHECKSUM: 36bcaff5876e8d9b35a5c4a7bbe6e8816ce55d77 + +COCOAPODS: 1.5.3 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 0000000..9f29235 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,807 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 362BBC9F8CF8237DC4226ECC100E4FEF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D6DFF15000AFE2A371BF499E7AFDA808 /* Foundation.framework */; }; + 47838EA712DB912CD24B0E92AD7A45A8 /* AViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F73DB78F28365D6DC0AFC5A8D01222 /* AViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 67CAC33E218C2D22008C783C /* A_Target.h in Headers */ = {isa = PBXBuildFile; fileRef = 67CAC33C218C2D22008C783C /* A_Target.h */; }; + 67CAC33F218C2D22008C783C /* A_Target.m in Sources */ = {isa = PBXBuildFile; fileRef = 67CAC33D218C2D22008C783C /* A_Target.m */; }; + 8B530FEF42CEADC1016FACF022CC3E84 /* A-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A9C22A933DE0EDD7759AFB92F4E22851 /* A-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 969FEB82FFC8BCAFE45E2E19B4FF3338 /* A-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4E15B310CE43947B6DC35F63570DE04 /* A-dummy.m */; }; + 9FA44AA6F6B19213943B776214E451FE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D6DFF15000AFE2A371BF499E7AFDA808 /* Foundation.framework */; }; + ABA80B39C3D898C57606E6619D61F138 /* Pods-A_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 168F7D7CB252B165372C7F9B70AC49AB /* Pods-A_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B07D20567689A7562B0E0EFA2AB83E4F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D6DFF15000AFE2A371BF499E7AFDA808 /* Foundation.framework */; }; + B2A43DC88382F00034010C4C1727EC90 /* Pods-A_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BE0B801FB529B7C16AC63314F1BC7E7 /* Pods-A_Tests-dummy.m */; }; + B4899CE40EAACD82466569FBDFFF3F66 /* AViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E986BD5270B4835B6900A1DCF9078EF4 /* AViewController.m */; }; + BF4F7BCD3ABBACE35AE935CE116B3BF0 /* Pods-A_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F49D2E7871BD1E808C3483BFD9EDD77C /* Pods-A_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C5C01DD37ECEEB8235B076C87E3DAF3F /* Pods-A_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EED50CBDBB75DF861C550B40499F30 /* Pods-A_Example-dummy.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 16C1382AC2EF8525D7AA3F9A3BB182C0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9DF78D2ACFE375600983B9B9255B27AB; + remoteInfo = "Pods-A_Example"; + }; + 8E95982F7E8759D73183D2F3A56C707F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4498C8215E470BE66CDE13DC793F52D1; + remoteInfo = A; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0040F98BE878EAAC987B9B68255B96E7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 04B28FE33A6822C686F4A816AF3D8964 /* Pods-A_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-A_Example.release.xcconfig"; sourceTree = ""; }; + 114B3A268A11CC82BE74F81386301B36 /* Pods-A_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-A_Example.debug.xcconfig"; sourceTree = ""; }; + 168F7D7CB252B165372C7F9B70AC49AB /* Pods-A_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-A_Example-umbrella.h"; sourceTree = ""; }; + 16B7750FCC677D98C10814DBFD16E05A /* A.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = A.xcconfig; sourceTree = ""; }; + 1A68A820E9FECCCFCA3D810C73EAC708 /* Pods-A_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-A_Tests-resources.sh"; sourceTree = ""; }; + 1F67B1F876CA510B74F9FA7880F6BAFD /* Pods_A_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_A_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 282046880D44C54022D5D022B37F7975 /* Pods-A_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-A_Tests.release.xcconfig"; sourceTree = ""; }; + 321388CB69671B46218E68A9250B549D /* Pods-A_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-A_Tests.debug.xcconfig"; sourceTree = ""; }; + 365FB1648939044654EFDB291813A847 /* Pods-A_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-A_Example-resources.sh"; sourceTree = ""; }; + 3B47BBB8AF193119A3E325F52805DEE1 /* A-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "A-prefix.pch"; sourceTree = ""; }; + 3FD4D0C809EDCA290B453909AE188C76 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 41A06AFE32A1E4E662206992B5EF657E /* Pods-A_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-A_Tests.modulemap"; sourceTree = ""; }; + 534CB21D1F26D08962771190C29B4337 /* Pods-A_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-A_Example.modulemap"; sourceTree = ""; }; + 53E282F7DD20FC90ADCCCEA15BE5EE0E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 545DA305B7667F040386D2C1161961E7 /* A.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = A.modulemap; sourceTree = ""; }; + 580BDC0E2024748B5FB3DC5A7AEAEAE7 /* Pods-A_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-A_Example-acknowledgements.markdown"; sourceTree = ""; }; + 5BE0B801FB529B7C16AC63314F1BC7E7 /* Pods-A_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-A_Tests-dummy.m"; sourceTree = ""; }; + 67CAC33C218C2D22008C783C /* A_Target.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = A_Target.h; sourceTree = ""; }; + 67CAC33D218C2D22008C783C /* A_Target.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = A_Target.m; sourceTree = ""; }; + 715D937D714354A2CEE84FD2C754A265 /* A.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = A.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 8EF48AE5362C34C606919E4CD3EA0EBC /* Pods-A_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-A_Tests-acknowledgements.markdown"; sourceTree = ""; }; + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 95F73DB78F28365D6DC0AFC5A8D01222 /* AViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AViewController.h; sourceTree = ""; }; + 99F4470B4FEB0BA1C3B16A9529DBFEDD /* Pods_A_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_A_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A67ECF50C573629C0324251BF7CC4058 /* Pods-A_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-A_Tests-acknowledgements.plist"; sourceTree = ""; }; + A8E8BCDBA1911CBB22653DD5ED18A1BC /* A.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = A.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A9C22A933DE0EDD7759AFB92F4E22851 /* A-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "A-umbrella.h"; sourceTree = ""; }; + AC7D89A6F7E336CE9D1A2915737AF10D /* Pods-A_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-A_Example-acknowledgements.plist"; sourceTree = ""; }; + D070A07B884AFF82500B5D17B317AED0 /* Pods-A_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-A_Example-frameworks.sh"; sourceTree = ""; }; + D2EED50CBDBB75DF861C550B40499F30 /* Pods-A_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-A_Example-dummy.m"; sourceTree = ""; }; + D4E15B310CE43947B6DC35F63570DE04 /* A-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "A-dummy.m"; sourceTree = ""; }; + D5BF437F8EFF550E7B7F9E67A2B0E8F0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + D6DFF15000AFE2A371BF499E7AFDA808 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + DABA9D8339DEB243C3F6EDE3D2193BAF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + E986BD5270B4835B6900A1DCF9078EF4 /* AViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AViewController.m; sourceTree = ""; }; + F49D2E7871BD1E808C3483BFD9EDD77C /* Pods-A_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-A_Tests-umbrella.h"; sourceTree = ""; }; + FFBC2C7CC65D06062EFEDC5AC0B45710 /* Pods-A_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-A_Tests-frameworks.sh"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 264E3668BBCC302CB41EBEF4D9B60439 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B07D20567689A7562B0E0EFA2AB83E4F /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 583B4B59A63DC3911889E9D43B42DC35 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 362BBC9F8CF8237DC4226ECC100E4FEF /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DED9CACB41B9568A11977CECEA4C40B9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 9FA44AA6F6B19213943B776214E451FE /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 44D5347904CF754D6785B84253F2574A /* iOS */ = { + isa = PBXGroup; + children = ( + D6DFF15000AFE2A371BF499E7AFDA808 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + 4D649DFF05A0FE673A5BC9A4A19AF0EF /* AVC */ = { + isa = PBXGroup; + children = ( + 95F73DB78F28365D6DC0AFC5A8D01222 /* AViewController.h */, + E986BD5270B4835B6900A1DCF9078EF4 /* AViewController.m */, + ); + name = AVC; + path = A/Classes/AVC; + sourceTree = ""; + }; + 58C7630AF544121BC7B64DAB5AB6885F /* ATarget */ = { + isa = PBXGroup; + children = ( + 67CAC33C218C2D22008C783C /* A_Target.h */, + 67CAC33D218C2D22008C783C /* A_Target.m */, + ); + name = ATarget; + path = A/Classes/ATarget; + sourceTree = ""; + }; + 5F052B4782ADD2E6E40405CD1B880F9E /* Support Files */ = { + isa = PBXGroup; + children = ( + 545DA305B7667F040386D2C1161961E7 /* A.modulemap */, + 16B7750FCC677D98C10814DBFD16E05A /* A.xcconfig */, + D4E15B310CE43947B6DC35F63570DE04 /* A-dummy.m */, + 3B47BBB8AF193119A3E325F52805DEE1 /* A-prefix.pch */, + A9C22A933DE0EDD7759AFB92F4E22851 /* A-umbrella.h */, + D5BF437F8EFF550E7B7F9E67A2B0E8F0 /* Info.plist */, + ); + name = "Support Files"; + path = "Example/Pods/Target Support Files/A"; + sourceTree = ""; + }; + 7DB346D0F39D3F0E887471402A8071AB = { + isa = PBXGroup; + children = ( + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, + EC9F4FA7C192B1DE3A3F078FDB0DA59C /* Development Pods */, + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, + FC22BF639BAFC48BBE3B4EF084E111A1 /* Products */, + B0B52A393BD7E06F6E5BE505F84FD183 /* Targets Support Files */, + ); + sourceTree = ""; + }; + B0B52A393BD7E06F6E5BE505F84FD183 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + C0FC91A190CDEAF788525360059DA317 /* Pods-A_Example */, + CB8FC2C88B97A7A35C8BB0DF997C36E1 /* Pods-A_Tests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { + isa = PBXGroup; + children = ( + 44D5347904CF754D6785B84253F2574A /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + C0FC91A190CDEAF788525360059DA317 /* Pods-A_Example */ = { + isa = PBXGroup; + children = ( + 53E282F7DD20FC90ADCCCEA15BE5EE0E /* Info.plist */, + 534CB21D1F26D08962771190C29B4337 /* Pods-A_Example.modulemap */, + 580BDC0E2024748B5FB3DC5A7AEAEAE7 /* Pods-A_Example-acknowledgements.markdown */, + AC7D89A6F7E336CE9D1A2915737AF10D /* Pods-A_Example-acknowledgements.plist */, + D2EED50CBDBB75DF861C550B40499F30 /* Pods-A_Example-dummy.m */, + D070A07B884AFF82500B5D17B317AED0 /* Pods-A_Example-frameworks.sh */, + 365FB1648939044654EFDB291813A847 /* Pods-A_Example-resources.sh */, + 168F7D7CB252B165372C7F9B70AC49AB /* Pods-A_Example-umbrella.h */, + 114B3A268A11CC82BE74F81386301B36 /* Pods-A_Example.debug.xcconfig */, + 04B28FE33A6822C686F4A816AF3D8964 /* Pods-A_Example.release.xcconfig */, + ); + name = "Pods-A_Example"; + path = "Target Support Files/Pods-A_Example"; + sourceTree = ""; + }; + CB8FC2C88B97A7A35C8BB0DF997C36E1 /* Pods-A_Tests */ = { + isa = PBXGroup; + children = ( + 0040F98BE878EAAC987B9B68255B96E7 /* Info.plist */, + 41A06AFE32A1E4E662206992B5EF657E /* Pods-A_Tests.modulemap */, + 8EF48AE5362C34C606919E4CD3EA0EBC /* Pods-A_Tests-acknowledgements.markdown */, + A67ECF50C573629C0324251BF7CC4058 /* Pods-A_Tests-acknowledgements.plist */, + 5BE0B801FB529B7C16AC63314F1BC7E7 /* Pods-A_Tests-dummy.m */, + FFBC2C7CC65D06062EFEDC5AC0B45710 /* Pods-A_Tests-frameworks.sh */, + 1A68A820E9FECCCFCA3D810C73EAC708 /* Pods-A_Tests-resources.sh */, + F49D2E7871BD1E808C3483BFD9EDD77C /* Pods-A_Tests-umbrella.h */, + 321388CB69671B46218E68A9250B549D /* Pods-A_Tests.debug.xcconfig */, + 282046880D44C54022D5D022B37F7975 /* Pods-A_Tests.release.xcconfig */, + ); + name = "Pods-A_Tests"; + path = "Target Support Files/Pods-A_Tests"; + sourceTree = ""; + }; + E31E5191B3F6F9FCBFBFBBF37C081720 /* A */ = { + isa = PBXGroup; + children = ( + 4D649DFF05A0FE673A5BC9A4A19AF0EF /* AVC */, + 58C7630AF544121BC7B64DAB5AB6885F /* ATarget */, + FE7B653EA5B9AD8A8DFFA2B5516D92DF /* Pod */, + 5F052B4782ADD2E6E40405CD1B880F9E /* Support Files */, + ); + name = A; + path = ../..; + sourceTree = ""; + }; + EC9F4FA7C192B1DE3A3F078FDB0DA59C /* Development Pods */ = { + isa = PBXGroup; + children = ( + E31E5191B3F6F9FCBFBFBBF37C081720 /* A */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + FC22BF639BAFC48BBE3B4EF084E111A1 /* Products */ = { + isa = PBXGroup; + children = ( + 715D937D714354A2CEE84FD2C754A265 /* A.framework */, + 1F67B1F876CA510B74F9FA7880F6BAFD /* Pods_A_Example.framework */, + 99F4470B4FEB0BA1C3B16A9529DBFEDD /* Pods_A_Tests.framework */, + ); + name = Products; + sourceTree = ""; + }; + FE7B653EA5B9AD8A8DFFA2B5516D92DF /* Pod */ = { + isa = PBXGroup; + children = ( + A8E8BCDBA1911CBB22653DD5ED18A1BC /* A.podspec */, + DABA9D8339DEB243C3F6EDE3D2193BAF /* LICENSE */, + 3FD4D0C809EDCA290B453909AE188C76 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 33F20DF910D2F94479D10A87461F5289 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ABA80B39C3D898C57606E6619D61F138 /* Pods-A_Example-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6EB7A4372CDB0F431CB19A3C77D7ADC2 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8B530FEF42CEADC1016FACF022CC3E84 /* A-umbrella.h in Headers */, + 47838EA712DB912CD24B0E92AD7A45A8 /* AViewController.h in Headers */, + 67CAC33E218C2D22008C783C /* A_Target.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AE494C58417D1DE30E4DE6516EDF5D9D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BF4F7BCD3ABBACE35AE935CE116B3BF0 /* Pods-A_Tests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 4498C8215E470BE66CDE13DC793F52D1 /* A */ = { + isa = PBXNativeTarget; + buildConfigurationList = 05C48852A01401B00BC4F05B3AD39629 /* Build configuration list for PBXNativeTarget "A" */; + buildPhases = ( + 6EB7A4372CDB0F431CB19A3C77D7ADC2 /* Headers */, + 88BEDC6CFC36FDFD509F754F97CA7E9F /* Sources */, + DED9CACB41B9568A11977CECEA4C40B9 /* Frameworks */, + 0CF72065B274C15B016E56E6C784DA78 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = A; + productName = A; + productReference = 715D937D714354A2CEE84FD2C754A265 /* A.framework */; + productType = "com.apple.product-type.framework"; + }; + 5E800E0A92C64AF45539007199D4ED55 /* Pods-A_Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = A15F37D822E762E468392AC5A4C2DE42 /* Build configuration list for PBXNativeTarget "Pods-A_Tests" */; + buildPhases = ( + AE494C58417D1DE30E4DE6516EDF5D9D /* Headers */, + 129E35F005809E345BE67DC0B6555487 /* Sources */, + 264E3668BBCC302CB41EBEF4D9B60439 /* Frameworks */, + D53703A1DB315FE2A84B67CC9A2099BB /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 1C1679B5BBC49C6BAC78F26E34B1E667 /* PBXTargetDependency */, + ); + name = "Pods-A_Tests"; + productName = "Pods-A_Tests"; + productReference = 99F4470B4FEB0BA1C3B16A9529DBFEDD /* Pods_A_Tests.framework */; + productType = "com.apple.product-type.framework"; + }; + 9DF78D2ACFE375600983B9B9255B27AB /* Pods-A_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3CEB283C72A4C998072884FFF722ACDB /* Build configuration list for PBXNativeTarget "Pods-A_Example" */; + buildPhases = ( + 33F20DF910D2F94479D10A87461F5289 /* Headers */, + 649D20C758191223F1D7DFB73F4429A2 /* Sources */, + 583B4B59A63DC3911889E9D43B42DC35 /* Frameworks */, + DA823243E9E14E59E29D193CCD5F7E76 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + E2BEDA6CBCAEA3F9D35147E4AC1674F6 /* PBXTargetDependency */, + ); + name = "Pods-A_Example"; + productName = "Pods-A_Example"; + productReference = 1F67B1F876CA510B74F9FA7880F6BAFD /* Pods_A_Example.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0930; + LastUpgradeCheck = 0930; + }; + buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 7DB346D0F39D3F0E887471402A8071AB; + productRefGroup = FC22BF639BAFC48BBE3B4EF084E111A1 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 4498C8215E470BE66CDE13DC793F52D1 /* A */, + 9DF78D2ACFE375600983B9B9255B27AB /* Pods-A_Example */, + 5E800E0A92C64AF45539007199D4ED55 /* Pods-A_Tests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 0CF72065B274C15B016E56E6C784DA78 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D53703A1DB315FE2A84B67CC9A2099BB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DA823243E9E14E59E29D193CCD5F7E76 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 129E35F005809E345BE67DC0B6555487 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B2A43DC88382F00034010C4C1727EC90 /* Pods-A_Tests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 649D20C758191223F1D7DFB73F4429A2 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C5C01DD37ECEEB8235B076C87E3DAF3F /* Pods-A_Example-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 88BEDC6CFC36FDFD509F754F97CA7E9F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 67CAC33F218C2D22008C783C /* A_Target.m in Sources */, + 969FEB82FFC8BCAFE45E2E19B4FF3338 /* A-dummy.m in Sources */, + B4899CE40EAACD82466569FBDFFF3F66 /* AViewController.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 1C1679B5BBC49C6BAC78F26E34B1E667 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-A_Example"; + target = 9DF78D2ACFE375600983B9B9255B27AB /* Pods-A_Example */; + targetProxy = 16C1382AC2EF8525D7AA3F9A3BB182C0 /* PBXContainerItemProxy */; + }; + E2BEDA6CBCAEA3F9D35147E4AC1674F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = A; + target = 4498C8215E470BE66CDE13DC793F52D1 /* A */; + targetProxy = 8E95982F7E8759D73183D2F3A56C707F /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 06DEDF02F724AFF9129662D717FB5D5B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 282046880D44C54022D5D022B37F7975 /* Pods-A_Tests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-A_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-A_Tests/Pods-A_Tests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 10AD22F452E01B88DB3E17B21EE96383 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 16B7750FCC677D98C10814DBFD16E05A /* A.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/A/A-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/A/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/A/A.modulemap"; + PRODUCT_MODULE_NAME = A; + PRODUCT_NAME = A; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 3C1CB6AFD5174953D292BF8904A597CE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 321388CB69671B46218E68A9250B549D /* Pods-A_Tests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-A_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-A_Tests/Pods-A_Tests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 4BB2B3E1828D4F8E2C2DAE72C9E4A894 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 16B7750FCC677D98C10814DBFD16E05A /* A.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/A/A-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/A/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/A/A.modulemap"; + PRODUCT_MODULE_NAME = A; + PRODUCT_NAME = A; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 50646285DD9FD95AF390BDA3FB1948EA /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.2; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + 58DCB2BA7C34E84C00C38CEF18A96D11 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 4.2; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + 5B63A6015ED4DF96B52D955BDD67E8B4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 114B3A268A11CC82BE74F81386301B36 /* Pods-A_Example.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-A_Example/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-A_Example/Pods-A_Example.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + B0651FAF2353FD6B650B4C15E1242D24 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 04B28FE33A6822C686F4A816AF3D8964 /* Pods-A_Example.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-A_Example/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-A_Example/Pods-A_Example.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 05C48852A01401B00BC4F05B3AD39629 /* Build configuration list for PBXNativeTarget "A" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4BB2B3E1828D4F8E2C2DAE72C9E4A894 /* Debug */, + 10AD22F452E01B88DB3E17B21EE96383 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 50646285DD9FD95AF390BDA3FB1948EA /* Debug */, + 58DCB2BA7C34E84C00C38CEF18A96D11 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3CEB283C72A4C998072884FFF722ACDB /* Build configuration list for PBXNativeTarget "Pods-A_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5B63A6015ED4DF96B52D955BDD67E8B4 /* Debug */, + B0651FAF2353FD6B650B4C15E1242D24 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + A15F37D822E762E468392AC5A4C2DE42 /* Build configuration list for PBXNativeTarget "Pods-A_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3C1CB6AFD5174953D292BF8904A597CE /* Debug */, + 06DEDF02F724AFF9129662D717FB5D5B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; +} diff --git a/Example/Pods/Target Support Files/A/A-dummy.m b/Example/Pods/Target Support Files/A/A-dummy.m new file mode 100644 index 0000000..030711e --- /dev/null +++ b/Example/Pods/Target Support Files/A/A-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_A : NSObject +@end +@implementation PodsDummy_A +@end diff --git a/Example/Pods/Target Support Files/A/A-prefix.pch b/Example/Pods/Target Support Files/A/A-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Example/Pods/Target Support Files/A/A-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example/Pods/Target Support Files/A/A-umbrella.h b/Example/Pods/Target Support Files/A/A-umbrella.h new file mode 100644 index 0000000..5e16def --- /dev/null +++ b/Example/Pods/Target Support Files/A/A-umbrella.h @@ -0,0 +1,18 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "AViewController.h" +#import "BViewController.h" + +FOUNDATION_EXPORT double AVersionNumber; +FOUNDATION_EXPORT const unsigned char AVersionString[]; + diff --git a/Example/Pods/Target Support Files/A/A.modulemap b/Example/Pods/Target Support Files/A/A.modulemap new file mode 100644 index 0000000..c7d9d85 --- /dev/null +++ b/Example/Pods/Target Support Files/A/A.modulemap @@ -0,0 +1,6 @@ +framework module A { + umbrella header "A-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/A/A.xcconfig b/Example/Pods/Target Support Files/A/A.xcconfig new file mode 100644 index 0000000..cba61d4 --- /dev/null +++ b/Example/Pods/Target Support Files/A/A.xcconfig @@ -0,0 +1,8 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/A +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Example/Pods/Target Support Files/A/Info.plist b/Example/Pods/Target Support Files/A/Info.plist new file mode 100644 index 0000000..161a9d3 --- /dev/null +++ b/Example/Pods/Target Support Files/A/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.1.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Info.plist b/Example/Pods/Target Support Files/Pods-A_Example/Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-acknowledgements.markdown new file mode 100644 index 0000000..d583a87 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-acknowledgements.markdown @@ -0,0 +1,26 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## A + +Copyright (c) 2018 957415459@qq.com <957415459@qq.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-acknowledgements.plist new file mode 100644 index 0000000..5631d5b --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-acknowledgements.plist @@ -0,0 +1,58 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2018 957415459@qq.com <957415459@qq.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + License + MIT + Title + A + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-dummy.m b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-dummy.m new file mode 100644 index 0000000..46da41c --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_A_Example : NSObject +@end +@implementation PodsDummy_Pods_A_Example +@end diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-frameworks.sh b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-frameworks.sh new file mode 100755 index 0000000..ba17cba --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-frameworks.sh @@ -0,0 +1,153 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy + # frameworks to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +# Used as a return value for each invocation of `strip_invalid_archs` function. +STRIP_BINARY_RETVAL=0 + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +# Copies and strips a vendored framework +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Copies and strips a vendored dSYM +install_dsym() { + local source="$1" + if [ -r "$source" ]; then + # Copy the dSYM into a the targets temp dir. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" + + local basename + basename="$(basename -s .framework.dSYM "$source")" + binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then + strip_invalid_archs "$binary" + fi + + if [[ $STRIP_BINARY_RETVAL == 1 ]]; then + # Move the stripped file into its final destination. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" + else + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" + fi + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current target binary + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" + # Intersect them with the architectures we are building for + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" + # If there are no archs supported by this binary then warn the user + if [[ -z "$intersected_archs" ]]; then + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." + STRIP_BINARY_RETVAL=0 + return + fi + stripped="" + for arch in $binary_archs; do + if ! [[ "${ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi + STRIP_BINARY_RETVAL=1 +} + + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/A/A.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/A/A.framework" +fi +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-resources.sh b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-resources.sh new file mode 100755 index 0000000..345301f --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-resources.sh @@ -0,0 +1,118 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then + # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy + # resources to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +case "${TARGETED_DEVICE_FAMILY:-}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" || true + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "${PODS_ROOT}*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + else + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" + fi +fi diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-umbrella.h b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-umbrella.h new file mode 100644 index 0000000..b217b70 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_A_ExampleVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_A_ExampleVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.debug.xcconfig b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.debug.xcconfig new file mode 100644 index 0000000..5fa386a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.debug.xcconfig @@ -0,0 +1,9 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/A" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/A/A.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "A" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.modulemap b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.modulemap new file mode 100644 index 0000000..28aab08 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.modulemap @@ -0,0 +1,6 @@ +framework module Pods_A_Example { + umbrella header "Pods-A_Example-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.release.xcconfig b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.release.xcconfig new file mode 100644 index 0000000..5fa386a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Example/Pods-A_Example.release.xcconfig @@ -0,0 +1,9 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/A" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/A/A.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "A" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Info.plist b/Example/Pods/Target Support Files/Pods-A_Tests/Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-acknowledgements.markdown new file mode 100644 index 0000000..102af75 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-acknowledgements.plist new file mode 100644 index 0000000..7acbad1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-dummy.m b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-dummy.m new file mode 100644 index 0000000..6f3c755 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_A_Tests : NSObject +@end +@implementation PodsDummy_Pods_A_Tests +@end diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-frameworks.sh b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-frameworks.sh new file mode 100755 index 0000000..08e3eaa --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-frameworks.sh @@ -0,0 +1,146 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy + # frameworks to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +# Used as a return value for each invocation of `strip_invalid_archs` function. +STRIP_BINARY_RETVAL=0 + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +# Copies and strips a vendored framework +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Copies and strips a vendored dSYM +install_dsym() { + local source="$1" + if [ -r "$source" ]; then + # Copy the dSYM into a the targets temp dir. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" + + local basename + basename="$(basename -s .framework.dSYM "$source")" + binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then + strip_invalid_archs "$binary" + fi + + if [[ $STRIP_BINARY_RETVAL == 1 ]]; then + # Move the stripped file into its final destination. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" + else + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" + fi + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current target binary + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" + # Intersect them with the architectures we are building for + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" + # If there are no archs supported by this binary then warn the user + if [[ -z "$intersected_archs" ]]; then + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." + STRIP_BINARY_RETVAL=0 + return + fi + stripped="" + for arch in $binary_archs; do + if ! [[ "${ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi + STRIP_BINARY_RETVAL=1 +} + +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-resources.sh b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-resources.sh new file mode 100755 index 0000000..345301f --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-resources.sh @@ -0,0 +1,118 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then + # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy + # resources to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +case "${TARGETED_DEVICE_FAMILY:-}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" || true + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "${PODS_ROOT}*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + else + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" + fi +fi diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-umbrella.h b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-umbrella.h new file mode 100644 index 0000000..d294818 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_A_TestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_A_TestsVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.debug.xcconfig new file mode 100644 index 0000000..4e9018a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.debug.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/A" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/A/A.framework/Headers" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.modulemap b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.modulemap new file mode 100644 index 0000000..640d76f --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_A_Tests { + umbrella header "Pods-A_Tests-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.release.xcconfig b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.release.xcconfig new file mode 100644 index 0000000..4e9018a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-A_Tests/Pods-A_Tests.release.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/A" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/A/A.framework/Headers" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods