@computools/react-native-template-controller 0.0.1 → 0.0.3

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