cocoapods-packager 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -1
  3. data/Gemfile +1 -1
  4. data/Gemfile.lock +49 -46
  5. data/Podfile.lock +14 -0
  6. data/lib/cocoapods-packager/builder.rb +36 -10
  7. data/lib/cocoapods-packager/framework.rb +2 -0
  8. data/lib/cocoapods-packager/pod_utils.rb +9 -0
  9. data/lib/cocoapods-packager/symbols.rb +1 -2
  10. data/lib/cocoapods_packager.rb +1 -1
  11. data/lib/pod/command/package.rb +1 -1
  12. data/spec/command/error_spec.rb +8 -0
  13. data/spec/command/package_spec.rb +11 -0
  14. data/spec/fixtures/KFData.podspec +11 -2
  15. data/spec/fixtures/LibraryConsumerDemo/.gitignore +22 -0
  16. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.pbxproj +324 -0
  17. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  18. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/xcshareddata/xcschemes/LibraryConsumer.xcscheme +100 -0
  19. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.h +17 -0
  20. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.m +26 -0
  21. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/Info.plist +40 -0
  22. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/main.m +16 -0
  23. data/spec/fixtures/LibraryConsumerDemo/Podfile +1 -0
  24. data/spec/fixtures/LibraryDemo.podspec +12 -0
  25. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/xcshareddata/xcschemes/PackagerTest.xcscheme +110 -0
  26. data/spec/fixtures/PackagerTest/Podfile.lock +7 -7
  27. data/spec/fixtures/Weakly.podspec +13 -0
  28. data/spec/integration/project_spec.rb +26 -4
  29. metadata +40 -13
