rn-linkrunner 2.5.2 → 2.6.0
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.
- package/LinkrunnerSDK.podspec +1 -1
- package/ios/Podfile +1 -1
- package/ios/Pods/LinkrunnerKit/LICENSE +21 -0
- package/ios/Pods/LinkrunnerKit/README.md +15 -0
- package/ios/Pods/LinkrunnerKit/Sources/Linkrunner/HmacSignatureGenerator.swift +95 -0
- package/ios/Pods/LinkrunnerKit/Sources/Linkrunner/Linkrunner.swift +1109 -0
- package/ios/Pods/LinkrunnerKit/Sources/Linkrunner/Models.swift +356 -0
- package/ios/Pods/LinkrunnerKit/Sources/Linkrunner/RequestSigningInterceptor.swift +110 -0
- package/ios/Pods/LinkrunnerKit/Sources/Linkrunner/SHA256.swift +12 -0
- package/ios/Pods/LinkrunnerKit/Sources/Linkrunner/SKAdNetworkService.swift +428 -0
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +440 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/shofiyabootwala.xcuserdatad/xcschemes/LinkrunnerKit.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/shofiyabootwala.xcuserdatad/xcschemes/xcschememanagement.plist +16 -0
- package/ios/Pods/Target Support Files/LinkrunnerKit/LinkrunnerKit-Info.plist +26 -0
- package/ios/Pods/Target Support Files/LinkrunnerKit/LinkrunnerKit-dummy.m +5 -0
- package/ios/Pods/Target Support Files/LinkrunnerKit/LinkrunnerKit-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/LinkrunnerKit/LinkrunnerKit-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/LinkrunnerKit/LinkrunnerKit.debug.xcconfig +17 -0
- package/ios/Pods/Target Support Files/LinkrunnerKit/LinkrunnerKit.modulemap +6 -0
- package/ios/Pods/Target Support Files/LinkrunnerKit/LinkrunnerKit.release.xcconfig +17 -0
- package/package.json +1 -1
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
46EB2E000001E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46EB2E000001D0 /* Foundation.framework */; };
|
|
11
|
+
46EB2E000001F0 /* HmacSignatureGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000000D0 /* HmacSignatureGenerator.swift */; };
|
|
12
|
+
46EB2E00000200 /* Linkrunner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000000E0 /* Linkrunner.swift */; };
|
|
13
|
+
46EB2E00000210 /* Models.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000000F0 /* Models.swift */; };
|
|
14
|
+
46EB2E00000220 /* RequestSigningInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000100 /* RequestSigningInterceptor.swift */; };
|
|
15
|
+
46EB2E00000230 /* SHA256.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000110 /* SHA256.swift */; };
|
|
16
|
+
46EB2E00000240 /* SKAdNetworkService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000120 /* SKAdNetworkService.swift */; };
|
|
17
|
+
46EB2E000002A0 /* LinkrunnerKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000290 /* LinkrunnerKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
18
|
+
46EB2E000002E0 /* LinkrunnerKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000002D0 /* LinkrunnerKit-dummy.m */; };
|
|
19
|
+
46EB2E00000300 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46EB2E000002F0 /* UIKit.framework */; };
|
|
20
|
+
46EB2E00000320 /* Network.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46EB2E00000310 /* Network.framework */; };
|
|
21
|
+
/* End PBXBuildFile section */
|
|
22
|
+
|
|
23
|
+
/* Begin PBXFileReference section */
|
|
24
|
+
46EB2E000000C0 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
|
25
|
+
46EB2E000000D0 /* HmacSignatureGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HmacSignatureGenerator.swift; path = Sources/Linkrunner/HmacSignatureGenerator.swift; sourceTree = "<group>"; };
|
|
26
|
+
46EB2E000000E0 /* Linkrunner.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Linkrunner.swift; path = Sources/Linkrunner/Linkrunner.swift; sourceTree = "<group>"; };
|
|
27
|
+
46EB2E000000F0 /* Models.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Models.swift; path = Sources/Linkrunner/Models.swift; sourceTree = "<group>"; };
|
|
28
|
+
46EB2E00000100 /* RequestSigningInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestSigningInterceptor.swift; path = Sources/Linkrunner/RequestSigningInterceptor.swift; sourceTree = "<group>"; };
|
|
29
|
+
46EB2E00000110 /* SHA256.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SHA256.swift; path = Sources/Linkrunner/SHA256.swift; sourceTree = "<group>"; };
|
|
30
|
+
46EB2E00000120 /* SKAdNetworkService.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SKAdNetworkService.swift; path = Sources/Linkrunner/SKAdNetworkService.swift; sourceTree = "<group>"; };
|
|
31
|
+
46EB2E000001D0 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
|
|
32
|
+
46EB2E00000260 /* LinkrunnerKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LinkrunnerKit.release.xcconfig; sourceTree = "<group>"; };
|
|
33
|
+
46EB2E00000270 /* LinkrunnerKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LinkrunnerKit.debug.xcconfig; sourceTree = "<group>"; };
|
|
34
|
+
46EB2E00000280 /* LinkrunnerKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LinkrunnerKit.modulemap; sourceTree = "<group>"; };
|
|
35
|
+
46EB2E00000290 /* LinkrunnerKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LinkrunnerKit-umbrella.h"; sourceTree = "<group>"; };
|
|
36
|
+
46EB2E000002B0 /* LinkrunnerKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LinkrunnerKit-Info.plist"; sourceTree = "<group>"; };
|
|
37
|
+
46EB2E000002C0 /* LinkrunnerKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LinkrunnerKit-prefix.pch"; sourceTree = "<group>"; };
|
|
38
|
+
46EB2E000002D0 /* LinkrunnerKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LinkrunnerKit-dummy.m"; sourceTree = "<group>"; };
|
|
39
|
+
46EB2E000002F0 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
|
|
40
|
+
46EB2E00000310 /* Network.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Network.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Network.framework; sourceTree = DEVELOPER_DIR; };
|
|
41
|
+
BDDA7B2A8A9CFB017588F5554D8E12DC /* LinkrunnerKit */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = LinkrunnerKit; path = LinkrunnerKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
42
|
+
/* End PBXFileReference section */
|
|
43
|
+
|
|
44
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
45
|
+
46EB2E000001A0 /* Frameworks */ = {
|
|
46
|
+
isa = PBXFrameworksBuildPhase;
|
|
47
|
+
buildActionMask = 2147483647;
|
|
48
|
+
files = (
|
|
49
|
+
46EB2E000001E0 /* Foundation.framework in Frameworks */,
|
|
50
|
+
46EB2E00000320 /* Network.framework in Frameworks */,
|
|
51
|
+
46EB2E00000300 /* UIKit.framework in Frameworks */,
|
|
52
|
+
);
|
|
53
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
54
|
+
};
|
|
55
|
+
/* End PBXFrameworksBuildPhase section */
|
|
56
|
+
|
|
57
|
+
/* Begin PBXGroup section */
|
|
58
|
+
46EB2E00000010 = {
|
|
59
|
+
isa = PBXGroup;
|
|
60
|
+
children = (
|
|
61
|
+
46EB2E000000C0 /* Podfile */,
|
|
62
|
+
46EB2E00000060 /* Frameworks */,
|
|
63
|
+
46EB2E00000080 /* Pods */,
|
|
64
|
+
46EB2E00000020 /* Products */,
|
|
65
|
+
);
|
|
66
|
+
sourceTree = "<group>";
|
|
67
|
+
};
|
|
68
|
+
46EB2E00000020 /* Products */ = {
|
|
69
|
+
isa = PBXGroup;
|
|
70
|
+
children = (
|
|
71
|
+
BDDA7B2A8A9CFB017588F5554D8E12DC /* LinkrunnerKit */,
|
|
72
|
+
);
|
|
73
|
+
name = Products;
|
|
74
|
+
sourceTree = "<group>";
|
|
75
|
+
};
|
|
76
|
+
46EB2E00000060 /* Frameworks */ = {
|
|
77
|
+
isa = PBXGroup;
|
|
78
|
+
children = (
|
|
79
|
+
46EB2E000001C0 /* iOS */,
|
|
80
|
+
);
|
|
81
|
+
name = Frameworks;
|
|
82
|
+
sourceTree = "<group>";
|
|
83
|
+
};
|
|
84
|
+
46EB2E00000080 /* Pods */ = {
|
|
85
|
+
isa = PBXGroup;
|
|
86
|
+
children = (
|
|
87
|
+
46EB2E000000B0 /* LinkrunnerKit */,
|
|
88
|
+
);
|
|
89
|
+
name = Pods;
|
|
90
|
+
sourceTree = "<group>";
|
|
91
|
+
};
|
|
92
|
+
46EB2E000000B0 /* LinkrunnerKit */ = {
|
|
93
|
+
isa = PBXGroup;
|
|
94
|
+
children = (
|
|
95
|
+
46EB2E000000D0 /* HmacSignatureGenerator.swift */,
|
|
96
|
+
46EB2E000000E0 /* Linkrunner.swift */,
|
|
97
|
+
46EB2E000000F0 /* Models.swift */,
|
|
98
|
+
46EB2E00000100 /* RequestSigningInterceptor.swift */,
|
|
99
|
+
46EB2E00000110 /* SHA256.swift */,
|
|
100
|
+
46EB2E00000120 /* SKAdNetworkService.swift */,
|
|
101
|
+
46EB2E00000250 /* Support Files */,
|
|
102
|
+
);
|
|
103
|
+
name = LinkrunnerKit;
|
|
104
|
+
path = LinkrunnerKit;
|
|
105
|
+
sourceTree = "<group>";
|
|
106
|
+
};
|
|
107
|
+
46EB2E000001C0 /* iOS */ = {
|
|
108
|
+
isa = PBXGroup;
|
|
109
|
+
children = (
|
|
110
|
+
46EB2E000001D0 /* Foundation.framework */,
|
|
111
|
+
46EB2E00000310 /* Network.framework */,
|
|
112
|
+
46EB2E000002F0 /* UIKit.framework */,
|
|
113
|
+
);
|
|
114
|
+
name = iOS;
|
|
115
|
+
sourceTree = "<group>";
|
|
116
|
+
};
|
|
117
|
+
46EB2E00000250 /* Support Files */ = {
|
|
118
|
+
isa = PBXGroup;
|
|
119
|
+
children = (
|
|
120
|
+
46EB2E00000280 /* LinkrunnerKit.modulemap */,
|
|
121
|
+
46EB2E000002D0 /* LinkrunnerKit-dummy.m */,
|
|
122
|
+
46EB2E000002B0 /* LinkrunnerKit-Info.plist */,
|
|
123
|
+
46EB2E000002C0 /* LinkrunnerKit-prefix.pch */,
|
|
124
|
+
46EB2E00000290 /* LinkrunnerKit-umbrella.h */,
|
|
125
|
+
46EB2E00000270 /* LinkrunnerKit.debug.xcconfig */,
|
|
126
|
+
46EB2E00000260 /* LinkrunnerKit.release.xcconfig */,
|
|
127
|
+
);
|
|
128
|
+
name = "Support Files";
|
|
129
|
+
path = "../Target Support Files/LinkrunnerKit";
|
|
130
|
+
sourceTree = "<group>";
|
|
131
|
+
};
|
|
132
|
+
/* End PBXGroup section */
|
|
133
|
+
|
|
134
|
+
/* Begin PBXHeadersBuildPhase section */
|
|
135
|
+
46EB2E00000180 /* Headers */ = {
|
|
136
|
+
isa = PBXHeadersBuildPhase;
|
|
137
|
+
buildActionMask = 2147483647;
|
|
138
|
+
files = (
|
|
139
|
+
46EB2E000002A0 /* LinkrunnerKit-umbrella.h in Headers */,
|
|
140
|
+
);
|
|
141
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
142
|
+
};
|
|
143
|
+
/* End PBXHeadersBuildPhase section */
|
|
144
|
+
|
|
145
|
+
/* Begin PBXNativeTarget section */
|
|
146
|
+
9F0085C24A11EB89A741088891186030 /* LinkrunnerKit */ = {
|
|
147
|
+
isa = PBXNativeTarget;
|
|
148
|
+
buildConfigurationList = 46EB2E00000140 /* Build configuration list for PBXNativeTarget "LinkrunnerKit" */;
|
|
149
|
+
buildPhases = (
|
|
150
|
+
46EB2E00000180 /* Headers */,
|
|
151
|
+
46EB2E00000190 /* Sources */,
|
|
152
|
+
46EB2E000001A0 /* Frameworks */,
|
|
153
|
+
46EB2E000001B0 /* Resources */,
|
|
154
|
+
);
|
|
155
|
+
buildRules = (
|
|
156
|
+
);
|
|
157
|
+
dependencies = (
|
|
158
|
+
);
|
|
159
|
+
name = LinkrunnerKit;
|
|
160
|
+
productName = LinkrunnerKit;
|
|
161
|
+
productReference = BDDA7B2A8A9CFB017588F5554D8E12DC /* LinkrunnerKit */;
|
|
162
|
+
productType = "com.apple.product-type.framework";
|
|
163
|
+
};
|
|
164
|
+
/* End PBXNativeTarget section */
|
|
165
|
+
|
|
166
|
+
/* Begin PBXProject section */
|
|
167
|
+
46EB2E00000000 /* Project object */ = {
|
|
168
|
+
isa = PBXProject;
|
|
169
|
+
attributes = {
|
|
170
|
+
LastSwiftUpdateCheck = 1600;
|
|
171
|
+
LastUpgradeCheck = 1600;
|
|
172
|
+
};
|
|
173
|
+
buildConfigurationList = 46EB2E00000030 /* Build configuration list for PBXProject "Pods" */;
|
|
174
|
+
compatibilityVersion = "Xcode 3.2";
|
|
175
|
+
developmentRegion = en;
|
|
176
|
+
hasScannedForEncodings = 0;
|
|
177
|
+
knownRegions = (
|
|
178
|
+
Base,
|
|
179
|
+
en,
|
|
180
|
+
);
|
|
181
|
+
mainGroup = 46EB2E00000010;
|
|
182
|
+
minimizedProjectReferenceProxies = 0;
|
|
183
|
+
preferredProjectObjectVersion = 77;
|
|
184
|
+
productRefGroup = 46EB2E00000020 /* Products */;
|
|
185
|
+
projectDirPath = "";
|
|
186
|
+
projectRoot = "";
|
|
187
|
+
targets = (
|
|
188
|
+
9F0085C24A11EB89A741088891186030 /* LinkrunnerKit */,
|
|
189
|
+
);
|
|
190
|
+
};
|
|
191
|
+
/* End PBXProject section */
|
|
192
|
+
|
|
193
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
194
|
+
46EB2E000001B0 /* Resources */ = {
|
|
195
|
+
isa = PBXResourcesBuildPhase;
|
|
196
|
+
buildActionMask = 2147483647;
|
|
197
|
+
files = (
|
|
198
|
+
);
|
|
199
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
200
|
+
};
|
|
201
|
+
/* End PBXResourcesBuildPhase section */
|
|
202
|
+
|
|
203
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
204
|
+
46EB2E00000190 /* Sources */ = {
|
|
205
|
+
isa = PBXSourcesBuildPhase;
|
|
206
|
+
buildActionMask = 2147483647;
|
|
207
|
+
files = (
|
|
208
|
+
46EB2E000001F0 /* HmacSignatureGenerator.swift in Sources */,
|
|
209
|
+
46EB2E00000200 /* Linkrunner.swift in Sources */,
|
|
210
|
+
46EB2E000002E0 /* LinkrunnerKit-dummy.m in Sources */,
|
|
211
|
+
46EB2E00000210 /* Models.swift in Sources */,
|
|
212
|
+
46EB2E00000220 /* RequestSigningInterceptor.swift in Sources */,
|
|
213
|
+
46EB2E00000230 /* SHA256.swift in Sources */,
|
|
214
|
+
46EB2E00000240 /* SKAdNetworkService.swift in Sources */,
|
|
215
|
+
);
|
|
216
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
217
|
+
};
|
|
218
|
+
/* End PBXSourcesBuildPhase section */
|
|
219
|
+
|
|
220
|
+
/* Begin XCBuildConfiguration section */
|
|
221
|
+
46EB2E00000040 /* Debug */ = {
|
|
222
|
+
isa = XCBuildConfiguration;
|
|
223
|
+
buildSettings = {
|
|
224
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
225
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
226
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
227
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
228
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
229
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
230
|
+
CLANG_ENABLE_MODULES = YES;
|
|
231
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
232
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
233
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
234
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
235
|
+
CLANG_WARN_COMMA = YES;
|
|
236
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
237
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
238
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
239
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
240
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
241
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
242
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
243
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
244
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
245
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
246
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
247
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
248
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
249
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
250
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
251
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
252
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
253
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
254
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
255
|
+
COPY_PHASE_STRIP = NO;
|
|
256
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
257
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
258
|
+
ENABLE_TESTABILITY = YES;
|
|
259
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
260
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
261
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
262
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
263
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
264
|
+
"POD_CONFIGURATION_DEBUG=1",
|
|
265
|
+
"DEBUG=1",
|
|
266
|
+
"$(inherited)",
|
|
267
|
+
);
|
|
268
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
269
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
270
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
271
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
272
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
273
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
274
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
275
|
+
MTL_FAST_MATH = YES;
|
|
276
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
277
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
278
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
279
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
280
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
281
|
+
SWIFT_VERSION = 5.0;
|
|
282
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
283
|
+
};
|
|
284
|
+
name = Debug;
|
|
285
|
+
};
|
|
286
|
+
46EB2E00000050 /* Release */ = {
|
|
287
|
+
isa = XCBuildConfiguration;
|
|
288
|
+
buildSettings = {
|
|
289
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
290
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
291
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
292
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
293
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
294
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
295
|
+
CLANG_ENABLE_MODULES = YES;
|
|
296
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
297
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
298
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
299
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
300
|
+
CLANG_WARN_COMMA = YES;
|
|
301
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
302
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
303
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
304
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
305
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
306
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
307
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
308
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
309
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
310
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
311
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
312
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
313
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
314
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
315
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
316
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
317
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
318
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
319
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
320
|
+
COPY_PHASE_STRIP = NO;
|
|
321
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
322
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
323
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
324
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
325
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
326
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
327
|
+
"POD_CONFIGURATION_RELEASE=1",
|
|
328
|
+
"$(inherited)",
|
|
329
|
+
);
|
|
330
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
331
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
332
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
333
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
334
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
335
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
336
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
337
|
+
MTL_FAST_MATH = YES;
|
|
338
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
339
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
340
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
341
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
342
|
+
SWIFT_VERSION = 5.0;
|
|
343
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
344
|
+
};
|
|
345
|
+
name = Release;
|
|
346
|
+
};
|
|
347
|
+
46EB2E00000150 /* Release */ = {
|
|
348
|
+
isa = XCBuildConfiguration;
|
|
349
|
+
baseConfigurationReference = 46EB2E00000260 /* LinkrunnerKit.release.xcconfig */;
|
|
350
|
+
buildSettings = {
|
|
351
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
352
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
353
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
354
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
355
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
356
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
357
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
358
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
359
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
360
|
+
ENABLE_MODULE_VERIFIER = NO;
|
|
361
|
+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
|
362
|
+
GCC_PREFIX_HEADER = "Target Support Files/LinkrunnerKit/LinkrunnerKit-prefix.pch";
|
|
363
|
+
GENERATE_INFOPLIST_FILE = NO;
|
|
364
|
+
INFOPLIST_FILE = "Target Support Files/LinkrunnerKit/LinkrunnerKit-Info.plist";
|
|
365
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
366
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
367
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
368
|
+
MODULEMAP_FILE = "Target Support Files/LinkrunnerKit/LinkrunnerKit.modulemap";
|
|
369
|
+
PRODUCT_MODULE_NAME = LinkrunnerKit;
|
|
370
|
+
PRODUCT_NAME = LinkrunnerKit;
|
|
371
|
+
SDKROOT = iphoneos;
|
|
372
|
+
SKIP_INSTALL = YES;
|
|
373
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
374
|
+
SWIFT_VERSION = 5.9;
|
|
375
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
376
|
+
VALIDATE_PRODUCT = YES;
|
|
377
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
378
|
+
VERSION_INFO_PREFIX = "";
|
|
379
|
+
};
|
|
380
|
+
name = Release;
|
|
381
|
+
};
|
|
382
|
+
46EB2E00000160 /* Debug */ = {
|
|
383
|
+
isa = XCBuildConfiguration;
|
|
384
|
+
baseConfigurationReference = 46EB2E00000270 /* LinkrunnerKit.debug.xcconfig */;
|
|
385
|
+
buildSettings = {
|
|
386
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
387
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
388
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
389
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
390
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
391
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
392
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
393
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
394
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
395
|
+
ENABLE_MODULE_VERIFIER = NO;
|
|
396
|
+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
|
397
|
+
GCC_PREFIX_HEADER = "Target Support Files/LinkrunnerKit/LinkrunnerKit-prefix.pch";
|
|
398
|
+
GENERATE_INFOPLIST_FILE = NO;
|
|
399
|
+
INFOPLIST_FILE = "Target Support Files/LinkrunnerKit/LinkrunnerKit-Info.plist";
|
|
400
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
401
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
402
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
403
|
+
MODULEMAP_FILE = "Target Support Files/LinkrunnerKit/LinkrunnerKit.modulemap";
|
|
404
|
+
PRODUCT_MODULE_NAME = LinkrunnerKit;
|
|
405
|
+
PRODUCT_NAME = LinkrunnerKit;
|
|
406
|
+
SDKROOT = iphoneos;
|
|
407
|
+
SKIP_INSTALL = YES;
|
|
408
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
409
|
+
SWIFT_VERSION = 5.9;
|
|
410
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
411
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
412
|
+
VERSION_INFO_PREFIX = "";
|
|
413
|
+
};
|
|
414
|
+
name = Debug;
|
|
415
|
+
};
|
|
416
|
+
/* End XCBuildConfiguration section */
|
|
417
|
+
|
|
418
|
+
/* Begin XCConfigurationList section */
|
|
419
|
+
46EB2E00000030 /* Build configuration list for PBXProject "Pods" */ = {
|
|
420
|
+
isa = XCConfigurationList;
|
|
421
|
+
buildConfigurations = (
|
|
422
|
+
46EB2E00000040 /* Debug */,
|
|
423
|
+
46EB2E00000050 /* Release */,
|
|
424
|
+
);
|
|
425
|
+
defaultConfigurationIsVisible = 0;
|
|
426
|
+
defaultConfigurationName = Release;
|
|
427
|
+
};
|
|
428
|
+
46EB2E00000140 /* Build configuration list for PBXNativeTarget "LinkrunnerKit" */ = {
|
|
429
|
+
isa = XCConfigurationList;
|
|
430
|
+
buildConfigurations = (
|
|
431
|
+
46EB2E00000160 /* Debug */,
|
|
432
|
+
46EB2E00000150 /* Release */,
|
|
433
|
+
);
|
|
434
|
+
defaultConfigurationIsVisible = 0;
|
|
435
|
+
defaultConfigurationName = Release;
|
|
436
|
+
};
|
|
437
|
+
/* End XCConfigurationList section */
|
|
438
|
+
};
|
|
439
|
+
rootObject = 46EB2E00000000 /* Project object */;
|
|
440
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1600"
|
|
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 = "9F0085C24A11EB89A741088891186030"
|
|
18
|
+
BuildableName = "LinkrunnerKit.framework"
|
|
19
|
+
BlueprintName = "LinkrunnerKit"
|
|
20
|
+
ReferencedContainer = "container:Pods.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
</BuildActionEntries>
|
|
24
|
+
</BuildAction>
|
|
25
|
+
<TestAction
|
|
26
|
+
buildConfiguration = "Debug"
|
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
+
<Testables>
|
|
31
|
+
</Testables>
|
|
32
|
+
</TestAction>
|
|
33
|
+
<LaunchAction
|
|
34
|
+
buildConfiguration = "Debug"
|
|
35
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
36
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
37
|
+
launchStyle = "0"
|
|
38
|
+
useCustomWorkingDirectory = "NO"
|
|
39
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
40
|
+
debugDocumentVersioning = "YES"
|
|
41
|
+
debugServiceExtension = "internal"
|
|
42
|
+
allowLocationSimulation = "YES">
|
|
43
|
+
</LaunchAction>
|
|
44
|
+
<ProfileAction
|
|
45
|
+
buildConfiguration = "Release"
|
|
46
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
47
|
+
savedToolIdentifier = ""
|
|
48
|
+
useCustomWorkingDirectory = "NO"
|
|
49
|
+
debugDocumentVersioning = "YES">
|
|
50
|
+
</ProfileAction>
|
|
51
|
+
<AnalyzeAction
|
|
52
|
+
buildConfiguration = "Debug">
|
|
53
|
+
</AnalyzeAction>
|
|
54
|
+
<ArchiveAction
|
|
55
|
+
buildConfiguration = "Release"
|
|
56
|
+
revealArchiveInOrganizer = "YES">
|
|
57
|
+
</ArchiveAction>
|
|
58
|
+
</Scheme>
|
|
@@ -0,0 +1,16 @@
|
|
|
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>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>LinkrunnerKit.xcscheme</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>isShown</key>
|
|
10
|
+
<false/>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
<key>SuppressBuildableAutocreation</key>
|
|
14
|
+
<dict/>
|
|
15
|
+
</dict>
|
|
16
|
+
</plist>
|
|
@@ -0,0 +1,26 @@
|
|
|
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>${PODS_DEVELOPMENT_LANGUAGE}</string>
|
|
7
|
+
<key>CFBundleExecutable</key>
|
|
8
|
+
<string>${EXECUTABLE_NAME}</string>
|
|
9
|
+
<key>CFBundleIdentifier</key>
|
|
10
|
+
<string>${PRODUCT_BUNDLE_IDENTIFIER}</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>FMWK</string>
|
|
17
|
+
<key>CFBundleShortVersionString</key>
|
|
18
|
+
<string>3.6.0</string>
|
|
19
|
+
<key>CFBundleSignature</key>
|
|
20
|
+
<string>????</string>
|
|
21
|
+
<key>CFBundleVersion</key>
|
|
22
|
+
<string>${CURRENT_PROJECT_VERSION}</string>
|
|
23
|
+
<key>NSPrincipalClass</key>
|
|
24
|
+
<string></string>
|
|
25
|
+
</dict>
|
|
26
|
+
</plist>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#ifdef __OBJC__
|
|
2
|
+
#import <UIKit/UIKit.h>
|
|
3
|
+
#else
|
|
4
|
+
#ifndef FOUNDATION_EXPORT
|
|
5
|
+
#if defined(__cplusplus)
|
|
6
|
+
#define FOUNDATION_EXPORT extern "C"
|
|
7
|
+
#else
|
|
8
|
+
#define FOUNDATION_EXPORT extern
|
|
9
|
+
#endif
|
|
10
|
+
#endif
|
|
11
|
+
#endif
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
FOUNDATION_EXPORT double LinkrunnerKitVersionNumber;
|
|
15
|
+
FOUNDATION_EXPORT const unsigned char LinkrunnerKitVersionString[];
|
|
16
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
|
|
2
|
+
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/LinkrunnerKit
|
|
3
|
+
DEFINES_MODULE = YES
|
|
4
|
+
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
|
5
|
+
LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift
|
|
6
|
+
OTHER_LDFLAGS = $(inherited) -framework "Foundation" -framework "Network" -framework "UIKit"
|
|
7
|
+
OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
|
|
8
|
+
PODS_BUILD_DIR = ${BUILD_DIR}
|
|
9
|
+
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
|
10
|
+
PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE}
|
|
11
|
+
PODS_ROOT = ${SRCROOT}
|
|
12
|
+
PODS_TARGET_SRCROOT = ${PODS_ROOT}/LinkrunnerKit
|
|
13
|
+
PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
|
|
14
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
|
|
15
|
+
SKIP_INSTALL = YES
|
|
16
|
+
SWIFT_INSTALL_OBJC_HEADER = NO
|
|
17
|
+
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
|
|
2
|
+
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/LinkrunnerKit
|
|
3
|
+
DEFINES_MODULE = YES
|
|
4
|
+
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
|
5
|
+
LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift
|
|
6
|
+
OTHER_LDFLAGS = $(inherited) -framework "Foundation" -framework "Network" -framework "UIKit"
|
|
7
|
+
OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
|
|
8
|
+
PODS_BUILD_DIR = ${BUILD_DIR}
|
|
9
|
+
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
|
10
|
+
PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE}
|
|
11
|
+
PODS_ROOT = ${SRCROOT}
|
|
12
|
+
PODS_TARGET_SRCROOT = ${PODS_ROOT}/LinkrunnerKit
|
|
13
|
+
PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
|
|
14
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
|
|
15
|
+
SKIP_INSTALL = YES
|
|
16
|
+
SWIFT_INSTALL_OBJC_HEADER = NO
|
|
17
|
+
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
|