cocoapods-packager-pro 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +3 -0
- data/.rubocop-cocoapods.yml +71 -0
- data/.rubocop.yml +38 -0
- data/.travis.yml +9 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +129 -0
- data/LICENSE +22 -0
- data/README.md +42 -0
- data/Rakefile +12 -0
- data/cocoapods-packager.gemspec +22 -0
- data/lib/cocoapods-packager/builder.rb +339 -0
- data/lib/cocoapods-packager/framework.rb +66 -0
- data/lib/cocoapods-packager/mangle.rb +32 -0
- data/lib/cocoapods-packager/pod_utils.rb +232 -0
- data/lib/cocoapods-packager/spec_builder.rb +63 -0
- data/lib/cocoapods-packager/symbols.rb +42 -0
- data/lib/cocoapods-packager/user_interface/build_failed_report.rb +15 -0
- data/lib/cocoapods_packager.rb +5 -0
- data/lib/cocoapods_plugin.rb +8 -0
- data/lib/pod/command/package.rb +177 -0
- data/scripts/lstconst.sh +9 -0
- data/scripts/lstsym.sh +8 -0
- data/spec/command/error_spec.rb +81 -0
- data/spec/command/package_spec.rb +410 -0
- data/spec/command/subspecs_spec.rb +30 -0
- data/spec/fixtures/Archs.podspec +13 -0
- data/spec/fixtures/Builder.podspec +25 -0
- data/spec/fixtures/CPDColors.podspec +19 -0
- data/spec/fixtures/FH.podspec +18 -0
- data/spec/fixtures/KFData.podspec +73 -0
- data/spec/fixtures/LibraryConsumerDemo/.gitignore +22 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.pbxproj +343 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/xcshareddata/xcschemes/LibraryConsumer.xcscheme +100 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.h +17 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.m +27 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/Info.plist +40 -0
- data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/main.m +16 -0
- data/spec/fixtures/LibraryConsumerDemo/Podfile +5 -0
- data/spec/fixtures/LibraryDemo.podspec +14 -0
- data/spec/fixtures/LocalSources/LICENSE +0 -0
- data/spec/fixtures/LocalSources/LocalNikeKit.h +4 -0
- data/spec/fixtures/LocalSources/LocalNikeKit.m +9 -0
- data/spec/fixtures/LocalSources/LocalNikeKit.podspec +19 -0
- data/spec/fixtures/NikeKit.podspec +19 -0
- data/spec/fixtures/OpenSans.podspec +18 -0
- data/spec/fixtures/PackagerTest/.gitignore +21 -0
- data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.pbxproj +539 -0
- data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/xcshareddata/xcschemes/PackagerTest.xcscheme +110 -0
- data/spec/fixtures/PackagerTest/PackagerTest.xcworkspace/contents.xcworkspacedata +1 -0
- data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.h +15 -0
- data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.m +49 -0
- data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Info.plist +38 -0
- data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Prefix.pch +16 -0
- data/spec/fixtures/PackagerTest/PackagerTest/en.lproj/InfoPlist.strings +2 -0
- data/spec/fixtures/PackagerTest/PackagerTest/main.m +18 -0
- data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests-Info.plist +22 -0
- data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests.m +34 -0
- data/spec/fixtures/PackagerTest/PackagerTestTests/en.lproj/InfoPlist.strings +2 -0
- data/spec/fixtures/PackagerTest/Podfile +10 -0
- data/spec/fixtures/PackagerTest/Podfile.lock +32 -0
- data/spec/fixtures/Weakly.podspec +13 -0
- data/spec/fixtures/a.podspec +19 -0
- data/spec/fixtures/foo-bar.podspec +19 -0
- data/spec/fixtures/layer-client-messaging-schema.podspec +13 -0
- data/spec/integration/project_spec.rb +70 -0
- data/spec/pod/utils_spec.rb +58 -0
- data/spec/spec_helper.rb +50 -0
- data/spec/specification/builder_spec.rb +43 -0
- data/spec/specification/spec_builder_spec.rb +61 -0
- data/spec/user_interface/build_failed_report_spec.rb +11 -0
- metadata +222 -0
@@ -0,0 +1,100 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Scheme
|
3
|
+
LastUpgradeVersion = "0600"
|
4
|
+
version = "1.3">
|
5
|
+
<BuildAction
|
6
|
+
parallelizeBuildables = "YES"
|
7
|
+
buildImplicitDependencies = "YES">
|
8
|
+
<BuildActionEntries>
|
9
|
+
<BuildActionEntry
|
10
|
+
buildForTesting = "YES"
|
11
|
+
buildForRunning = "YES"
|
12
|
+
buildForProfiling = "YES"
|
13
|
+
buildForArchiving = "YES"
|
14
|
+
buildForAnalyzing = "YES">
|
15
|
+
<BuildableReference
|
16
|
+
BuildableIdentifier = "primary"
|
17
|
+
BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
|
18
|
+
BuildableName = "LibraryConsumer.app"
|
19
|
+
BlueprintName = "LibraryConsumer"
|
20
|
+
ReferencedContainer = "container:LibraryConsumer.xcodeproj">
|
21
|
+
</BuildableReference>
|
22
|
+
</BuildActionEntry>
|
23
|
+
<BuildActionEntry
|
24
|
+
buildForTesting = "YES"
|
25
|
+
buildForRunning = "YES"
|
26
|
+
buildForProfiling = "NO"
|
27
|
+
buildForArchiving = "NO"
|
28
|
+
buildForAnalyzing = "YES">
|
29
|
+
<BuildableReference
|
30
|
+
BuildableIdentifier = "primary"
|
31
|
+
BlueprintIdentifier = "9B89D2F219EFC04D00803D42"
|
32
|
+
BuildableName = "LibraryConsumerTests.xctest"
|
33
|
+
BlueprintName = "LibraryConsumerTests"
|
34
|
+
ReferencedContainer = "container:LibraryConsumer.xcodeproj">
|
35
|
+
</BuildableReference>
|
36
|
+
</BuildActionEntry>
|
37
|
+
</BuildActionEntries>
|
38
|
+
</BuildAction>
|
39
|
+
<TestAction
|
40
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
41
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
42
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
43
|
+
buildConfiguration = "Debug">
|
44
|
+
<Testables>
|
45
|
+
</Testables>
|
46
|
+
<MacroExpansion>
|
47
|
+
<BuildableReference
|
48
|
+
BuildableIdentifier = "primary"
|
49
|
+
BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
|
50
|
+
BuildableName = "LibraryConsumer.app"
|
51
|
+
BlueprintName = "LibraryConsumer"
|
52
|
+
ReferencedContainer = "container:LibraryConsumer.xcodeproj">
|
53
|
+
</BuildableReference>
|
54
|
+
</MacroExpansion>
|
55
|
+
</TestAction>
|
56
|
+
<LaunchAction
|
57
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
58
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
59
|
+
launchStyle = "0"
|
60
|
+
useCustomWorkingDirectory = "NO"
|
61
|
+
buildConfiguration = "Debug"
|
62
|
+
ignoresPersistentStateOnLaunch = "NO"
|
63
|
+
debugDocumentVersioning = "YES"
|
64
|
+
allowLocationSimulation = "YES">
|
65
|
+
<BuildableProductRunnable>
|
66
|
+
<BuildableReference
|
67
|
+
BuildableIdentifier = "primary"
|
68
|
+
BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
|
69
|
+
BuildableName = "LibraryConsumer.app"
|
70
|
+
BlueprintName = "LibraryConsumer"
|
71
|
+
ReferencedContainer = "container:LibraryConsumer.xcodeproj">
|
72
|
+
</BuildableReference>
|
73
|
+
</BuildableProductRunnable>
|
74
|
+
<AdditionalOptions>
|
75
|
+
</AdditionalOptions>
|
76
|
+
</LaunchAction>
|
77
|
+
<ProfileAction
|
78
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
79
|
+
savedToolIdentifier = ""
|
80
|
+
useCustomWorkingDirectory = "NO"
|
81
|
+
buildConfiguration = "Release"
|
82
|
+
debugDocumentVersioning = "YES">
|
83
|
+
<BuildableProductRunnable>
|
84
|
+
<BuildableReference
|
85
|
+
BuildableIdentifier = "primary"
|
86
|
+
BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
|
87
|
+
BuildableName = "LibraryConsumer.app"
|
88
|
+
BlueprintName = "LibraryConsumer"
|
89
|
+
ReferencedContainer = "container:LibraryConsumer.xcodeproj">
|
90
|
+
</BuildableReference>
|
91
|
+
</BuildableProductRunnable>
|
92
|
+
</ProfileAction>
|
93
|
+
<AnalyzeAction
|
94
|
+
buildConfiguration = "Debug">
|
95
|
+
</AnalyzeAction>
|
96
|
+
<ArchiveAction
|
97
|
+
buildConfiguration = "Release"
|
98
|
+
revealArchiveInOrganizer = "YES">
|
99
|
+
</ArchiveAction>
|
100
|
+
</Scheme>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
//
|
2
|
+
// AppDelegate.h
|
3
|
+
// LibraryConsumer
|
4
|
+
//
|
5
|
+
// Created by Ole Gammelgaard Poulsen on 16/10/14.
|
6
|
+
// Copyright (c) 2014 Shape A/S. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
#import <UIKit/UIKit.h>
|
10
|
+
|
11
|
+
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
12
|
+
|
13
|
+
@property (strong, nonatomic) UIWindow *window;
|
14
|
+
|
15
|
+
|
16
|
+
@end
|
17
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
//
|
2
|
+
// AppDelegate.m
|
3
|
+
// LibraryConsumer
|
4
|
+
//
|
5
|
+
// Created by Ole Gammelgaard Poulsen on 16/10/14.
|
6
|
+
// Copyright (c) 2014 Shape A/S. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
#import <LibraryDemo/MyDemoClass.h>
|
10
|
+
|
11
|
+
#import "AppDelegate.h"
|
12
|
+
|
13
|
+
@interface AppDelegate ()
|
14
|
+
|
15
|
+
@end
|
16
|
+
|
17
|
+
@implementation AppDelegate
|
18
|
+
|
19
|
+
|
20
|
+
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
21
|
+
|
22
|
+
NSLog(@"%@", [MyDemoClass welcomeMessage]);
|
23
|
+
|
24
|
+
return YES;
|
25
|
+
}
|
26
|
+
|
27
|
+
@end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>CFBundleDevelopmentRegion</key>
|
6
|
+
<string>en</string>
|
7
|
+
<key>CFBundleExecutable</key>
|
8
|
+
<string>$(EXECUTABLE_NAME)</string>
|
9
|
+
<key>CFBundleIdentifier</key>
|
10
|
+
<string>dk.shape.$(PRODUCT_NAME:rfc1034identifier)</string>
|
11
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
12
|
+
<string>6.0</string>
|
13
|
+
<key>CFBundleName</key>
|
14
|
+
<string>$(PRODUCT_NAME)</string>
|
15
|
+
<key>CFBundlePackageType</key>
|
16
|
+
<string>APPL</string>
|
17
|
+
<key>CFBundleShortVersionString</key>
|
18
|
+
<string>1.0</string>
|
19
|
+
<key>CFBundleSignature</key>
|
20
|
+
<string>????</string>
|
21
|
+
<key>CFBundleVersion</key>
|
22
|
+
<string>1</string>
|
23
|
+
<key>LSRequiresIPhoneOS</key>
|
24
|
+
<true/>
|
25
|
+
<key>UILaunchStoryboardName</key>
|
26
|
+
<string>LaunchScreen</string>
|
27
|
+
<key>UIMainStoryboardFile</key>
|
28
|
+
<string>Main</string>
|
29
|
+
<key>UIRequiredDeviceCapabilities</key>
|
30
|
+
<array>
|
31
|
+
<string>armv7</string>
|
32
|
+
</array>
|
33
|
+
<key>UISupportedInterfaceOrientations</key>
|
34
|
+
<array>
|
35
|
+
<string>UIInterfaceOrientationPortrait</string>
|
36
|
+
<string>UIInterfaceOrientationLandscapeLeft</string>
|
37
|
+
<string>UIInterfaceOrientationLandscapeRight</string>
|
38
|
+
</array>
|
39
|
+
</dict>
|
40
|
+
</plist>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
//
|
2
|
+
// main.m
|
3
|
+
// LibraryConsumer
|
4
|
+
//
|
5
|
+
// Created by Ole Gammelgaard Poulsen on 16/10/14.
|
6
|
+
// Copyright (c) 2014 Shape A/S. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
#import <UIKit/UIKit.h>
|
10
|
+
#import "AppDelegate.h"
|
11
|
+
|
12
|
+
int main(int argc, char * argv[]) {
|
13
|
+
@autoreleasepool {
|
14
|
+
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
15
|
+
}
|
16
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
Pod::Spec.new do |s|
|
2
|
+
s.name = 'LibraryDemo'
|
3
|
+
s.version = '1.0.0'
|
4
|
+
s.summary = 'Demo'
|
5
|
+
s.author = {'Ole Gammelgaard Poulsen' => 'ole@shape.dk' }
|
6
|
+
s.source = { :git => 'https://github.com/olegam/LibraryDemo.git', :tag => s.version.to_s }
|
7
|
+
s.source_files = 'sources/**/*.{h,m}'
|
8
|
+
s.requires_arc = true
|
9
|
+
s.ios.deployment_target = '6.0'
|
10
|
+
s.osx.deployment_target = '10.9'
|
11
|
+
|
12
|
+
s.license = 'GPL' # :trollface:
|
13
|
+
s.homepage = 'https://www.youtube.com/watch?v=32UGD0fV45g'
|
14
|
+
end
|
File without changes
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Pod::Spec.new do |s|
|
2
|
+
s.name = 'LocalNikeKit'
|
3
|
+
s.version = '0.0.1'
|
4
|
+
s.summary = 'Objective-C implementation of the Nike+ API.'
|
5
|
+
s.homepage = 'https://github.com/neonichu/NikeKit'
|
6
|
+
s.license = {:type => 'MIT', :file => 'LICENSE'}
|
7
|
+
s.authors = { 'Boris Bügling' => 'http://buegling.com' }
|
8
|
+
s.source = { :git => 'https://github.com/neonichu/NikeKit.git', :tag => s.version.to_s }
|
9
|
+
s.platform = :ios, '8.0'
|
10
|
+
|
11
|
+
s.public_header_files = '*.h'
|
12
|
+
s.source_files = '*.{h,m}'
|
13
|
+
s.frameworks = 'Foundation'
|
14
|
+
s.requires_arc = true
|
15
|
+
|
16
|
+
s.dependency 'AFNetworking'
|
17
|
+
s.dependency 'ISO8601DateFormatter'
|
18
|
+
s.dependency 'KZPropertyMapper'
|
19
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Pod::Spec.new do |s|
|
2
|
+
s.name = 'NikeKit'
|
3
|
+
s.version = '0.0.1'
|
4
|
+
s.summary = 'Objective-C implementation of the Nike+ API.'
|
5
|
+
s.homepage = 'https://github.com/neonichu/NikeKit'
|
6
|
+
s.license = {:type => 'MIT', :file => 'LICENSE'}
|
7
|
+
s.authors = { 'Boris Bügling' => 'http://buegling.com' }
|
8
|
+
s.source = { :git => 'https://github.com/neonichu/NikeKit.git', :tag => s.version.to_s }
|
9
|
+
s.platform = :ios, '8.0'
|
10
|
+
|
11
|
+
s.public_header_files = '*.h'
|
12
|
+
s.source_files = '*.{h,m}'
|
13
|
+
s.frameworks = 'Foundation'
|
14
|
+
s.requires_arc = true
|
15
|
+
|
16
|
+
s.dependency 'AFNetworking'
|
17
|
+
s.dependency 'ISO8601DateFormatter'
|
18
|
+
s.dependency 'KZPropertyMapper'
|
19
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
Pod::Spec.new do |spec|
|
2
|
+
spec.name = 'OpenSans'
|
3
|
+
spec.version = '1.0.3'
|
4
|
+
spec.summary = 'A podspec encapsulating OpenSans font for iOS'
|
5
|
+
spec.description = "Open Sans is a humanist sans serif typeface designed by Steve Matteson, Type Director of Ascender Corp. This version contains the complete 897 character set, which includes the standard ISO Latin 1, Latin CE, Greek and Cyrillic character sets. Open Sans was designed with an upright stress, open forms and a neutral, yet friendly appearance. It was optimized for print, web, and mobile interfaces, and has excellent legibility characteristics in its letterforms."
|
6
|
+
spec.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE.txt' }
|
7
|
+
spec.authors = { 'Kyle Fuller' => 'inbox@kylefuller.co.uk' }
|
8
|
+
spec.homepage = 'https://github.com/CocoaPods-Fonts/OpenSans'
|
9
|
+
spec.screenshot = 'http://f.cl.ly/items/2t2F032e3W0h2T1i0j1n/opensans-ios7-iphone5.png'
|
10
|
+
spec.social_media_url = 'https://twitter.com/kylefuller'
|
11
|
+
spec.platform = :ios
|
12
|
+
spec.source = { :git => 'https://github.com/CocoaPods-Fonts/OpenSans.git', :tag => spec.version.to_s }
|
13
|
+
spec.source_files = 'UIFont+OpenSans.{h,m}'
|
14
|
+
spec.resource_bundle = { 'OpenSans' => 'Fonts/*.ttf' }
|
15
|
+
spec.frameworks = 'UIKit', 'CoreText'
|
16
|
+
spec.requires_arc = true
|
17
|
+
end
|
18
|
+
|
@@ -0,0 +1,539 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
06C49FBB8D44715480415078 /* libPods-PackagerTest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B50A03E1C68D6EA050ADDB4 /* libPods-PackagerTest.a */; };
|
11
|
+
A1DE56B919AA4A97000339C6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56B819AA4A97000339C6 /* Foundation.framework */; };
|
12
|
+
A1DE56BB19AA4A97000339C6 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56BA19AA4A97000339C6 /* CoreGraphics.framework */; };
|
13
|
+
A1DE56BD19AA4A97000339C6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56BC19AA4A97000339C6 /* UIKit.framework */; };
|
14
|
+
A1DE56C319AA4A97000339C6 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = A1DE56C119AA4A97000339C6 /* InfoPlist.strings */; };
|
15
|
+
A1DE56C519AA4A97000339C6 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = A1DE56C419AA4A97000339C6 /* main.m */; };
|
16
|
+
A1DE56C919AA4A97000339C6 /* CPDAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A1DE56C819AA4A97000339C6 /* CPDAppDelegate.m */; };
|
17
|
+
A1DE56CB19AA4A97000339C6 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A1DE56CA19AA4A97000339C6 /* Images.xcassets */; };
|
18
|
+
A1DE56D219AA4A97000339C6 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56D119AA4A97000339C6 /* XCTest.framework */; };
|
19
|
+
A1DE56D319AA4A97000339C6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56B819AA4A97000339C6 /* Foundation.framework */; };
|
20
|
+
A1DE56D419AA4A97000339C6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56BC19AA4A97000339C6 /* UIKit.framework */; };
|
21
|
+
A1DE56DC19AA4A97000339C6 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = A1DE56DA19AA4A97000339C6 /* InfoPlist.strings */; };
|
22
|
+
A1DE56DE19AA4A97000339C6 /* PackagerTestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A1DE56DD19AA4A97000339C6 /* PackagerTestTests.m */; };
|
23
|
+
A1DE56E819AA4AC4000339C6 /* NikeKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56E719AA4AC4000339C6 /* NikeKit.framework */; };
|
24
|
+
/* End PBXBuildFile section */
|
25
|
+
|
26
|
+
/* Begin PBXContainerItemProxy section */
|
27
|
+
A1DE56D519AA4A97000339C6 /* PBXContainerItemProxy */ = {
|
28
|
+
isa = PBXContainerItemProxy;
|
29
|
+
containerPortal = A1DE56AD19AA4A97000339C6 /* Project object */;
|
30
|
+
proxyType = 1;
|
31
|
+
remoteGlobalIDString = A1DE56B419AA4A97000339C6;
|
32
|
+
remoteInfo = PackagerTest;
|
33
|
+
};
|
34
|
+
/* End PBXContainerItemProxy section */
|
35
|
+
|
36
|
+
/* Begin PBXFileReference section */
|
37
|
+
551F7332E67FB33B4FD37276 /* Pods-PackagerTest.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PackagerTest.release.xcconfig"; path = "Pods/Target Support Files/Pods-PackagerTest/Pods-PackagerTest.release.xcconfig"; sourceTree = "<group>"; };
|
38
|
+
9B50A03E1C68D6EA050ADDB4 /* libPods-PackagerTest.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-PackagerTest.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
39
|
+
A0F1D7427B53DCDF0F9C99C4 /* Pods-PackagerTest.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PackagerTest.debug.xcconfig"; path = "Pods/Target Support Files/Pods-PackagerTest/Pods-PackagerTest.debug.xcconfig"; sourceTree = "<group>"; };
|
40
|
+
A1DE56B519AA4A97000339C6 /* PackagerTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PackagerTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
41
|
+
A1DE56B819AA4A97000339C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
42
|
+
A1DE56BA19AA4A97000339C6 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
43
|
+
A1DE56BC19AA4A97000339C6 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
44
|
+
A1DE56C019AA4A97000339C6 /* PackagerTest-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "PackagerTest-Info.plist"; sourceTree = "<group>"; };
|
45
|
+
A1DE56C219AA4A97000339C6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
46
|
+
A1DE56C419AA4A97000339C6 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
47
|
+
A1DE56C619AA4A97000339C6 /* PackagerTest-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PackagerTest-Prefix.pch"; sourceTree = "<group>"; };
|
48
|
+
A1DE56C719AA4A97000339C6 /* CPDAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CPDAppDelegate.h; sourceTree = "<group>"; };
|
49
|
+
A1DE56C819AA4A97000339C6 /* CPDAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CPDAppDelegate.m; sourceTree = "<group>"; };
|
50
|
+
A1DE56CA19AA4A97000339C6 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
|
51
|
+
A1DE56D019AA4A97000339C6 /* PackagerTestTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PackagerTestTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
52
|
+
A1DE56D119AA4A97000339C6 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
|
53
|
+
A1DE56D919AA4A97000339C6 /* PackagerTestTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "PackagerTestTests-Info.plist"; sourceTree = "<group>"; };
|
54
|
+
A1DE56DB19AA4A97000339C6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
55
|
+
A1DE56DD19AA4A97000339C6 /* PackagerTestTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PackagerTestTests.m; sourceTree = "<group>"; };
|
56
|
+
A1DE56E719AA4AC4000339C6 /* NikeKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NikeKit.framework; sourceTree = "<group>"; };
|
57
|
+
/* End PBXFileReference section */
|
58
|
+
|
59
|
+
/* Begin PBXFrameworksBuildPhase section */
|
60
|
+
A1DE56B219AA4A97000339C6 /* Frameworks */ = {
|
61
|
+
isa = PBXFrameworksBuildPhase;
|
62
|
+
buildActionMask = 2147483647;
|
63
|
+
files = (
|
64
|
+
A1DE56E819AA4AC4000339C6 /* NikeKit.framework in Frameworks */,
|
65
|
+
A1DE56BB19AA4A97000339C6 /* CoreGraphics.framework in Frameworks */,
|
66
|
+
A1DE56BD19AA4A97000339C6 /* UIKit.framework in Frameworks */,
|
67
|
+
A1DE56B919AA4A97000339C6 /* Foundation.framework in Frameworks */,
|
68
|
+
06C49FBB8D44715480415078 /* libPods-PackagerTest.a in Frameworks */,
|
69
|
+
);
|
70
|
+
runOnlyForDeploymentPostprocessing = 0;
|
71
|
+
};
|
72
|
+
A1DE56CD19AA4A97000339C6 /* Frameworks */ = {
|
73
|
+
isa = PBXFrameworksBuildPhase;
|
74
|
+
buildActionMask = 2147483647;
|
75
|
+
files = (
|
76
|
+
A1DE56D219AA4A97000339C6 /* XCTest.framework in Frameworks */,
|
77
|
+
A1DE56D419AA4A97000339C6 /* UIKit.framework in Frameworks */,
|
78
|
+
A1DE56D319AA4A97000339C6 /* Foundation.framework in Frameworks */,
|
79
|
+
);
|
80
|
+
runOnlyForDeploymentPostprocessing = 0;
|
81
|
+
};
|
82
|
+
/* End PBXFrameworksBuildPhase section */
|
83
|
+
|
84
|
+
/* Begin PBXGroup section */
|
85
|
+
71D95E6AA2488D1DB8BAC401 /* Pods */ = {
|
86
|
+
isa = PBXGroup;
|
87
|
+
children = (
|
88
|
+
A0F1D7427B53DCDF0F9C99C4 /* Pods-PackagerTest.debug.xcconfig */,
|
89
|
+
551F7332E67FB33B4FD37276 /* Pods-PackagerTest.release.xcconfig */,
|
90
|
+
);
|
91
|
+
name = Pods;
|
92
|
+
sourceTree = "<group>";
|
93
|
+
};
|
94
|
+
A1DE56AC19AA4A97000339C6 = {
|
95
|
+
isa = PBXGroup;
|
96
|
+
children = (
|
97
|
+
A1DE56BE19AA4A97000339C6 /* PackagerTest */,
|
98
|
+
A1DE56D719AA4A97000339C6 /* PackagerTestTests */,
|
99
|
+
A1DE56B719AA4A97000339C6 /* Frameworks */,
|
100
|
+
A1DE56B619AA4A97000339C6 /* Products */,
|
101
|
+
71D95E6AA2488D1DB8BAC401 /* Pods */,
|
102
|
+
);
|
103
|
+
sourceTree = "<group>";
|
104
|
+
};
|
105
|
+
A1DE56B619AA4A97000339C6 /* Products */ = {
|
106
|
+
isa = PBXGroup;
|
107
|
+
children = (
|
108
|
+
A1DE56B519AA4A97000339C6 /* PackagerTest.app */,
|
109
|
+
A1DE56D019AA4A97000339C6 /* PackagerTestTests.xctest */,
|
110
|
+
);
|
111
|
+
name = Products;
|
112
|
+
sourceTree = "<group>";
|
113
|
+
};
|
114
|
+
A1DE56B719AA4A97000339C6 /* Frameworks */ = {
|
115
|
+
isa = PBXGroup;
|
116
|
+
children = (
|
117
|
+
A1DE56B819AA4A97000339C6 /* Foundation.framework */,
|
118
|
+
A1DE56BA19AA4A97000339C6 /* CoreGraphics.framework */,
|
119
|
+
A1DE56E719AA4AC4000339C6 /* NikeKit.framework */,
|
120
|
+
A1DE56BC19AA4A97000339C6 /* UIKit.framework */,
|
121
|
+
A1DE56D119AA4A97000339C6 /* XCTest.framework */,
|
122
|
+
9B50A03E1C68D6EA050ADDB4 /* libPods-PackagerTest.a */,
|
123
|
+
);
|
124
|
+
name = Frameworks;
|
125
|
+
sourceTree = "<group>";
|
126
|
+
};
|
127
|
+
A1DE56BE19AA4A97000339C6 /* PackagerTest */ = {
|
128
|
+
isa = PBXGroup;
|
129
|
+
children = (
|
130
|
+
A1DE56C719AA4A97000339C6 /* CPDAppDelegate.h */,
|
131
|
+
A1DE56C819AA4A97000339C6 /* CPDAppDelegate.m */,
|
132
|
+
A1DE56CA19AA4A97000339C6 /* Images.xcassets */,
|
133
|
+
A1DE56BF19AA4A97000339C6 /* Supporting Files */,
|
134
|
+
);
|
135
|
+
path = PackagerTest;
|
136
|
+
sourceTree = "<group>";
|
137
|
+
};
|
138
|
+
A1DE56BF19AA4A97000339C6 /* Supporting Files */ = {
|
139
|
+
isa = PBXGroup;
|
140
|
+
children = (
|
141
|
+
A1DE56C019AA4A97000339C6 /* PackagerTest-Info.plist */,
|
142
|
+
A1DE56C119AA4A97000339C6 /* InfoPlist.strings */,
|
143
|
+
A1DE56C419AA4A97000339C6 /* main.m */,
|
144
|
+
A1DE56C619AA4A97000339C6 /* PackagerTest-Prefix.pch */,
|
145
|
+
);
|
146
|
+
name = "Supporting Files";
|
147
|
+
sourceTree = "<group>";
|
148
|
+
};
|
149
|
+
A1DE56D719AA4A97000339C6 /* PackagerTestTests */ = {
|
150
|
+
isa = PBXGroup;
|
151
|
+
children = (
|
152
|
+
A1DE56DD19AA4A97000339C6 /* PackagerTestTests.m */,
|
153
|
+
A1DE56D819AA4A97000339C6 /* Supporting Files */,
|
154
|
+
);
|
155
|
+
path = PackagerTestTests;
|
156
|
+
sourceTree = "<group>";
|
157
|
+
};
|
158
|
+
A1DE56D819AA4A97000339C6 /* Supporting Files */ = {
|
159
|
+
isa = PBXGroup;
|
160
|
+
children = (
|
161
|
+
A1DE56D919AA4A97000339C6 /* PackagerTestTests-Info.plist */,
|
162
|
+
A1DE56DA19AA4A97000339C6 /* InfoPlist.strings */,
|
163
|
+
);
|
164
|
+
name = "Supporting Files";
|
165
|
+
sourceTree = "<group>";
|
166
|
+
};
|
167
|
+
/* End PBXGroup section */
|
168
|
+
|
169
|
+
/* Begin PBXNativeTarget section */
|
170
|
+
A1DE56B419AA4A97000339C6 /* PackagerTest */ = {
|
171
|
+
isa = PBXNativeTarget;
|
172
|
+
buildConfigurationList = A1DE56E119AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTest" */;
|
173
|
+
buildPhases = (
|
174
|
+
6639007332D318BA22B78898 /* [CP] Check Pods Manifest.lock */,
|
175
|
+
A1DE56B119AA4A97000339C6 /* Sources */,
|
176
|
+
A1DE56B219AA4A97000339C6 /* Frameworks */,
|
177
|
+
A1DE56B319AA4A97000339C6 /* Resources */,
|
178
|
+
E32FAE278D58BC5B3F788CE7 /* [CP] Embed Pods Frameworks */,
|
179
|
+
E4E1E4640AC6D4A3D67EC563 /* [CP] Copy Pods Resources */,
|
180
|
+
);
|
181
|
+
buildRules = (
|
182
|
+
);
|
183
|
+
dependencies = (
|
184
|
+
);
|
185
|
+
name = PackagerTest;
|
186
|
+
productName = PackagerTest;
|
187
|
+
productReference = A1DE56B519AA4A97000339C6 /* PackagerTest.app */;
|
188
|
+
productType = "com.apple.product-type.application";
|
189
|
+
};
|
190
|
+
A1DE56CF19AA4A97000339C6 /* PackagerTestTests */ = {
|
191
|
+
isa = PBXNativeTarget;
|
192
|
+
buildConfigurationList = A1DE56E419AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTestTests" */;
|
193
|
+
buildPhases = (
|
194
|
+
A1DE56CC19AA4A97000339C6 /* Sources */,
|
195
|
+
A1DE56CD19AA4A97000339C6 /* Frameworks */,
|
196
|
+
A1DE56CE19AA4A97000339C6 /* Resources */,
|
197
|
+
);
|
198
|
+
buildRules = (
|
199
|
+
);
|
200
|
+
dependencies = (
|
201
|
+
A1DE56D619AA4A97000339C6 /* PBXTargetDependency */,
|
202
|
+
);
|
203
|
+
name = PackagerTestTests;
|
204
|
+
productName = PackagerTestTests;
|
205
|
+
productReference = A1DE56D019AA4A97000339C6 /* PackagerTestTests.xctest */;
|
206
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
207
|
+
};
|
208
|
+
/* End PBXNativeTarget section */
|
209
|
+
|
210
|
+
/* Begin PBXProject section */
|
211
|
+
A1DE56AD19AA4A97000339C6 /* Project object */ = {
|
212
|
+
isa = PBXProject;
|
213
|
+
attributes = {
|
214
|
+
CLASSPREFIX = CPD;
|
215
|
+
LastUpgradeCheck = 0510;
|
216
|
+
ORGANIZATIONNAME = CocoaPods;
|
217
|
+
TargetAttributes = {
|
218
|
+
A1DE56CF19AA4A97000339C6 = {
|
219
|
+
TestTargetID = A1DE56B419AA4A97000339C6;
|
220
|
+
};
|
221
|
+
};
|
222
|
+
};
|
223
|
+
buildConfigurationList = A1DE56B019AA4A97000339C6 /* Build configuration list for PBXProject "PackagerTest" */;
|
224
|
+
compatibilityVersion = "Xcode 3.2";
|
225
|
+
developmentRegion = English;
|
226
|
+
hasScannedForEncodings = 0;
|
227
|
+
knownRegions = (
|
228
|
+
en,
|
229
|
+
);
|
230
|
+
mainGroup = A1DE56AC19AA4A97000339C6;
|
231
|
+
productRefGroup = A1DE56B619AA4A97000339C6 /* Products */;
|
232
|
+
projectDirPath = "";
|
233
|
+
projectRoot = "";
|
234
|
+
targets = (
|
235
|
+
A1DE56B419AA4A97000339C6 /* PackagerTest */,
|
236
|
+
A1DE56CF19AA4A97000339C6 /* PackagerTestTests */,
|
237
|
+
);
|
238
|
+
};
|
239
|
+
/* End PBXProject section */
|
240
|
+
|
241
|
+
/* Begin PBXResourcesBuildPhase section */
|
242
|
+
A1DE56B319AA4A97000339C6 /* Resources */ = {
|
243
|
+
isa = PBXResourcesBuildPhase;
|
244
|
+
buildActionMask = 2147483647;
|
245
|
+
files = (
|
246
|
+
A1DE56C319AA4A97000339C6 /* InfoPlist.strings in Resources */,
|
247
|
+
A1DE56CB19AA4A97000339C6 /* Images.xcassets in Resources */,
|
248
|
+
);
|
249
|
+
runOnlyForDeploymentPostprocessing = 0;
|
250
|
+
};
|
251
|
+
A1DE56CE19AA4A97000339C6 /* Resources */ = {
|
252
|
+
isa = PBXResourcesBuildPhase;
|
253
|
+
buildActionMask = 2147483647;
|
254
|
+
files = (
|
255
|
+
A1DE56DC19AA4A97000339C6 /* InfoPlist.strings in Resources */,
|
256
|
+
);
|
257
|
+
runOnlyForDeploymentPostprocessing = 0;
|
258
|
+
};
|
259
|
+
/* End PBXResourcesBuildPhase section */
|
260
|
+
|
261
|
+
/* Begin PBXShellScriptBuildPhase section */
|
262
|
+
6639007332D318BA22B78898 /* [CP] Check Pods Manifest.lock */ = {
|
263
|
+
isa = PBXShellScriptBuildPhase;
|
264
|
+
buildActionMask = 2147483647;
|
265
|
+
files = (
|
266
|
+
);
|
267
|
+
inputPaths = (
|
268
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
269
|
+
"${PODS_ROOT}/Manifest.lock",
|
270
|
+
);
|
271
|
+
name = "[CP] Check Pods Manifest.lock";
|
272
|
+
outputPaths = (
|
273
|
+
"$(DERIVED_FILE_DIR)/Pods-PackagerTest-checkManifestLockResult.txt",
|
274
|
+
);
|
275
|
+
runOnlyForDeploymentPostprocessing = 0;
|
276
|
+
shellPath = /bin/sh;
|
277
|
+
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";
|
278
|
+
showEnvVarsInLog = 0;
|
279
|
+
};
|
280
|
+
E32FAE278D58BC5B3F788CE7 /* [CP] Embed Pods Frameworks */ = {
|
281
|
+
isa = PBXShellScriptBuildPhase;
|
282
|
+
buildActionMask = 2147483647;
|
283
|
+
files = (
|
284
|
+
);
|
285
|
+
inputPaths = (
|
286
|
+
);
|
287
|
+
name = "[CP] Embed Pods Frameworks";
|
288
|
+
outputPaths = (
|
289
|
+
);
|
290
|
+
runOnlyForDeploymentPostprocessing = 0;
|
291
|
+
shellPath = /bin/sh;
|
292
|
+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PackagerTest/Pods-PackagerTest-frameworks.sh\"\n";
|
293
|
+
showEnvVarsInLog = 0;
|
294
|
+
};
|
295
|
+
E4E1E4640AC6D4A3D67EC563 /* [CP] Copy Pods Resources */ = {
|
296
|
+
isa = PBXShellScriptBuildPhase;
|
297
|
+
buildActionMask = 2147483647;
|
298
|
+
files = (
|
299
|
+
);
|
300
|
+
inputPaths = (
|
301
|
+
);
|
302
|
+
name = "[CP] Copy Pods Resources";
|
303
|
+
outputPaths = (
|
304
|
+
);
|
305
|
+
runOnlyForDeploymentPostprocessing = 0;
|
306
|
+
shellPath = /bin/sh;
|
307
|
+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PackagerTest/Pods-PackagerTest-resources.sh\"\n";
|
308
|
+
showEnvVarsInLog = 0;
|
309
|
+
};
|
310
|
+
/* End PBXShellScriptBuildPhase section */
|
311
|
+
|
312
|
+
/* Begin PBXSourcesBuildPhase section */
|
313
|
+
A1DE56B119AA4A97000339C6 /* Sources */ = {
|
314
|
+
isa = PBXSourcesBuildPhase;
|
315
|
+
buildActionMask = 2147483647;
|
316
|
+
files = (
|
317
|
+
A1DE56C919AA4A97000339C6 /* CPDAppDelegate.m in Sources */,
|
318
|
+
A1DE56C519AA4A97000339C6 /* main.m in Sources */,
|
319
|
+
);
|
320
|
+
runOnlyForDeploymentPostprocessing = 0;
|
321
|
+
};
|
322
|
+
A1DE56CC19AA4A97000339C6 /* Sources */ = {
|
323
|
+
isa = PBXSourcesBuildPhase;
|
324
|
+
buildActionMask = 2147483647;
|
325
|
+
files = (
|
326
|
+
A1DE56DE19AA4A97000339C6 /* PackagerTestTests.m in Sources */,
|
327
|
+
);
|
328
|
+
runOnlyForDeploymentPostprocessing = 0;
|
329
|
+
};
|
330
|
+
/* End PBXSourcesBuildPhase section */
|
331
|
+
|
332
|
+
/* Begin PBXTargetDependency section */
|
333
|
+
A1DE56D619AA4A97000339C6 /* PBXTargetDependency */ = {
|
334
|
+
isa = PBXTargetDependency;
|
335
|
+
target = A1DE56B419AA4A97000339C6 /* PackagerTest */;
|
336
|
+
targetProxy = A1DE56D519AA4A97000339C6 /* PBXContainerItemProxy */;
|
337
|
+
};
|
338
|
+
/* End PBXTargetDependency section */
|
339
|
+
|
340
|
+
/* Begin PBXVariantGroup section */
|
341
|
+
A1DE56C119AA4A97000339C6 /* InfoPlist.strings */ = {
|
342
|
+
isa = PBXVariantGroup;
|
343
|
+
children = (
|
344
|
+
A1DE56C219AA4A97000339C6 /* en */,
|
345
|
+
);
|
346
|
+
name = InfoPlist.strings;
|
347
|
+
sourceTree = "<group>";
|
348
|
+
};
|
349
|
+
A1DE56DA19AA4A97000339C6 /* InfoPlist.strings */ = {
|
350
|
+
isa = PBXVariantGroup;
|
351
|
+
children = (
|
352
|
+
A1DE56DB19AA4A97000339C6 /* en */,
|
353
|
+
);
|
354
|
+
name = InfoPlist.strings;
|
355
|
+
sourceTree = "<group>";
|
356
|
+
};
|
357
|
+
/* End PBXVariantGroup section */
|
358
|
+
|
359
|
+
/* Begin XCBuildConfiguration section */
|
360
|
+
A1DE56DF19AA4A97000339C6 /* Debug */ = {
|
361
|
+
isa = XCBuildConfiguration;
|
362
|
+
buildSettings = {
|
363
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
364
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
365
|
+
CLANG_CXX_LIBRARY = "libc++";
|
366
|
+
CLANG_ENABLE_MODULES = YES;
|
367
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
368
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
369
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
370
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
371
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
372
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
373
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
374
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
375
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
376
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
377
|
+
COPY_PHASE_STRIP = NO;
|
378
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
379
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
380
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
381
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
382
|
+
"DEBUG=1",
|
383
|
+
"$(inherited)",
|
384
|
+
);
|
385
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
386
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
387
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
388
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
389
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
390
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
391
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
392
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
393
|
+
ONLY_ACTIVE_ARCH = YES;
|
394
|
+
SDKROOT = iphoneos;
|
395
|
+
};
|
396
|
+
name = Debug;
|
397
|
+
};
|
398
|
+
A1DE56E019AA4A97000339C6 /* Release */ = {
|
399
|
+
isa = XCBuildConfiguration;
|
400
|
+
buildSettings = {
|
401
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
402
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
403
|
+
CLANG_CXX_LIBRARY = "libc++";
|
404
|
+
CLANG_ENABLE_MODULES = YES;
|
405
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
406
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
407
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
408
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
409
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
410
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
411
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
412
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
413
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
414
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
415
|
+
COPY_PHASE_STRIP = YES;
|
416
|
+
ENABLE_NS_ASSERTIONS = NO;
|
417
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
418
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
419
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
420
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
421
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
422
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
423
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
424
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
425
|
+
SDKROOT = iphoneos;
|
426
|
+
VALIDATE_PRODUCT = YES;
|
427
|
+
};
|
428
|
+
name = Release;
|
429
|
+
};
|
430
|
+
A1DE56E219AA4A97000339C6 /* Debug */ = {
|
431
|
+
isa = XCBuildConfiguration;
|
432
|
+
baseConfigurationReference = A0F1D7427B53DCDF0F9C99C4 /* Pods-PackagerTest.debug.xcconfig */;
|
433
|
+
buildSettings = {
|
434
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
435
|
+
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
436
|
+
FRAMEWORK_SEARCH_PATHS = (
|
437
|
+
"$(inherited)",
|
438
|
+
"$(PROJECT_DIR)",
|
439
|
+
);
|
440
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
441
|
+
GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
|
442
|
+
INFOPLIST_FILE = "PackagerTest/PackagerTest-Info.plist";
|
443
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
444
|
+
WRAPPER_EXTENSION = app;
|
445
|
+
};
|
446
|
+
name = Debug;
|
447
|
+
};
|
448
|
+
A1DE56E319AA4A97000339C6 /* Release */ = {
|
449
|
+
isa = XCBuildConfiguration;
|
450
|
+
baseConfigurationReference = 551F7332E67FB33B4FD37276 /* Pods-PackagerTest.release.xcconfig */;
|
451
|
+
buildSettings = {
|
452
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
453
|
+
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
454
|
+
FRAMEWORK_SEARCH_PATHS = (
|
455
|
+
"$(inherited)",
|
456
|
+
"$(PROJECT_DIR)",
|
457
|
+
);
|
458
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
459
|
+
GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
|
460
|
+
INFOPLIST_FILE = "PackagerTest/PackagerTest-Info.plist";
|
461
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
462
|
+
WRAPPER_EXTENSION = app;
|
463
|
+
};
|
464
|
+
name = Release;
|
465
|
+
};
|
466
|
+
A1DE56E519AA4A97000339C6 /* Debug */ = {
|
467
|
+
isa = XCBuildConfiguration;
|
468
|
+
buildSettings = {
|
469
|
+
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/PackagerTest.app/PackagerTest";
|
470
|
+
FRAMEWORK_SEARCH_PATHS = (
|
471
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
472
|
+
"$(inherited)",
|
473
|
+
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
474
|
+
);
|
475
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
476
|
+
GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
|
477
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
478
|
+
"DEBUG=1",
|
479
|
+
"$(inherited)",
|
480
|
+
);
|
481
|
+
INFOPLIST_FILE = "PackagerTestTests/PackagerTestTests-Info.plist";
|
482
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
483
|
+
TEST_HOST = "$(BUNDLE_LOADER)";
|
484
|
+
WRAPPER_EXTENSION = xctest;
|
485
|
+
};
|
486
|
+
name = Debug;
|
487
|
+
};
|
488
|
+
A1DE56E619AA4A97000339C6 /* Release */ = {
|
489
|
+
isa = XCBuildConfiguration;
|
490
|
+
buildSettings = {
|
491
|
+
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/PackagerTest.app/PackagerTest";
|
492
|
+
FRAMEWORK_SEARCH_PATHS = (
|
493
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
494
|
+
"$(inherited)",
|
495
|
+
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
496
|
+
);
|
497
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
498
|
+
GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
|
499
|
+
INFOPLIST_FILE = "PackagerTestTests/PackagerTestTests-Info.plist";
|
500
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
501
|
+
TEST_HOST = "$(BUNDLE_LOADER)";
|
502
|
+
WRAPPER_EXTENSION = xctest;
|
503
|
+
};
|
504
|
+
name = Release;
|
505
|
+
};
|
506
|
+
/* End XCBuildConfiguration section */
|
507
|
+
|
508
|
+
/* Begin XCConfigurationList section */
|
509
|
+
A1DE56B019AA4A97000339C6 /* Build configuration list for PBXProject "PackagerTest" */ = {
|
510
|
+
isa = XCConfigurationList;
|
511
|
+
buildConfigurations = (
|
512
|
+
A1DE56DF19AA4A97000339C6 /* Debug */,
|
513
|
+
A1DE56E019AA4A97000339C6 /* Release */,
|
514
|
+
);
|
515
|
+
defaultConfigurationIsVisible = 0;
|
516
|
+
defaultConfigurationName = Release;
|
517
|
+
};
|
518
|
+
A1DE56E119AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTest" */ = {
|
519
|
+
isa = XCConfigurationList;
|
520
|
+
buildConfigurations = (
|
521
|
+
A1DE56E219AA4A97000339C6 /* Debug */,
|
522
|
+
A1DE56E319AA4A97000339C6 /* Release */,
|
523
|
+
);
|
524
|
+
defaultConfigurationIsVisible = 0;
|
525
|
+
defaultConfigurationName = Release;
|
526
|
+
};
|
527
|
+
A1DE56E419AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTestTests" */ = {
|
528
|
+
isa = XCConfigurationList;
|
529
|
+
buildConfigurations = (
|
530
|
+
A1DE56E519AA4A97000339C6 /* Debug */,
|
531
|
+
A1DE56E619AA4A97000339C6 /* Release */,
|
532
|
+
);
|
533
|
+
defaultConfigurationIsVisible = 0;
|
534
|
+
defaultConfigurationName = Release;
|
535
|
+
};
|
536
|
+
/* End XCConfigurationList section */
|
537
|
+
};
|
538
|
+
rootObject = A1DE56AD19AA4A97000339C6 /* Project object */;
|
539
|
+
}
|