@sentry/wizard 3.40.0 → 3.42.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/CHANGELOG.md +12 -1
- package/README.md +19 -19
- package/bin.ts +5 -0
- package/codecov.yml +15 -0
- package/dist/bin.js +4 -0
- package/dist/bin.js.map +1 -1
- package/dist/e2e-tests/jest.config.d.ts +1 -0
- package/dist/e2e-tests/jest.config.js +1 -0
- package/dist/e2e-tests/jest.config.js.map +1 -1
- package/dist/e2e-tests/tests/remix.test.js +1 -1
- package/dist/e2e-tests/tests/remix.test.js.map +1 -1
- package/dist/package.json +3 -2
- package/dist/src/apple/apple-wizard.js +1 -2
- package/dist/src/apple/apple-wizard.js.map +1 -1
- package/dist/src/apple/code-tools.d.ts +10 -0
- package/dist/src/apple/code-tools.js +16 -12
- package/dist/src/apple/code-tools.js.map +1 -1
- package/dist/src/apple/fastlane.d.ts +23 -0
- package/dist/src/apple/fastlane.js +11 -7
- package/dist/src/apple/fastlane.js.map +1 -1
- package/dist/src/apple/templates.d.ts +1 -1
- package/dist/src/apple/templates.js +0 -2
- package/dist/src/apple/templates.js.map +1 -1
- package/dist/src/apple/xcode-manager.d.ts +10 -6
- package/dist/src/apple/xcode-manager.js +146 -61
- package/dist/src/apple/xcode-manager.js.map +1 -1
- package/dist/src/nextjs/nextjs-wizard.js +6 -4
- package/dist/src/nextjs/nextjs-wizard.js.map +1 -1
- package/dist/src/nuxt/nuxt-wizard.js +7 -5
- package/dist/src/nuxt/nuxt-wizard.js.map +1 -1
- package/dist/src/nuxt/sdk-setup.d.ts +1 -1
- package/dist/src/nuxt/sdk-setup.js +2 -1
- package/dist/src/nuxt/sdk-setup.js.map +1 -1
- package/dist/src/react-native/react-native-wizard.js +5 -3
- package/dist/src/react-native/react-native-wizard.js.map +1 -1
- package/dist/src/remix/remix-wizard.js +6 -4
- package/dist/src/remix/remix-wizard.js.map +1 -1
- package/dist/src/remix/sdk-setup.js +0 -4
- package/dist/src/remix/sdk-setup.js.map +1 -1
- package/dist/src/run.d.ts +1 -0
- package/dist/src/run.js +1 -0
- package/dist/src/run.js.map +1 -1
- package/dist/src/sveltekit/sveltekit-wizard.js +6 -4
- package/dist/src/sveltekit/sveltekit-wizard.js.map +1 -1
- package/dist/src/utils/clack-utils.d.ts +3 -1
- package/dist/src/utils/clack-utils.js +18 -12
- package/dist/src/utils/clack-utils.js.map +1 -1
- package/dist/src/utils/package-manager.d.ts +1 -0
- package/dist/src/utils/package-manager.js +5 -0
- package/dist/src/utils/package-manager.js.map +1 -1
- package/dist/src/utils/types.d.ts +9 -0
- package/dist/src/utils/types.js.map +1 -1
- package/dist/test/apple/cocoapod.test.d.ts +1 -0
- package/dist/test/apple/cocoapod.test.js +409 -0
- package/dist/test/apple/cocoapod.test.js.map +1 -0
- package/dist/test/apple/code-tools.test.d.ts +1 -0
- package/dist/test/apple/code-tools.test.js +673 -0
- package/dist/test/apple/code-tools.test.js.map +1 -0
- package/dist/test/apple/fastfile.test.d.ts +1 -0
- package/dist/test/apple/fastfile.test.js +431 -0
- package/dist/test/apple/fastfile.test.js.map +1 -0
- package/dist/test/apple/templates.test.d.ts +1 -0
- package/dist/test/apple/templates.test.js +73 -0
- package/dist/test/apple/templates.test.js.map +1 -0
- package/dist/test/apple/xcode-manager.test.d.ts +1 -0
- package/dist/test/apple/xcode-manager.test.js +834 -0
- package/dist/test/apple/xcode-manager.test.js.map +1 -0
- package/dist/test/remix/server-instrumentation.test.js +2 -2
- package/dist/test/remix/server-instrumentation.test.js.map +1 -1
- package/dist/test/utils/clack-utils.test.js +89 -0
- package/dist/test/utils/clack-utils.test.js.map +1 -1
- package/e2e-tests/jest.config.ts +1 -0
- package/e2e-tests/test-applications/apple/damaged-missing-configuration-list/Project.xcodeproj/project.pbxproj +52 -0
- package/e2e-tests/test-applications/apple/damaged-missing-configuration-list/Project.xcodeproj/xcshareddata/xcschemes/Project1.xcscheme +78 -0
- package/e2e-tests/test-applications/apple/no-targets/Project.xcodeproj/project.pbxproj +62 -0
- package/e2e-tests/test-applications/apple/no-targets/Project.xcodeproj/xcshareddata/xcschemes/Project1.xcscheme +78 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project.xcodeproj/project.pbxproj +470 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project.xcodeproj/xcshareddata/xcschemes/Project1.xcscheme +78 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project1/ContentView.swift +7 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project1/Project1App.swift +10 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project2/ContentView.swift +7 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project2/Project2App.swift +10 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-single-target/Project.xcodeproj/project.pbxproj +382 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-single-target/Project.xcodeproj/xcshareddata/xcschemes/Project.xcscheme +78 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-single-target/Sources/ContentView.swift +7 -0
- package/e2e-tests/test-applications/apple/spm-swiftui-single-target/Sources/MainApp.swift +10 -0
- package/e2e-tests/tests/remix.test.ts +1 -2
- package/package.json +3 -2
- package/src/apple/apple-wizard.ts +1 -2
- package/src/apple/code-tools.ts +21 -6
- package/src/apple/fastlane.ts +18 -2
- package/src/apple/templates.ts +2 -2
- package/src/apple/xcode-manager.ts +181 -94
- package/src/nextjs/nextjs-wizard.ts +6 -3
- package/src/nuxt/nuxt-wizard.ts +7 -4
- package/src/nuxt/sdk-setup.ts +2 -0
- package/src/react-native/react-native-wizard.ts +5 -2
- package/src/remix/remix-wizard.ts +6 -3
- package/src/remix/sdk-setup.ts +0 -5
- package/src/run.ts +2 -0
- package/src/sveltekit/sveltekit-wizard.ts +6 -3
- package/src/utils/clack-utils.ts +12 -2
- package/src/utils/package-manager.ts +6 -0
- package/src/utils/types.ts +10 -0
- package/test/apple/cocoapod.test.ts +306 -0
- package/test/apple/code-tools.test.ts +1042 -0
- package/test/apple/fastfile.test.ts +550 -0
- package/test/apple/templates.test.ts +191 -0
- package/test/apple/xcode-manager.test.ts +1066 -0
- package/test/remix/server-instrumentation.test.ts +2 -4
- package/test/utils/clack-utils.test.ts +92 -0
- package/types/xcode.d.ts +526 -0
|
@@ -0,0 +1,470 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 77;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXFileReference section */
|
|
10
|
+
D4E604CD2D50CEEC00CAB00F /* Project1.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Project1.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
11
|
+
D4E604EE2D50D83000CAB00F /* Project2.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Project2.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
12
|
+
/* End PBXFileReference section */
|
|
13
|
+
|
|
14
|
+
/* Begin PBXFileSystemSynchronizedRootGroup section */
|
|
15
|
+
D4E604CF2D50CEEC00CAB00F /* Project1 */ = {
|
|
16
|
+
isa = PBXFileSystemSynchronizedRootGroup;
|
|
17
|
+
path = Project1;
|
|
18
|
+
sourceTree = "<group>";
|
|
19
|
+
};
|
|
20
|
+
D4E604EF2D50D83000CAB00F /* Project2 */ = {
|
|
21
|
+
isa = PBXFileSystemSynchronizedRootGroup;
|
|
22
|
+
path = Project2;
|
|
23
|
+
sourceTree = "<group>";
|
|
24
|
+
};
|
|
25
|
+
/* End PBXFileSystemSynchronizedRootGroup section */
|
|
26
|
+
|
|
27
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
28
|
+
D4E604CA2D50CEEC00CAB00F /* Frameworks */ = {
|
|
29
|
+
isa = PBXFrameworksBuildPhase;
|
|
30
|
+
buildActionMask = 2147483647;
|
|
31
|
+
files = (
|
|
32
|
+
);
|
|
33
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
34
|
+
};
|
|
35
|
+
D4E604EB2D50D83000CAB00F /* Frameworks */ = {
|
|
36
|
+
isa = PBXFrameworksBuildPhase;
|
|
37
|
+
buildActionMask = 2147483647;
|
|
38
|
+
files = (
|
|
39
|
+
);
|
|
40
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
41
|
+
};
|
|
42
|
+
/* End PBXFrameworksBuildPhase section */
|
|
43
|
+
|
|
44
|
+
/* Begin PBXGroup section */
|
|
45
|
+
D4E604C42D50CEEC00CAB00F = {
|
|
46
|
+
isa = PBXGroup;
|
|
47
|
+
children = (
|
|
48
|
+
D4E604CF2D50CEEC00CAB00F /* Project1 */,
|
|
49
|
+
D4E604EF2D50D83000CAB00F /* Project2 */,
|
|
50
|
+
D4E604CE2D50CEEC00CAB00F /* Products */,
|
|
51
|
+
);
|
|
52
|
+
sourceTree = "<group>";
|
|
53
|
+
};
|
|
54
|
+
D4E604CE2D50CEEC00CAB00F /* Products */ = {
|
|
55
|
+
isa = PBXGroup;
|
|
56
|
+
children = (
|
|
57
|
+
D4E604CD2D50CEEC00CAB00F /* Project1.app */,
|
|
58
|
+
D4E604EE2D50D83000CAB00F /* Project2.app */,
|
|
59
|
+
);
|
|
60
|
+
name = Products;
|
|
61
|
+
sourceTree = "<group>";
|
|
62
|
+
};
|
|
63
|
+
/* End PBXGroup section */
|
|
64
|
+
|
|
65
|
+
/* Begin PBXNativeTarget section */
|
|
66
|
+
D4E604CC2D50CEEC00CAB00F /* Project1 */ = {
|
|
67
|
+
isa = PBXNativeTarget;
|
|
68
|
+
buildConfigurationList = D4E604DC2D50CEEE00CAB00F /* Build configuration list for PBXNativeTarget "Project1" */;
|
|
69
|
+
buildPhases = (
|
|
70
|
+
D4E604C92D50CEEC00CAB00F /* Sources */,
|
|
71
|
+
D4E604CA2D50CEEC00CAB00F /* Frameworks */,
|
|
72
|
+
D4E604CB2D50CEEC00CAB00F /* Resources */,
|
|
73
|
+
);
|
|
74
|
+
buildRules = (
|
|
75
|
+
);
|
|
76
|
+
dependencies = (
|
|
77
|
+
);
|
|
78
|
+
fileSystemSynchronizedGroups = (
|
|
79
|
+
D4E604CF2D50CEEC00CAB00F /* Project1 */,
|
|
80
|
+
);
|
|
81
|
+
name = Project1;
|
|
82
|
+
packageProductDependencies = (
|
|
83
|
+
);
|
|
84
|
+
productName = SentryWizardSampleBlank;
|
|
85
|
+
productReference = D4E604CD2D50CEEC00CAB00F /* Project1.app */;
|
|
86
|
+
productType = "com.apple.product-type.application";
|
|
87
|
+
};
|
|
88
|
+
D4E604ED2D50D83000CAB00F /* Project2 */ = {
|
|
89
|
+
isa = PBXNativeTarget;
|
|
90
|
+
buildConfigurationList = D4E604FA2D50D83100CAB00F /* Build configuration list for PBXNativeTarget "Project2" */;
|
|
91
|
+
buildPhases = (
|
|
92
|
+
D4E604EA2D50D83000CAB00F /* Sources */,
|
|
93
|
+
D4E604EB2D50D83000CAB00F /* Frameworks */,
|
|
94
|
+
D4E604EC2D50D83000CAB00F /* Resources */,
|
|
95
|
+
);
|
|
96
|
+
buildRules = (
|
|
97
|
+
);
|
|
98
|
+
dependencies = (
|
|
99
|
+
);
|
|
100
|
+
fileSystemSynchronizedGroups = (
|
|
101
|
+
D4E604EF2D50D83000CAB00F /* Project2 */,
|
|
102
|
+
);
|
|
103
|
+
name = Project2;
|
|
104
|
+
packageProductDependencies = (
|
|
105
|
+
);
|
|
106
|
+
productName = Project2;
|
|
107
|
+
productReference = D4E604EE2D50D83000CAB00F /* Project2.app */;
|
|
108
|
+
productType = "com.apple.product-type.application";
|
|
109
|
+
};
|
|
110
|
+
/* End PBXNativeTarget section */
|
|
111
|
+
|
|
112
|
+
/* Begin PBXProject section */
|
|
113
|
+
D4E604C52D50CEEC00CAB00F /* Project object */ = {
|
|
114
|
+
isa = PBXProject;
|
|
115
|
+
attributes = {
|
|
116
|
+
BuildIndependentTargetsInParallel = 1;
|
|
117
|
+
LastSwiftUpdateCheck = 1620;
|
|
118
|
+
LastUpgradeCheck = 1620;
|
|
119
|
+
TargetAttributes = {
|
|
120
|
+
D4E604CC2D50CEEC00CAB00F = {
|
|
121
|
+
CreatedOnToolsVersion = 16.2;
|
|
122
|
+
};
|
|
123
|
+
D4E604ED2D50D83000CAB00F = {
|
|
124
|
+
CreatedOnToolsVersion = 16.2;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
buildConfigurationList = D4E604C82D50CEEC00CAB00F /* Build configuration list for PBXProject "Project" */;
|
|
129
|
+
developmentRegion = en;
|
|
130
|
+
hasScannedForEncodings = 0;
|
|
131
|
+
knownRegions = (
|
|
132
|
+
en,
|
|
133
|
+
Base,
|
|
134
|
+
);
|
|
135
|
+
mainGroup = D4E604C42D50CEEC00CAB00F;
|
|
136
|
+
minimizedProjectReferenceProxies = 1;
|
|
137
|
+
preferredProjectObjectVersion = 77;
|
|
138
|
+
productRefGroup = D4E604CE2D50CEEC00CAB00F /* Products */;
|
|
139
|
+
projectDirPath = "";
|
|
140
|
+
projectRoot = "";
|
|
141
|
+
targets = (
|
|
142
|
+
D4E604CC2D50CEEC00CAB00F /* Project1 */,
|
|
143
|
+
D4E604ED2D50D83000CAB00F /* Project2 */,
|
|
144
|
+
);
|
|
145
|
+
};
|
|
146
|
+
/* End PBXProject section */
|
|
147
|
+
|
|
148
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
149
|
+
D4E604CB2D50CEEC00CAB00F /* Resources */ = {
|
|
150
|
+
isa = PBXResourcesBuildPhase;
|
|
151
|
+
buildActionMask = 2147483647;
|
|
152
|
+
files = (
|
|
153
|
+
);
|
|
154
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
155
|
+
};
|
|
156
|
+
D4E604EC2D50D83000CAB00F /* Resources */ = {
|
|
157
|
+
isa = PBXResourcesBuildPhase;
|
|
158
|
+
buildActionMask = 2147483647;
|
|
159
|
+
files = (
|
|
160
|
+
);
|
|
161
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
162
|
+
};
|
|
163
|
+
/* End PBXResourcesBuildPhase section */
|
|
164
|
+
|
|
165
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
166
|
+
D4E604C92D50CEEC00CAB00F /* Sources */ = {
|
|
167
|
+
isa = PBXSourcesBuildPhase;
|
|
168
|
+
buildActionMask = 2147483647;
|
|
169
|
+
files = (
|
|
170
|
+
);
|
|
171
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
172
|
+
};
|
|
173
|
+
D4E604EA2D50D83000CAB00F /* Sources */ = {
|
|
174
|
+
isa = PBXSourcesBuildPhase;
|
|
175
|
+
buildActionMask = 2147483647;
|
|
176
|
+
files = (
|
|
177
|
+
);
|
|
178
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
179
|
+
};
|
|
180
|
+
/* End PBXSourcesBuildPhase section */
|
|
181
|
+
|
|
182
|
+
/* Begin XCBuildConfiguration section */
|
|
183
|
+
D4E604DA2D50CEEE00CAB00F /* Debug */ = {
|
|
184
|
+
isa = XCBuildConfiguration;
|
|
185
|
+
buildSettings = {
|
|
186
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
187
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
188
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
189
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
190
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
191
|
+
CLANG_ENABLE_MODULES = YES;
|
|
192
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
193
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
194
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
195
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
196
|
+
CLANG_WARN_COMMA = YES;
|
|
197
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
198
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
199
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
200
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
201
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
202
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
203
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
204
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
205
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
206
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
207
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
208
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
209
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
210
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
211
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
212
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
213
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
214
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
215
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
216
|
+
COPY_PHASE_STRIP = NO;
|
|
217
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
218
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
219
|
+
ENABLE_TESTABILITY = YES;
|
|
220
|
+
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
|
221
|
+
GCC_C_LANGUAGE_STANDARD = gnu17;
|
|
222
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
223
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
224
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
225
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
226
|
+
"DEBUG=1",
|
|
227
|
+
"$(inherited)",
|
|
228
|
+
);
|
|
229
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
230
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
231
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
232
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
233
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
234
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
235
|
+
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
|
236
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
237
|
+
MTL_FAST_MATH = YES;
|
|
238
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
239
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
|
|
240
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
241
|
+
};
|
|
242
|
+
name = Debug;
|
|
243
|
+
};
|
|
244
|
+
D4E604DB2D50CEEE00CAB00F /* Release */ = {
|
|
245
|
+
isa = XCBuildConfiguration;
|
|
246
|
+
buildSettings = {
|
|
247
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
248
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
249
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
250
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
251
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
252
|
+
CLANG_ENABLE_MODULES = YES;
|
|
253
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
254
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
255
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
256
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
257
|
+
CLANG_WARN_COMMA = YES;
|
|
258
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
259
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
260
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
261
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
262
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
263
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
264
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
265
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
266
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
267
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
268
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
269
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
270
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
271
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
272
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
273
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
274
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
275
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
276
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
277
|
+
COPY_PHASE_STRIP = NO;
|
|
278
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
279
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
280
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
281
|
+
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
|
282
|
+
GCC_C_LANGUAGE_STANDARD = gnu17;
|
|
283
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
284
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
285
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
286
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
287
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
288
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
289
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
290
|
+
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
|
291
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
292
|
+
MTL_FAST_MATH = YES;
|
|
293
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
294
|
+
};
|
|
295
|
+
name = Release;
|
|
296
|
+
};
|
|
297
|
+
D4E604DD2D50CEEE00CAB00F /* Debug */ = {
|
|
298
|
+
isa = XCBuildConfiguration;
|
|
299
|
+
buildSettings = {
|
|
300
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
301
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
302
|
+
CODE_SIGN_STYLE = Automatic;
|
|
303
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
304
|
+
ENABLE_PREVIEWS = YES;
|
|
305
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
306
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
|
|
307
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
|
|
308
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
|
|
309
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
|
|
310
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
|
|
311
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
|
|
312
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
|
|
313
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
|
|
314
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
315
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
316
|
+
IPHONEOS_DEPLOYMENT_TARGET = 18.2;
|
|
317
|
+
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
|
|
318
|
+
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
|
|
319
|
+
MACOSX_DEPLOYMENT_TARGET = 15.2;
|
|
320
|
+
MARKETING_VERSION = 1.0;
|
|
321
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.getsentry.SentryWizardSampleBlank;
|
|
322
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
323
|
+
SDKROOT = auto;
|
|
324
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
|
|
325
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
326
|
+
SWIFT_VERSION = 5.0;
|
|
327
|
+
TARGETED_DEVICE_FAMILY = "1,2,7";
|
|
328
|
+
XROS_DEPLOYMENT_TARGET = 2.2;
|
|
329
|
+
};
|
|
330
|
+
name = Debug;
|
|
331
|
+
};
|
|
332
|
+
D4E604DE2D50CEEE00CAB00F /* Release */ = {
|
|
333
|
+
isa = XCBuildConfiguration;
|
|
334
|
+
buildSettings = {
|
|
335
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
336
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
337
|
+
CODE_SIGN_STYLE = Automatic;
|
|
338
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
339
|
+
ENABLE_PREVIEWS = YES;
|
|
340
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
341
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
|
|
342
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
|
|
343
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
|
|
344
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
|
|
345
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
|
|
346
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
|
|
347
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
|
|
348
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
|
|
349
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
350
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
351
|
+
IPHONEOS_DEPLOYMENT_TARGET = 18.2;
|
|
352
|
+
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
|
|
353
|
+
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
|
|
354
|
+
MACOSX_DEPLOYMENT_TARGET = 15.2;
|
|
355
|
+
MARKETING_VERSION = 1.0;
|
|
356
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.getsentry.SentryWizardSampleBlank;
|
|
357
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
358
|
+
SDKROOT = auto;
|
|
359
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
|
|
360
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
361
|
+
SWIFT_VERSION = 5.0;
|
|
362
|
+
TARGETED_DEVICE_FAMILY = "1,2,7";
|
|
363
|
+
XROS_DEPLOYMENT_TARGET = 2.2;
|
|
364
|
+
};
|
|
365
|
+
name = Release;
|
|
366
|
+
};
|
|
367
|
+
D4E604FB2D50D83100CAB00F /* Debug */ = {
|
|
368
|
+
isa = XCBuildConfiguration;
|
|
369
|
+
buildSettings = {
|
|
370
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
371
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
372
|
+
CODE_SIGN_STYLE = Automatic;
|
|
373
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
374
|
+
ENABLE_PREVIEWS = YES;
|
|
375
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
376
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
|
|
377
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
|
|
378
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
|
|
379
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
|
|
380
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
|
|
381
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
|
|
382
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
|
|
383
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
|
|
384
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
385
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
386
|
+
IPHONEOS_DEPLOYMENT_TARGET = 18.2;
|
|
387
|
+
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
|
|
388
|
+
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
|
|
389
|
+
MACOSX_DEPLOYMENT_TARGET = 15.2;
|
|
390
|
+
MARKETING_VERSION = 1.0;
|
|
391
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.getsentry.Project2;
|
|
392
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
393
|
+
SDKROOT = auto;
|
|
394
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
|
|
395
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
396
|
+
SWIFT_VERSION = 5.0;
|
|
397
|
+
TARGETED_DEVICE_FAMILY = "1,2,7";
|
|
398
|
+
XROS_DEPLOYMENT_TARGET = 2.2;
|
|
399
|
+
};
|
|
400
|
+
name = Debug;
|
|
401
|
+
};
|
|
402
|
+
D4E604FC2D50D83100CAB00F /* Release */ = {
|
|
403
|
+
isa = XCBuildConfiguration;
|
|
404
|
+
buildSettings = {
|
|
405
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
406
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
407
|
+
CODE_SIGN_STYLE = Automatic;
|
|
408
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
409
|
+
ENABLE_PREVIEWS = YES;
|
|
410
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
411
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
|
|
412
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
|
|
413
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
|
|
414
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
|
|
415
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
|
|
416
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
|
|
417
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
|
|
418
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
|
|
419
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
420
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
421
|
+
IPHONEOS_DEPLOYMENT_TARGET = 18.2;
|
|
422
|
+
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
|
|
423
|
+
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
|
|
424
|
+
MACOSX_DEPLOYMENT_TARGET = 15.2;
|
|
425
|
+
MARKETING_VERSION = 1.0;
|
|
426
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.getsentry.Project2;
|
|
427
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
428
|
+
SDKROOT = auto;
|
|
429
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
|
|
430
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
431
|
+
SWIFT_VERSION = 5.0;
|
|
432
|
+
TARGETED_DEVICE_FAMILY = "1,2,7";
|
|
433
|
+
XROS_DEPLOYMENT_TARGET = 2.2;
|
|
434
|
+
};
|
|
435
|
+
name = Release;
|
|
436
|
+
};
|
|
437
|
+
/* End XCBuildConfiguration section */
|
|
438
|
+
|
|
439
|
+
/* Begin XCConfigurationList section */
|
|
440
|
+
D4E604C82D50CEEC00CAB00F /* Build configuration list for PBXProject "Project" */ = {
|
|
441
|
+
isa = XCConfigurationList;
|
|
442
|
+
buildConfigurations = (
|
|
443
|
+
D4E604DA2D50CEEE00CAB00F /* Debug */,
|
|
444
|
+
D4E604DB2D50CEEE00CAB00F /* Release */,
|
|
445
|
+
);
|
|
446
|
+
defaultConfigurationIsVisible = 0;
|
|
447
|
+
defaultConfigurationName = Release;
|
|
448
|
+
};
|
|
449
|
+
D4E604DC2D50CEEE00CAB00F /* Build configuration list for PBXNativeTarget "Project1" */ = {
|
|
450
|
+
isa = XCConfigurationList;
|
|
451
|
+
buildConfigurations = (
|
|
452
|
+
D4E604DD2D50CEEE00CAB00F /* Debug */,
|
|
453
|
+
D4E604DE2D50CEEE00CAB00F /* Release */,
|
|
454
|
+
);
|
|
455
|
+
defaultConfigurationIsVisible = 0;
|
|
456
|
+
defaultConfigurationName = Release;
|
|
457
|
+
};
|
|
458
|
+
D4E604FA2D50D83100CAB00F /* Build configuration list for PBXNativeTarget "Project2" */ = {
|
|
459
|
+
isa = XCConfigurationList;
|
|
460
|
+
buildConfigurations = (
|
|
461
|
+
D4E604FB2D50D83100CAB00F /* Debug */,
|
|
462
|
+
D4E604FC2D50D83100CAB00F /* Release */,
|
|
463
|
+
);
|
|
464
|
+
defaultConfigurationIsVisible = 0;
|
|
465
|
+
defaultConfigurationName = Release;
|
|
466
|
+
};
|
|
467
|
+
/* End XCConfigurationList section */
|
|
468
|
+
};
|
|
469
|
+
rootObject = D4E604C52D50CEEC00CAB00F /* Project object */;
|
|
470
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1620"
|
|
4
|
+
version = "1.7">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES"
|
|
8
|
+
buildArchitectures = "Automatic">
|
|
9
|
+
<BuildActionEntries>
|
|
10
|
+
<BuildActionEntry
|
|
11
|
+
buildForTesting = "YES"
|
|
12
|
+
buildForRunning = "YES"
|
|
13
|
+
buildForProfiling = "YES"
|
|
14
|
+
buildForArchiving = "YES"
|
|
15
|
+
buildForAnalyzing = "YES">
|
|
16
|
+
<BuildableReference
|
|
17
|
+
BuildableIdentifier = "primary"
|
|
18
|
+
BlueprintIdentifier = "D4E604CC2D50CEEC00CAB00F"
|
|
19
|
+
BuildableName = "Project1.app"
|
|
20
|
+
BlueprintName = "Project1"
|
|
21
|
+
ReferencedContainer = "container:Project.xcodeproj">
|
|
22
|
+
</BuildableReference>
|
|
23
|
+
</BuildActionEntry>
|
|
24
|
+
</BuildActionEntries>
|
|
25
|
+
</BuildAction>
|
|
26
|
+
<TestAction
|
|
27
|
+
buildConfiguration = "Debug"
|
|
28
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
29
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
30
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
31
|
+
shouldAutocreateTestPlan = "YES">
|
|
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
|
+
<BuildableProductRunnable
|
|
44
|
+
runnableDebuggingMode = "0">
|
|
45
|
+
<BuildableReference
|
|
46
|
+
BuildableIdentifier = "primary"
|
|
47
|
+
BlueprintIdentifier = "D4E604CC2D50CEEC00CAB00F"
|
|
48
|
+
BuildableName = "Project1.app"
|
|
49
|
+
BlueprintName = "Project1"
|
|
50
|
+
ReferencedContainer = "container:Project.xcodeproj">
|
|
51
|
+
</BuildableReference>
|
|
52
|
+
</BuildableProductRunnable>
|
|
53
|
+
</LaunchAction>
|
|
54
|
+
<ProfileAction
|
|
55
|
+
buildConfiguration = "Release"
|
|
56
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
57
|
+
savedToolIdentifier = ""
|
|
58
|
+
useCustomWorkingDirectory = "NO"
|
|
59
|
+
debugDocumentVersioning = "YES">
|
|
60
|
+
<BuildableProductRunnable
|
|
61
|
+
runnableDebuggingMode = "0">
|
|
62
|
+
<BuildableReference
|
|
63
|
+
BuildableIdentifier = "primary"
|
|
64
|
+
BlueprintIdentifier = "D4E604CC2D50CEEC00CAB00F"
|
|
65
|
+
BuildableName = "Project1.app"
|
|
66
|
+
BlueprintName = "Project1"
|
|
67
|
+
ReferencedContainer = "container:Project.xcodeproj">
|
|
68
|
+
</BuildableReference>
|
|
69
|
+
</BuildableProductRunnable>
|
|
70
|
+
</ProfileAction>
|
|
71
|
+
<AnalyzeAction
|
|
72
|
+
buildConfiguration = "Debug">
|
|
73
|
+
</AnalyzeAction>
|
|
74
|
+
<ArchiveAction
|
|
75
|
+
buildConfiguration = "Release"
|
|
76
|
+
revealArchiveInOrganizer = "YES">
|
|
77
|
+
</ArchiveAction>
|
|
78
|
+
</Scheme>
|