react-native-qrcode-svg 6.3.2 → 6.3.12

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 (91) hide show
  1. package/Example/.bundle/config +2 -0
  2. package/Example/.eslintrc.js +4 -0
  3. package/Example/.prettierrc.js +7 -0
  4. package/Example/.watchmanconfig +1 -0
  5. package/Example/Gemfile +9 -0
  6. package/Example/Gemfile.lock +103 -0
  7. package/Example/README.md +48 -0
  8. package/Example/__tests__/App.test.tsx +17 -0
  9. package/Example/android/app/build.gradle +119 -0
  10. package/Example/android/app/debug.keystore +0 -0
  11. package/Example/android/app/proguard-rules.pro +10 -0
  12. package/Example/android/app/src/debug/AndroidManifest.xml +9 -0
  13. package/Example/android/app/src/main/AndroidManifest.xml +25 -0
  14. package/Example/android/app/src/main/java/com/example/MainActivity.kt +22 -0
  15. package/Example/android/app/src/main/java/com/example/MainApplication.kt +45 -0
  16. package/Example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  17. package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  18. package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  19. package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  20. package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  21. package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  22. package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  23. package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  24. package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  25. package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  26. package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  27. package/Example/android/app/src/main/res/values/strings.xml +3 -0
  28. package/Example/android/app/src/main/res/values/styles.xml +9 -0
  29. package/Example/android/build.gradle +21 -0
  30. package/Example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  31. package/Example/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  32. package/Example/android/gradle.properties +41 -0
  33. package/Example/android/gradlew +249 -0
  34. package/Example/android/gradlew.bat +92 -0
  35. package/Example/android/settings.gradle +4 -0
  36. package/Example/app.json +4 -0
  37. package/Example/babel.config.js +4 -0
  38. package/Example/dist/index.html +24 -0
  39. package/Example/global.d.ts +7 -0
  40. package/Example/index.js +14 -0
  41. package/Example/ios/.xcode.env +11 -0
  42. package/Example/ios/Example/AppDelegate.h +6 -0
  43. package/Example/ios/Example/AppDelegate.mm +31 -0
  44. package/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  45. package/Example/ios/Example/Images.xcassets/Contents.json +6 -0
  46. package/Example/ios/Example/Info.plist +52 -0
  47. package/Example/ios/Example/LaunchScreen.storyboard +47 -0
  48. package/Example/ios/Example/main.m +10 -0
  49. package/Example/ios/Example.xcodeproj/project.pbxproj +698 -0
  50. package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme +88 -0
  51. package/Example/ios/Example.xcworkspace/contents.xcworkspacedata +10 -0
  52. package/Example/ios/ExampleTests/ExampleTests.m +66 -0
  53. package/Example/ios/ExampleTests/Info.plist +24 -0
  54. package/Example/ios/Podfile +55 -0
  55. package/Example/ios/Podfile.lock +1378 -0
  56. package/Example/jest.config.js +3 -0
  57. package/Example/macos/.xcode.env +1 -0
  58. package/Example/macos/.xcode.env.local +2 -0
  59. package/Example/macos/Example-macOS/AppDelegate.h +6 -0
  60. package/Example/macos/Example-macOS/AppDelegate.mm +40 -0
  61. package/Example/macos/Example-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  62. package/Example/macos/Example-macOS/Assets.xcassets/Contents.json +6 -0
  63. package/Example/macos/Example-macOS/Base.lproj/Main.storyboard +684 -0
  64. package/Example/macos/Example-macOS/Example.entitlements +12 -0
  65. package/Example/macos/Example-macOS/Info.plist +47 -0
  66. package/Example/macos/Example-macOS/main.m +5 -0
  67. package/Example/macos/Example.xcodeproj/project.pbxproj +567 -0
  68. package/Example/macos/Example.xcodeproj/xcshareddata/xcschemes/Example-macOS.xcscheme +78 -0
  69. package/Example/macos/Example.xcworkspace/contents.xcworkspacedata +10 -0
  70. package/Example/macos/Podfile +26 -0
  71. package/Example/macos/Podfile.lock +1233 -0
  72. package/Example/metro.config.js +47 -0
  73. package/Example/package.json +53 -0
  74. package/Example/src/App.tsx +130 -0
  75. package/Example/src/assets/google.png +0 -0
  76. package/Example/src/assets/ruby.svg +12 -0
  77. package/Example/src/components/Description.tsx +16 -0
  78. package/Example/src/styles.ts +21 -0
  79. package/Example/tsconfig.json +9 -0
  80. package/Example/webpack.config.js +60 -0
  81. package/Example/yarn.lock +8957 -0
  82. package/README.md +0 -6
  83. package/index.d.ts +10 -2
  84. package/package.json +11 -2
  85. package/src/LogoSVG/index.js +22 -0
  86. package/src/LogoSVG/index.native.js +24 -0
  87. package/src/index.js +158 -125
  88. package/src/utils.js +7 -0
  89. package/.github/workflows/npmpublish.yml +0 -31
  90. package/.huskyrc +0 -5
  91. package/.lintstagedrc +0 -3