@@ -0,0 +1,324 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 398917245AB663C6A6B1699D /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D9BEAC4C39BC8A1BC66D18 /* libPods.a */; };
11
+ 9B89D2E019EFC04D00803D42 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B89D2DF19EFC04D00803D42 /* main.m */; };
12
+ 9B89D2E319EFC04D00803D42 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B89D2E219EFC04D00803D42 /* AppDelegate.m */; };
13
+ /* End PBXBuildFile section */
14
+
15
+ /* Begin PBXFileReference section */
16
+ 26671200AE9619EBDD855305 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
17
+ 3FCB7F0904C14C858A5D1908 /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
18
+ 89D9BEAC4C39BC8A1BC66D18 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
19
+ 9B89D2DA19EFC04D00803D42 /* LibraryConsumer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LibraryConsumer.app; sourceTree = BUILT_PRODUCTS_DIR; };
20
+ 9B89D2DE19EFC04D00803D42 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
21
+ 9B89D2DF19EFC04D00803D42 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
22
+ 9B89D2E119EFC04D00803D42 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
23
+ 9B89D2E219EFC04D00803D42 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
24
+ /* End PBXFileReference section */
25
+
26
+ /* Begin PBXFrameworksBuildPhase section */
27
+ 9B89D2D719EFC04D00803D42 /* Frameworks */ = {
28
+ isa = PBXFrameworksBuildPhase;
29
+ buildActionMask = 2147483647;
30
+ files = (
31
+ 398917245AB663C6A6B1699D /* libPods.a in Frameworks */,
32
+ );
33
+ runOnlyForDeploymentPostprocessing = 0;
34
+ };
35
+ /* End PBXFrameworksBuildPhase section */
36
+
37
+ /* Begin PBXGroup section */
38
+ 066FC5E9BB30160705D7DC1B /* Frameworks */ = {
39
+ isa = PBXGroup;
40
+ children = (
41
+ 89D9BEAC4C39BC8A1BC66D18 /* libPods.a */,
42
+ );
43
+ name = Frameworks;
44
+ sourceTree = "<group>";
45
+ };
46
+ 50DC36FE58A308F367E74944 /* Pods */ = {
47
+ isa = PBXGroup;
48
+ children = (
49
+ 26671200AE9619EBDD855305 /* Pods.debug.xcconfig */,
50
+ 3FCB7F0904C14C858A5D1908 /* Pods.release.xcconfig */,
51
+ );
52
+ name = Pods;
53
+ sourceTree = "<group>";
54
+ };
55
+ 9B89D2D119EFC04D00803D42 = {
56
+ isa = PBXGroup;
57
+ children = (
58
+ 9B89D2DC19EFC04D00803D42 /* LibraryConsumer */,
59
+ 9B89D2DB19EFC04D00803D42 /* Products */,
60
+ 50DC36FE58A308F367E74944 /* Pods */,
61
+ 066FC5E9BB30160705D7DC1B /* Frameworks */,
62
+ );
63
+ sourceTree = "<group>";
64
+ };
65
+ 9B89D2DB19EFC04D00803D42 /* Products */ = {
66
+ isa = PBXGroup;
67
+ children = (
68
+ 9B89D2DA19EFC04D00803D42 /* LibraryConsumer.app */,
69
+ );
70
+ name = Products;
71
+ sourceTree = "<group>";
72
+ };
73
+ 9B89D2DC19EFC04D00803D42 /* LibraryConsumer */ = {
74
+ isa = PBXGroup;
75
+ children = (
76
+ 9B89D2E119EFC04D00803D42 /* AppDelegate.h */,
77
+ 9B89D2E219EFC04D00803D42 /* AppDelegate.m */,
78
+ 9B89D2DD19EFC04D00803D42 /* Supporting Files */,
79
+ );
80
+ path = LibraryConsumer;
81
+ sourceTree = "<group>";
82
+ };
83
+ 9B89D2DD19EFC04D00803D42 /* Supporting Files */ = {
84
+ isa = PBXGroup;
85
+ children = (
86
+ 9B89D2DE19EFC04D00803D42 /* Info.plist */,
87
+ 9B89D2DF19EFC04D00803D42 /* main.m */,
88
+ );
89
+ name = "Supporting Files";
90
+ sourceTree = "<group>";
91
+ };
92
+ /* End PBXGroup section */
93
+
94
+ /* Begin PBXNativeTarget section */
95
+ 9B89D2D919EFC04D00803D42 /* LibraryConsumer */ = {
96
+ isa = PBXNativeTarget;
97
+ buildConfigurationList = 9B89D2FD19EFC04D00803D42 /* Build configuration list for PBXNativeTarget "LibraryConsumer" */;
98
+ buildPhases = (
99
+ 14C9AEC2A1EDEF0F3A88C05F /* Check Pods Manifest.lock */,
100
+ 9B89D2D619EFC04D00803D42 /* Sources */,
101
+ 9B89D2D719EFC04D00803D42 /* Frameworks */,
102
+ 9B89D2D819EFC04D00803D42 /* Resources */,
103
+ 29ACF15EBB414DA9E6482323 /* Copy Pods Resources */,
104
+ );
105
+ buildRules = (
106
+ );
107
+ dependencies = (
108
+ );
109
+ name = LibraryConsumer;
110
+ productName = LibraryConsumer;
111
+ productReference = 9B89D2DA19EFC04D00803D42 /* LibraryConsumer.app */;
112
+ productType = "com.apple.product-type.application";
113
+ };
114
+ /* End PBXNativeTarget section */
115
+
116
+ /* Begin PBXProject section */
117
+ 9B89D2D219EFC04D00803D42 /* Project object */ = {
118
+ isa = PBXProject;
119
+ attributes = {
120
+ LastUpgradeCheck = 0600;
121
+ ORGANIZATIONNAME = "Shape A/S";
122
+ TargetAttributes = {
123
+ 9B89D2D919EFC04D00803D42 = {
124
+ CreatedOnToolsVersion = 6.0.1;
125
+ };
126
+ };
127
+ };
128
+ buildConfigurationList = 9B89D2D519EFC04D00803D42 /* Build configuration list for PBXProject "LibraryConsumer" */;
129
+ compatibilityVersion = "Xcode 3.2";
130
+ developmentRegion = English;
131
+ hasScannedForEncodings = 0;
132
+ knownRegions = (
133
+ en,
134
+ Base,
135
+ );
136
+ mainGroup = 9B89D2D119EFC04D00803D42;
137
+ productRefGroup = 9B89D2DB19EFC04D00803D42 /* Products */;
138
+ projectDirPath = "";
139
+ projectRoot = "";
140
+ targets = (
141
+ 9B89D2D919EFC04D00803D42 /* LibraryConsumer */,
142
+ );
143
+ };
144
+ /* End PBXProject section */
145
+
146
+ /* Begin PBXResourcesBuildPhase section */
147
+ 9B89D2D819EFC04D00803D42 /* Resources */ = {
148
+ isa = PBXResourcesBuildPhase;
149
+ buildActionMask = 2147483647;
150
+ files = (
151
+ );
152
+ runOnlyForDeploymentPostprocessing = 0;
153
+ };
154
+ /* End PBXResourcesBuildPhase section */
155
+
156
+ /* Begin PBXShellScriptBuildPhase section */
157
+ 14C9AEC2A1EDEF0F3A88C05F /* Check Pods Manifest.lock */ = {
158
+ isa = PBXShellScriptBuildPhase;
159
+ buildActionMask = 2147483647;
160
+ files = (
161
+ );
162
+ inputPaths = (
163
+ );
164
+ name = "Check Pods Manifest.lock";
165
+ outputPaths = (
166
+ );
167
+ runOnlyForDeploymentPostprocessing = 0;
168
+ shellPath = /bin/sh;
169
+ shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
170
+ showEnvVarsInLog = 0;
171
+ };
172
+ 29ACF15EBB414DA9E6482323 /* Copy Pods Resources */ = {
173
+ isa = PBXShellScriptBuildPhase;
174
+ buildActionMask = 2147483647;
175
+ files = (
176
+ );
177
+ inputPaths = (
178
+ );
179
+ name = "Copy Pods Resources";
180
+ outputPaths = (
181
+ );
182
+ runOnlyForDeploymentPostprocessing = 0;
183
+ shellPath = /bin/sh;
184
+ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n";
185
+ showEnvVarsInLog = 0;
186
+ };
187
+ /* End PBXShellScriptBuildPhase section */
188
+
189
+ /* Begin PBXSourcesBuildPhase section */
190
+ 9B89D2D619EFC04D00803D42 /* Sources */ = {
191
+ isa = PBXSourcesBuildPhase;
192
+ buildActionMask = 2147483647;
193
+ files = (
194
+ 9B89D2E319EFC04D00803D42 /* AppDelegate.m in Sources */,
195
+ 9B89D2E019EFC04D00803D42 /* main.m in Sources */,
196
+ );
197
+ runOnlyForDeploymentPostprocessing = 0;
198
+ };
199
+ /* End PBXSourcesBuildPhase section */
200
+
201
+ /* Begin XCBuildConfiguration section */
202
+ 9B89D2FB19EFC04D00803D42 /* Debug */ = {
203
+ isa = XCBuildConfiguration;
204
+ buildSettings = {
205
+ ALWAYS_SEARCH_USER_PATHS = NO;
206
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
207
+ CLANG_CXX_LIBRARY = "libc++";
208
+ CLANG_ENABLE_MODULES = YES;
209
+ CLANG_ENABLE_OBJC_ARC = YES;
210
+ CLANG_WARN_BOOL_CONVERSION = YES;
211
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
212
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
213
+ CLANG_WARN_EMPTY_BODY = YES;
214
+ CLANG_WARN_ENUM_CONVERSION = YES;
215
+ CLANG_WARN_INT_CONVERSION = YES;
216
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
217
+ CLANG_WARN_UNREACHABLE_CODE = YES;
218
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
219
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
220
+ COPY_PHASE_STRIP = NO;
221
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
222
+ GCC_C_LANGUAGE_STANDARD = gnu99;
223
+ GCC_DYNAMIC_NO_PIC = NO;
224
+ GCC_OPTIMIZATION_LEVEL = 0;
225
+ GCC_PREPROCESSOR_DEFINITIONS = (
226
+ "DEBUG=1",
227
+ "$(inherited)",
228
+ );
229
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
230
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
231
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
232
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
233
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
234
+ GCC_WARN_UNUSED_FUNCTION = YES;
235
+ GCC_WARN_UNUSED_VARIABLE = YES;
236
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
237
+ MTL_ENABLE_DEBUG_INFO = YES;
238
+ ONLY_ACTIVE_ARCH = YES;
239
+ SDKROOT = iphoneos;
240
+ };
241
+ name = Debug;
242
+ };
243
+ 9B89D2FC19EFC04D00803D42 /* Release */ = {
244
+ isa = XCBuildConfiguration;
245
+ buildSettings = {
246
+ ALWAYS_SEARCH_USER_PATHS = NO;
247
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
248
+ CLANG_CXX_LIBRARY = "libc++";
249
+ CLANG_ENABLE_MODULES = YES;
250
+ CLANG_ENABLE_OBJC_ARC = YES;
251
+ CLANG_WARN_BOOL_CONVERSION = YES;
252
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
253
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
254
+ CLANG_WARN_EMPTY_BODY = YES;
255
+ CLANG_WARN_ENUM_CONVERSION = YES;
256
+ CLANG_WARN_INT_CONVERSION = YES;
257
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
258
+ CLANG_WARN_UNREACHABLE_CODE = YES;
259
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
260
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
261
+ COPY_PHASE_STRIP = YES;
262
+ ENABLE_NS_ASSERTIONS = NO;
263
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
264
+ GCC_C_LANGUAGE_STANDARD = gnu99;
265
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
266
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
267
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
268
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
269
+ GCC_WARN_UNUSED_FUNCTION = YES;
270
+ GCC_WARN_UNUSED_VARIABLE = YES;
271
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
272
+ MTL_ENABLE_DEBUG_INFO = NO;
273
+ SDKROOT = iphoneos;
274
+ VALIDATE_PRODUCT = YES;
275
+ };
276
+ name = Release;
277
+ };
278
+ 9B89D2FE19EFC04D00803D42 /* Debug */ = {
279
+ isa = XCBuildConfiguration;
280
+ baseConfigurationReference = 26671200AE9619EBDD855305 /* Pods.debug.xcconfig */;
281
+ buildSettings = {
282
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
283
+ INFOPLIST_FILE = LibraryConsumer/Info.plist;
284
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
285
+ PRODUCT_NAME = "$(TARGET_NAME)";
286
+ };
287
+ name = Debug;
288
+ };
289
+ 9B89D2FF19EFC04D00803D42 /* Release */ = {
290
+ isa = XCBuildConfiguration;
291
+ baseConfigurationReference = 3FCB7F0904C14C858A5D1908 /* Pods.release.xcconfig */;
292
+ buildSettings = {
293
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
294
+ INFOPLIST_FILE = LibraryConsumer/Info.plist;
295
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
296
+ PRODUCT_NAME = "$(TARGET_NAME)";
297
+ };
298
+ name = Release;
299
+ };
300
+ /* End XCBuildConfiguration section */
301
+
302
+ /* Begin XCConfigurationList section */
303
+ 9B89D2D519EFC04D00803D42 /* Build configuration list for PBXProject "LibraryConsumer" */ = {
304
+ isa = XCConfigurationList;
305
+ buildConfigurations = (
306
+ 9B89D2FB19EFC04D00803D42 /* Debug */,
307
+ 9B89D2FC19EFC04D00803D42 /* Release */,
308
+ );
309
+ defaultConfigurationIsVisible = 0;
310
+ defaultConfigurationName = Release;
311
+ };
312
+ 9B89D2FD19EFC04D00803D42 /* Build configuration list for PBXNativeTarget "LibraryConsumer" */ = {
313
+ isa = XCConfigurationList;
314
+ buildConfigurations = (
315
+ 9B89D2FE19EFC04D00803D42 /* Debug */,
316
+ 9B89D2FF19EFC04D00803D42 /* Release */,
317
+ );
318
+ defaultConfigurationIsVisible = 0;
319
+ defaultConfigurationName = Release;
320
+ };
321
+ /* End XCConfigurationList section */
322
+ };
323
+ rootObject = 9B89D2D219EFC04D00803D42 /* Project object */;
324
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:LibraryConsumer.xcodeproj">
6
+ </FileRef>
7
+ </Workspace>
@@ -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
+