@@ -0,0 +1,698 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* ExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ExampleTests.m */; };
11
+ 0C80B921A6F3F58F76C31292 /* libPods-Example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-Example.a */; };
12
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
13
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15
+ 7699B88040F8A987B510C191 /* libPods-Example-ExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-Example-ExampleTests.a */; };
16
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
17
+ /* End PBXBuildFile section */
18
+
19
+ /* Begin PBXContainerItemProxy section */
20
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
21
+ isa = PBXContainerItemProxy;
22
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
23
+ proxyType = 1;
24
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
25
+ remoteInfo = Example;
26
+ };
27
+ /* End PBXContainerItemProxy section */
28
+
29
+ /* Begin PBXFileReference section */
30
+ 00E356EE1AD99517003FC87E /* ExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
31
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
32
+ 00E356F21AD99517003FC87E /* ExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExampleTests.m; sourceTree = "<group>"; };
33
+ 13B07F961A680F5B00A75B9A /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
34
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Example/AppDelegate.h; sourceTree = "<group>"; };
35
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = Example/AppDelegate.mm; sourceTree = "<group>"; };
36
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Example/Images.xcassets; sourceTree = "<group>"; };
37
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Example/Info.plist; sourceTree = "<group>"; };
38
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Example/main.m; sourceTree = "<group>"; };
39
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-Example-ExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-ExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
40
+ 3B4392A12AC88292D35C810B /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = "<group>"; };
41
+ 5709B34CF0A7D63546082F79 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = "<group>"; };
42
+ 5B7EB9410499542E8C5724F5 /* Pods-Example-ExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-ExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests.debug.xcconfig"; sourceTree = "<group>"; };
43
+ 5DCACB8F33CDC322A6C60F78 /* libPods-Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
44
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = Example/LaunchScreen.storyboard; sourceTree = "<group>"; };
45
+ 89C6BE57DB24E9ADA2F236DE /* Pods-Example-ExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-ExampleTests.release.xcconfig"; path = "Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests.release.xcconfig"; sourceTree = "<group>"; };
46
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
47
+ /* End PBXFileReference section */
48
+
49
+ /* Begin PBXFrameworksBuildPhase section */
50
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
51
+ isa = PBXFrameworksBuildPhase;
52
+ buildActionMask = 2147483647;
53
+ files = (
54
+ 7699B88040F8A987B510C191 /* libPods-Example-ExampleTests.a in Frameworks */,
55
+ );
56
+ runOnlyForDeploymentPostprocessing = 0;
57
+ };
58
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
59
+ isa = PBXFrameworksBuildPhase;
60
+ buildActionMask = 2147483647;
61
+ files = (
62
+ 0C80B921A6F3F58F76C31292 /* libPods-Example.a in Frameworks */,
63
+ );
64
+ runOnlyForDeploymentPostprocessing = 0;
65
+ };
66
+ /* End PBXFrameworksBuildPhase section */
67
+
68
+ /* Begin PBXGroup section */
69
+ 00E356EF1AD99517003FC87E /* ExampleTests */ = {
70
+ isa = PBXGroup;
71
+ children = (
72
+ 00E356F21AD99517003FC87E /* ExampleTests.m */,
73
+ 00E356F01AD99517003FC87E /* Supporting Files */,
74
+ );
75
+ path = ExampleTests;
76
+ sourceTree = "<group>";
77
+ };
78
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
79
+ isa = PBXGroup;
80
+ children = (
81
+ 00E356F11AD99517003FC87E /* Info.plist */,
82
+ );
83
+ name = "Supporting Files";
84
+ sourceTree = "<group>";
85
+ };
86
+ 13B07FAE1A68108700A75B9A /* Example */ = {
87
+ isa = PBXGroup;
88
+ children = (
89
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
90
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
91
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
92
+ 13B07FB61A68108700A75B9A /* Info.plist */,
93
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
94
+ 13B07FB71A68108700A75B9A /* main.m */,
95
+ );
96
+ name = Example;
97
+ sourceTree = "<group>";
98
+ };
99
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
100
+ isa = PBXGroup;
101
+ children = (
102
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
103
+ 5DCACB8F33CDC322A6C60F78 /* libPods-Example.a */,
104
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-Example-ExampleTests.a */,
105
+ );
106
+ name = Frameworks;
107
+ sourceTree = "<group>";
108
+ };
109
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
110
+ isa = PBXGroup;
111
+ children = (
112
+ );
113
+ name = Libraries;
114
+ sourceTree = "<group>";
115
+ };
116
+ 83CBB9F61A601CBA00E9B192 = {
117
+ isa = PBXGroup;
118
+ children = (
119
+ 13B07FAE1A68108700A75B9A /* Example */,
120
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
121
+ 00E356EF1AD99517003FC87E /* ExampleTests */,
122
+ 83CBBA001A601CBA00E9B192 /* Products */,
123
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
124
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
125
+ );
126
+ indentWidth = 2;
127
+ sourceTree = "<group>";
128
+ tabWidth = 2;
129
+ usesTabs = 0;
130
+ };
131
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
132
+ isa = PBXGroup;
133
+ children = (
134
+ 13B07F961A680F5B00A75B9A /* Example.app */,
135
+ 00E356EE1AD99517003FC87E /* ExampleTests.xctest */,
136
+ );
137
+ name = Products;
138
+ sourceTree = "<group>";
139
+ };
140
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
141
+ isa = PBXGroup;
142
+ children = (
143
+ 3B4392A12AC88292D35C810B /* Pods-Example.debug.xcconfig */,
144
+ 5709B34CF0A7D63546082F79 /* Pods-Example.release.xcconfig */,
145
+ 5B7EB9410499542E8C5724F5 /* Pods-Example-ExampleTests.debug.xcconfig */,
146
+ 89C6BE57DB24E9ADA2F236DE /* Pods-Example-ExampleTests.release.xcconfig */,
147
+ );
148
+ path = Pods;
149
+ sourceTree = "<group>";
150
+ };
151
+ /* End PBXGroup section */
152
+
153
+ /* Begin PBXNativeTarget section */
154
+ 00E356ED1AD99517003FC87E /* ExampleTests */ = {
155
+ isa = PBXNativeTarget;
156
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleTests" */;
157
+ buildPhases = (
158
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
159
+ 00E356EA1AD99517003FC87E /* Sources */,
160
+ 00E356EB1AD99517003FC87E /* Frameworks */,
161
+ 00E356EC1AD99517003FC87E /* Resources */,
162
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
163
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
164
+ );
165
+ buildRules = (
166
+ );
167
+ dependencies = (
168
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
169
+ );
170
+ name = ExampleTests;
171
+ productName = ExampleTests;
172
+ productReference = 00E356EE1AD99517003FC87E /* ExampleTests.xctest */;
173
+ productType = "com.apple.product-type.bundle.unit-test";
174
+ };
175
+ 13B07F861A680F5B00A75B9A /* Example */ = {
176
+ isa = PBXNativeTarget;
177
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */;
178
+ buildPhases = (
179
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
180
+ 13B07F871A680F5B00A75B9A /* Sources */,
181
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
182
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
183
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
184
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
185
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
186
+ );
187
+ buildRules = (
188
+ );
189
+ dependencies = (
190
+ );
191
+ name = Example;
192
+ productName = Example;
193
+ productReference = 13B07F961A680F5B00A75B9A /* Example.app */;
194
+ productType = "com.apple.product-type.application";
195
+ };
196
+ /* End PBXNativeTarget section */
197
+
198
+ /* Begin PBXProject section */
199
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
200
+ isa = PBXProject;
201
+ attributes = {
202
+ LastUpgradeCheck = 1210;
203
+ TargetAttributes = {
204
+ 00E356ED1AD99517003FC87E = {
205
+ CreatedOnToolsVersion = 6.2;
206
+ TestTargetID = 13B07F861A680F5B00A75B9A;
207
+ };
208
+ 13B07F861A680F5B00A75B9A = {
209
+ LastSwiftMigration = 1120;
210
+ };
211
+ };
212
+ };
213
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */;
214
+ compatibilityVersion = "Xcode 12.0";
215
+ developmentRegion = en;
216
+ hasScannedForEncodings = 0;
217
+ knownRegions = (
218
+ en,
219
+ Base,
220
+ );
221
+ mainGroup = 83CBB9F61A601CBA00E9B192;
222
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
223
+ projectDirPath = "";
224
+ projectRoot = "";
225
+ targets = (
226
+ 13B07F861A680F5B00A75B9A /* Example */,
227
+ 00E356ED1AD99517003FC87E /* ExampleTests */,
228
+ );
229
+ };
230
+ /* End PBXProject section */
231
+
232
+ /* Begin PBXResourcesBuildPhase section */
233
+ 00E356EC1AD99517003FC87E /* Resources */ = {
234
+ isa = PBXResourcesBuildPhase;
235
+ buildActionMask = 2147483647;
236
+ files = (
237
+ );
238
+ runOnlyForDeploymentPostprocessing = 0;
239
+ };
240
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
241
+ isa = PBXResourcesBuildPhase;
242
+ buildActionMask = 2147483647;
243
+ files = (
244
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
245
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
246
+ );
247
+ runOnlyForDeploymentPostprocessing = 0;
248
+ };
249
+ /* End PBXResourcesBuildPhase section */
250
+
251
+ /* Begin PBXShellScriptBuildPhase section */
252
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
253
+ isa = PBXShellScriptBuildPhase;
254
+ buildActionMask = 2147483647;
255
+ files = (
256
+ );
257
+ inputPaths = (
258
+ "$(SRCROOT)/.xcode.env.local",
259
+ "$(SRCROOT)/.xcode.env",
260
+ );
261
+ name = "Bundle React Native code and images";
262
+ outputPaths = (
263
+ );
264
+ runOnlyForDeploymentPostprocessing = 0;
265
+ shellPath = /bin/sh;
266
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../node_modules/react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
267
+ };
268
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
269
+ isa = PBXShellScriptBuildPhase;
270
+ buildActionMask = 2147483647;
271
+ files = (
272
+ );
273
+ inputFileListPaths = (
274
+ "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
275
+ );
276
+ name = "[CP] Embed Pods Frameworks";
277
+ outputFileListPaths = (
278
+ "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
279
+ );
280
+ runOnlyForDeploymentPostprocessing = 0;
281
+ shellPath = /bin/sh;
282
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks.sh\"\n";
283
+ showEnvVarsInLog = 0;
284
+ };
285
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
286
+ isa = PBXShellScriptBuildPhase;
287
+ buildActionMask = 2147483647;
288
+ files = (
289
+ );
290
+ inputFileListPaths = (
291
+ );
292
+ inputPaths = (
293
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
294
+ "${PODS_ROOT}/Manifest.lock",
295
+ );
296
+ name = "[CP] Check Pods Manifest.lock";
297
+ outputFileListPaths = (
298
+ );
299
+ outputPaths = (
300
+ "$(DERIVED_FILE_DIR)/Pods-Example-ExampleTests-checkManifestLockResult.txt",
301
+ );
302
+ runOnlyForDeploymentPostprocessing = 0;
303
+ shellPath = /bin/sh;
304
+ 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";
305
+ showEnvVarsInLog = 0;
306
+ };
307
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
308
+ isa = PBXShellScriptBuildPhase;
309
+ buildActionMask = 2147483647;
310
+ files = (
311
+ );
312
+ inputFileListPaths = (
313
+ );
314
+ inputPaths = (
315
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
316
+ "${PODS_ROOT}/Manifest.lock",
317
+ );
318
+ name = "[CP] Check Pods Manifest.lock";
319
+ outputFileListPaths = (
320
+ );
321
+ outputPaths = (
322
+ "$(DERIVED_FILE_DIR)/Pods-Example-checkManifestLockResult.txt",
323
+ );
324
+ runOnlyForDeploymentPostprocessing = 0;
325
+ shellPath = /bin/sh;
326
+ 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";
327
+ showEnvVarsInLog = 0;
328
+ };
329
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
330
+ isa = PBXShellScriptBuildPhase;
331
+ buildActionMask = 2147483647;
332
+ files = (
333
+ );
334
+ inputFileListPaths = (
335
+ "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
336
+ );
337
+ name = "[CP] Embed Pods Frameworks";
338
+ outputFileListPaths = (
339
+ "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
340
+ );
341
+ runOnlyForDeploymentPostprocessing = 0;
342
+ shellPath = /bin/sh;
343
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-frameworks.sh\"\n";
344
+ showEnvVarsInLog = 0;
345
+ };
346
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
347
+ isa = PBXShellScriptBuildPhase;
348
+ buildActionMask = 2147483647;
349
+ files = (
350
+ );
351
+ inputFileListPaths = (
352
+ "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-resources-${CONFIGURATION}-input-files.xcfilelist",
353
+ );
354
+ name = "[CP] Copy Pods Resources";
355
+ outputFileListPaths = (
356
+ "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-resources-${CONFIGURATION}-output-files.xcfilelist",
357
+ );
358
+ runOnlyForDeploymentPostprocessing = 0;
359
+ shellPath = /bin/sh;
360
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-resources.sh\"\n";
361
+ showEnvVarsInLog = 0;
362
+ };
363
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
364
+ isa = PBXShellScriptBuildPhase;
365
+ buildActionMask = 2147483647;
366
+ files = (
367
+ );
368
+ inputFileListPaths = (
369
+ "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
370
+ );
371
+ name = "[CP] Copy Pods Resources";
372
+ outputFileListPaths = (
373
+ "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
374
+ );
375
+ runOnlyForDeploymentPostprocessing = 0;
376
+ shellPath = /bin/sh;
377
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-resources.sh\"\n";
378
+ showEnvVarsInLog = 0;
379
+ };
380
+ /* End PBXShellScriptBuildPhase section */
381
+
382
+ /* Begin PBXSourcesBuildPhase section */
383
+ 00E356EA1AD99517003FC87E /* Sources */ = {
384
+ isa = PBXSourcesBuildPhase;
385
+ buildActionMask = 2147483647;
386
+ files = (
387
+ 00E356F31AD99517003FC87E /* ExampleTests.m in Sources */,
388
+ );
389
+ runOnlyForDeploymentPostprocessing = 0;
390
+ };
391
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
392
+ isa = PBXSourcesBuildPhase;
393
+ buildActionMask = 2147483647;
394
+ files = (
395
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
396
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
397
+ );
398
+ runOnlyForDeploymentPostprocessing = 0;
399
+ };
400
+ /* End PBXSourcesBuildPhase section */
401
+
402
+ /* Begin PBXTargetDependency section */
403
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
404
+ isa = PBXTargetDependency;
405
+ target = 13B07F861A680F5B00A75B9A /* Example */;
406
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
407
+ };
408
+ /* End PBXTargetDependency section */
409
+
410
+ /* Begin XCBuildConfiguration section */
411
+ 00E356F61AD99517003FC87E /* Debug */ = {
412
+ isa = XCBuildConfiguration;
413
+ baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-Example-ExampleTests.debug.xcconfig */;
414
+ buildSettings = {
415
+ BUNDLE_LOADER = "$(TEST_HOST)";
416
+ GCC_PREPROCESSOR_DEFINITIONS = (
417
+ "DEBUG=1",
418
+ "$(inherited)",
419
+ );
420
+ INFOPLIST_FILE = ExampleTests/Info.plist;
421
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
422
+ LD_RUNPATH_SEARCH_PATHS = (
423
+ "$(inherited)",
424
+ "@executable_path/Frameworks",
425
+ "@loader_path/Frameworks",
426
+ );
427
+ OTHER_LDFLAGS = (
428
+ "-ObjC",
429
+ "-lc++",
430
+ "$(inherited)",
431
+ );
432
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
433
+ PRODUCT_NAME = "$(TARGET_NAME)";
434
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example.app/Example";
435
+ };
436
+ name = Debug;
437
+ };
438
+ 00E356F71AD99517003FC87E /* Release */ = {
439
+ isa = XCBuildConfiguration;
440
+ baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-Example-ExampleTests.release.xcconfig */;
441
+ buildSettings = {
442
+ BUNDLE_LOADER = "$(TEST_HOST)";
443
+ COPY_PHASE_STRIP = NO;
444
+ INFOPLIST_FILE = ExampleTests/Info.plist;
445
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
446
+ LD_RUNPATH_SEARCH_PATHS = (
447
+ "$(inherited)",
448
+ "@executable_path/Frameworks",
449
+ "@loader_path/Frameworks",
450
+ );
451
+ OTHER_LDFLAGS = (
452
+ "-ObjC",
453
+ "-lc++",
454
+ "$(inherited)",
455
+ );
456
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
457
+ PRODUCT_NAME = "$(TARGET_NAME)";
458
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example.app/Example";
459
+ };
460
+ name = Release;
461
+ };
462
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
463
+ isa = XCBuildConfiguration;
464
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-Example.debug.xcconfig */;
465
+ buildSettings = {
466
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
467
+ CLANG_ENABLE_MODULES = YES;
468
+ CURRENT_PROJECT_VERSION = 1;
469
+ ENABLE_BITCODE = NO;
470
+ INFOPLIST_FILE = Example/Info.plist;
471
+ LD_RUNPATH_SEARCH_PATHS = (
472
+ "$(inherited)",
473
+ "@executable_path/Frameworks",
474
+ );
475
+ MARKETING_VERSION = 1.0;
476
+ OTHER_LDFLAGS = (
477
+ "$(inherited)",
478
+ "-ObjC",
479
+ "-lc++",
480
+ );
481
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
482
+ PRODUCT_NAME = Example;
483
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
484
+ SWIFT_VERSION = 5.0;
485
+ VERSIONING_SYSTEM = "apple-generic";
486
+ };
487
+ name = Debug;
488
+ };
489
+ 13B07F951A680F5B00A75B9A /* Release */ = {
490
+ isa = XCBuildConfiguration;
491
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-Example.release.xcconfig */;
492
+ buildSettings = {
493
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
494
+ CLANG_ENABLE_MODULES = YES;
495
+ CURRENT_PROJECT_VERSION = 1;
496
+ INFOPLIST_FILE = Example/Info.plist;
497
+ LD_RUNPATH_SEARCH_PATHS = (
498
+ "$(inherited)",
499
+ "@executable_path/Frameworks",
500
+ );
501
+ MARKETING_VERSION = 1.0;
502
+ OTHER_LDFLAGS = (
503
+ "$(inherited)",
504
+ "-ObjC",
505
+ "-lc++",
506
+ );
507
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
508
+ PRODUCT_NAME = Example;
509
+ SWIFT_VERSION = 5.0;
510
+ VERSIONING_SYSTEM = "apple-generic";
511
+ };
512
+ name = Release;
513
+ };
514
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
515
+ isa = XCBuildConfiguration;
516
+ buildSettings = {
517
+ ALWAYS_SEARCH_USER_PATHS = NO;
518
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
519
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
520
+ CLANG_CXX_LIBRARY = "libc++";
521
+ CLANG_ENABLE_MODULES = YES;
522
+ CLANG_ENABLE_OBJC_ARC = YES;
523
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
524
+ CLANG_WARN_BOOL_CONVERSION = YES;
525
+ CLANG_WARN_COMMA = YES;
526
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
527
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
528
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
529
+ CLANG_WARN_EMPTY_BODY = YES;
530
+ CLANG_WARN_ENUM_CONVERSION = YES;
531
+ CLANG_WARN_INFINITE_RECURSION = YES;
532
+ CLANG_WARN_INT_CONVERSION = YES;
533
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
534
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
535
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
536
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
537
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
538
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
539
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
540
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
541
+ CLANG_WARN_UNREACHABLE_CODE = YES;
542
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
543
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
544
+ COPY_PHASE_STRIP = NO;
545
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
546
+ ENABLE_TESTABILITY = YES;
547
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
548
+ GCC_C_LANGUAGE_STANDARD = gnu99;
549
+ GCC_DYNAMIC_NO_PIC = NO;
550
+ GCC_NO_COMMON_BLOCKS = YES;
551
+ GCC_OPTIMIZATION_LEVEL = 0;
552
+ GCC_PREPROCESSOR_DEFINITIONS = (
553
+ "DEBUG=1",
554
+ "$(inherited)",
555
+ );
556
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
557
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
558
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
559
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
560
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
561
+ GCC_WARN_UNUSED_FUNCTION = YES;
562
+ GCC_WARN_UNUSED_VARIABLE = YES;
563
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
564
+ LD_RUNPATH_SEARCH_PATHS = (
565
+ /usr/lib/swift,
566
+ "$(inherited)",
567
+ );
568
+ LIBRARY_SEARCH_PATHS = (
569
+ "\"$(SDKROOT)/usr/lib/swift\"",
570
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
571
+ "\"$(inherited)\"",
572
+ );
573
+ MTL_ENABLE_DEBUG_INFO = YES;
574
+ ONLY_ACTIVE_ARCH = YES;
575
+ OTHER_CFLAGS = "$(inherited)";
576
+ OTHER_CPLUSPLUSFLAGS = (
577
+ "$(OTHER_CFLAGS)",
578
+ "-DFOLLY_NO_CONFIG",
579
+ "-DFOLLY_MOBILE=1",
580
+ "-DFOLLY_USE_LIBCPP=1",
581
+ "-DFOLLY_CFG_NO_COROUTINES=1",
582
+ );
583
+ OTHER_LDFLAGS = (
584
+ "$(inherited)",
585
+ " ",
586
+ );
587
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
588
+ SDKROOT = iphoneos;
589
+ USE_HERMES = true;
590
+ };
591
+ name = Debug;
592
+ };
593
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
594
+ isa = XCBuildConfiguration;
595
+ buildSettings = {
596
+ ALWAYS_SEARCH_USER_PATHS = NO;
597
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
598
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
599
+ CLANG_CXX_LIBRARY = "libc++";
600
+ CLANG_ENABLE_MODULES = YES;
601
+ CLANG_ENABLE_OBJC_ARC = YES;
602
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
603
+ CLANG_WARN_BOOL_CONVERSION = YES;
604
+ CLANG_WARN_COMMA = YES;
605
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
606
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
607
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
608
+ CLANG_WARN_EMPTY_BODY = YES;
609
+ CLANG_WARN_ENUM_CONVERSION = YES;
610
+ CLANG_WARN_INFINITE_RECURSION = YES;
611
+ CLANG_WARN_INT_CONVERSION = YES;
612
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
613
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
614
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
615
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
616
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
617
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
618
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
619
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
620
+ CLANG_WARN_UNREACHABLE_CODE = YES;
621
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
622
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
623
+ COPY_PHASE_STRIP = YES;
624
+ ENABLE_NS_ASSERTIONS = NO;
625
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
626
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
627
+ GCC_C_LANGUAGE_STANDARD = gnu99;
628
+ GCC_NO_COMMON_BLOCKS = YES;
629
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
630
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
631
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
632
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
633
+ GCC_WARN_UNUSED_FUNCTION = YES;
634
+ GCC_WARN_UNUSED_VARIABLE = YES;
635
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
636
+ LD_RUNPATH_SEARCH_PATHS = (
637
+ /usr/lib/swift,
638
+ "$(inherited)",
639
+ );
640
+ LIBRARY_SEARCH_PATHS = (
641
+ "\"$(SDKROOT)/usr/lib/swift\"",
642
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
643
+ "\"$(inherited)\"",
644
+ );
645
+ MTL_ENABLE_DEBUG_INFO = NO;
646
+ OTHER_CFLAGS = "$(inherited)";
647
+ OTHER_CPLUSPLUSFLAGS = (
648
+ "$(OTHER_CFLAGS)",
649
+ "-DFOLLY_NO_CONFIG",
650
+ "-DFOLLY_MOBILE=1",
651
+ "-DFOLLY_USE_LIBCPP=1",
652
+ "-DFOLLY_CFG_NO_COROUTINES=1",
653
+ );
654
+ OTHER_LDFLAGS = (
655
+ "$(inherited)",
656
+ " ",
657
+ );
658
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
659
+ SDKROOT = iphoneos;
660
+ USE_HERMES = true;
661
+ VALIDATE_PRODUCT = YES;
662
+ };
663
+ name = Release;
664
+ };
665
+ /* End XCBuildConfiguration section */
666
+
667
+ /* Begin XCConfigurationList section */
668
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleTests" */ = {
669
+ isa = XCConfigurationList;
670
+ buildConfigurations = (
671
+ 00E356F61AD99517003FC87E /* Debug */,
672
+ 00E356F71AD99517003FC87E /* Release */,
673
+ );
674
+ defaultConfigurationIsVisible = 0;
675
+ defaultConfigurationName = Release;
676
+ };
677
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */ = {
678
+ isa = XCConfigurationList;
679
+ buildConfigurations = (
680
+ 13B07F941A680F5B00A75B9A /* Debug */,
681
+ 13B07F951A680F5B00A75B9A /* Release */,
682
+ );
683
+ defaultConfigurationIsVisible = 0;
684
+ defaultConfigurationName = Release;
685
+ };
686
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */ = {
687
+ isa = XCConfigurationList;
688
+ buildConfigurations = (
689
+ 83CBBA201A601CBA00E9B192 /* Debug */,
690
+ 83CBBA211A601CBA00E9B192 /* Release */,
691
+ );
692
+ defaultConfigurationIsVisible = 0;
693
+ defaultConfigurationName = Release;
694
+ };
695
+ /* End XCConfigurationList section */
696
+ };
697
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
698
+ }