@janiscommerce/ui-native 1.0.3 → 1.1.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.
Files changed (76) hide show
  1. package/README.md +35 -0
  2. package/dist/android/app/_BUCK +55 -0
  3. package/dist/android/app/build.gradle +230 -0
  4. package/dist/android/app/build_defs.bzl +19 -0
  5. package/dist/android/app/debug.keystore +0 -0
  6. package/dist/android/app/proguard-rules.pro +10 -0
  7. package/dist/android/app/src/debug/AndroidManifest.xml +13 -0
  8. package/dist/android/app/src/debug/java/com/myapp/ReactNativeFlipper.java +72 -0
  9. package/dist/android/app/src/main/AndroidManifest.xml +25 -0
  10. package/dist/android/app/src/main/assets/fonts/janis-font-icon.ttf +0 -0
  11. package/dist/android/app/src/main/java/com/myapp/MainActivity.java +15 -0
  12. package/dist/android/app/src/main/java/com/myapp/MainApplication.java +80 -0
  13. package/dist/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  14. package/dist/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  15. package/dist/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  16. package/dist/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  17. package/dist/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  18. package/dist/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  19. package/dist/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  20. package/dist/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  21. package/dist/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  22. package/dist/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  23. package/dist/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  24. package/dist/android/app/src/main/res/values/strings.xml +3 -0
  25. package/dist/android/app/src/main/res/values/styles.xml +9 -0
  26. package/dist/android/build.gradle +42 -0
  27. package/dist/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  28. package/dist/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  29. package/dist/android/gradle.properties +28 -0
  30. package/dist/android/gradlew +185 -0
  31. package/dist/android/gradlew.bat +89 -0
  32. package/dist/android/settings.gradle +6 -0
  33. package/dist/components/Carousel/index.d.ts +19 -0
  34. package/dist/components/Carousel/index.js +35 -0
  35. package/dist/components/Carousel/utils/index.d.ts +13 -0
  36. package/dist/components/Carousel/utils/index.js +102 -0
  37. package/dist/components/CheckBox/index.d.ts +1 -0
  38. package/dist/components/Icon/assets/fonts/selection.json +1 -0
  39. package/dist/components/Icon/index.d.ts +8 -0
  40. package/dist/components/Icon/index.js +12 -0
  41. package/dist/components/Loading/LoadingSvg/index.d.ts +8 -0
  42. package/dist/components/Loading/LoadingSvg/index.js +13 -0
  43. package/dist/components/Loading/index.d.ts +2 -2
  44. package/dist/components/Loading/index.js +5 -8
  45. package/dist/components/RadioButton/index.d.ts +22 -0
  46. package/dist/components/RadioButton/index.js +48 -0
  47. package/dist/components/Select/Components/Dropdown/index.d.ts +13 -0
  48. package/dist/components/Select/Components/Dropdown/index.js +73 -0
  49. package/dist/components/Select/Components/Icons/Chevron/index.d.ts +18 -0
  50. package/dist/components/Select/Components/Icons/Chevron/index.js +19 -0
  51. package/dist/components/Select/Components/Icons/Delete/index.d.ts +18 -0
  52. package/dist/components/Select/Components/Icons/Delete/index.js +19 -0
  53. package/dist/components/Select/index.d.ts +41 -0
  54. package/dist/components/Select/index.js +149 -0
  55. package/dist/components/Select/utils/index.d.ts +2 -0
  56. package/dist/components/Select/utils/index.js +8 -0
  57. package/dist/components/SwipeUp/childComponents/index.d.ts +11 -0
  58. package/dist/components/SwipeUp/childComponents/index.js +22 -0
  59. package/dist/components/SwipeUp/index.d.ts +10 -0
  60. package/dist/components/SwipeUp/index.js +11 -0
  61. package/dist/index.d.ts +7 -1
  62. package/dist/index.js +7 -1
  63. package/dist/ios/MyApp/AppDelegate.h +8 -0
  64. package/dist/ios/MyApp/AppDelegate.m +58 -0
  65. package/dist/ios/MyApp/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
  66. package/dist/ios/MyApp/Images.xcassets/Contents.json +6 -0
  67. package/dist/ios/MyApp/Info.plist +55 -0
  68. package/dist/ios/MyApp/LaunchScreen.storyboard +58 -0
  69. package/dist/ios/MyApp/main.m +9 -0
  70. package/dist/ios/MyApp.xcodeproj/project.pbxproj +791 -0
  71. package/dist/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp-tvOS.xcscheme +88 -0
  72. package/dist/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp.xcscheme +88 -0
  73. package/dist/ios/MyAppTests/Info.plist +24 -0
  74. package/dist/ios/MyAppTests/MyAppTests.m +65 -0
  75. package/dist/ios/Podfile +33 -0
  76. package/package.json +11 -5
@@ -0,0 +1,791 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* MyAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* MyAppTests.m */; };
11
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
12
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14
+ 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
15
+ 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
16
+ 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
17
+ 2DCD954D1E0B4F2C00145EB5 /* MyAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* MyAppTests.m */; };
18
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
19
+ /* End PBXBuildFile section */
20
+
21
+ /* Begin PBXContainerItemProxy section */
22
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
23
+ isa = PBXContainerItemProxy;
24
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
25
+ proxyType = 1;
26
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
27
+ remoteInfo = ui-native;
28
+ };
29
+ 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
30
+ isa = PBXContainerItemProxy;
31
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
32
+ proxyType = 1;
33
+ remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
34
+ remoteInfo = "ui-native-tvOS";
35
+ };
36
+ /* End PBXContainerItemProxy section */
37
+
38
+ /* Begin PBXFileReference section */
39
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
40
+ 00E356EE1AD99517003FC87E /* MyAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MyAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
41
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
42
+ 00E356F21AD99517003FC87E /* MyAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyAppTests.m; sourceTree = "<group>"; };
43
+ 13B07F961A680F5B00A75B9A /* ui-native.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ui-native.app; sourceTree = BUILT_PRODUCTS_DIR; };
44
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ui-native/AppDelegate.h; sourceTree = "<group>"; };
45
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ui-native/AppDelegate.m; sourceTree = "<group>"; };
46
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ui-native/Images.xcassets; sourceTree = "<group>"; };
47
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ui-native/Info.plist; sourceTree = "<group>"; };
48
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ui-native/main.m; sourceTree = "<group>"; };
49
+ 2D02E47B1E0B4A5D006451C7 /* ui-native-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ui-native-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
50
+ 2D02E4901E0B4A5D006451C7 /* ui-native-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ui-native-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
51
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ui-native/LaunchScreen.storyboard; sourceTree = "<group>"; };
52
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
53
+ ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
54
+ /* End PBXFileReference section */
55
+
56
+ /* Begin PBXFrameworksBuildPhase section */
57
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
58
+ isa = PBXFrameworksBuildPhase;
59
+ buildActionMask = 2147483647;
60
+ files = (
61
+ );
62
+ runOnlyForDeploymentPostprocessing = 0;
63
+ };
64
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
65
+ isa = PBXFrameworksBuildPhase;
66
+ buildActionMask = 2147483647;
67
+ files = (
68
+ );
69
+ runOnlyForDeploymentPostprocessing = 0;
70
+ };
71
+ 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
72
+ isa = PBXFrameworksBuildPhase;
73
+ buildActionMask = 2147483647;
74
+ files = (
75
+ );
76
+ runOnlyForDeploymentPostprocessing = 0;
77
+ };
78
+ 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
79
+ isa = PBXFrameworksBuildPhase;
80
+ buildActionMask = 2147483647;
81
+ files = (
82
+ );
83
+ runOnlyForDeploymentPostprocessing = 0;
84
+ };
85
+ /* End PBXFrameworksBuildPhase section */
86
+
87
+ /* Begin PBXGroup section */
88
+ 00E356EF1AD99517003FC87E /* MyAppTests */ = {
89
+ isa = PBXGroup;
90
+ children = (
91
+ 00E356F21AD99517003FC87E /* MyAppTests.m */,
92
+ 00E356F01AD99517003FC87E /* Supporting Files */,
93
+ );
94
+ path = MyAppTests;
95
+ sourceTree = "<group>";
96
+ };
97
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
98
+ isa = PBXGroup;
99
+ children = (
100
+ 00E356F11AD99517003FC87E /* Info.plist */,
101
+ );
102
+ name = "Supporting Files";
103
+ sourceTree = "<group>";
104
+ };
105
+ 13B07FAE1A68108700A75B9A /* ui-native */ = {
106
+ isa = PBXGroup;
107
+ children = (
108
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
109
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
110
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */,
111
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
112
+ 13B07FB61A68108700A75B9A /* Info.plist */,
113
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
114
+ 13B07FB71A68108700A75B9A /* main.m */,
115
+ );
116
+ name = ui-native;
117
+ sourceTree = "<group>";
118
+ };
119
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
120
+ isa = PBXGroup;
121
+ children = (
122
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
123
+ ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
124
+ );
125
+ name = Frameworks;
126
+ sourceTree = "<group>";
127
+ };
128
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
129
+ isa = PBXGroup;
130
+ children = (
131
+ );
132
+ name = Libraries;
133
+ sourceTree = "<group>";
134
+ };
135
+ 83CBB9F61A601CBA00E9B192 = {
136
+ isa = PBXGroup;
137
+ children = (
138
+ 13B07FAE1A68108700A75B9A /* ui-native */,
139
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
140
+ 00E356EF1AD99517003FC87E /* MyAppTests */,
141
+ 83CBBA001A601CBA00E9B192 /* Products */,
142
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
143
+ );
144
+ indentWidth = 2;
145
+ sourceTree = "<group>";
146
+ tabWidth = 2;
147
+ usesTabs = 0;
148
+ };
149
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
150
+ isa = PBXGroup;
151
+ children = (
152
+ 13B07F961A680F5B00A75B9A /* ui-native.app */,
153
+ 00E356EE1AD99517003FC87E /* MyAppTests.xctest */,
154
+ 2D02E47B1E0B4A5D006451C7 /* ui-native-tvOS.app */,
155
+ 2D02E4901E0B4A5D006451C7 /* ui-native-tvOSTests.xctest */,
156
+ );
157
+ name = Products;
158
+ sourceTree = "<group>";
159
+ };
160
+ /* End PBXGroup section */
161
+
162
+ /* Begin PBXNativeTarget section */
163
+ 00E356ED1AD99517003FC87E /* MyAppTests */ = {
164
+ isa = PBXNativeTarget;
165
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MyAppTests" */;
166
+ buildPhases = (
167
+ 00E356EA1AD99517003FC87E /* Sources */,
168
+ 00E356EB1AD99517003FC87E /* Frameworks */,
169
+ 00E356EC1AD99517003FC87E /* Resources */,
170
+ );
171
+ buildRules = (
172
+ );
173
+ dependencies = (
174
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
175
+ );
176
+ name = MyAppTests;
177
+ productName = MyAppTests;
178
+ productReference = 00E356EE1AD99517003FC87E /* MyAppTests.xctest */;
179
+ productType = "com.apple.product-type.bundle.unit-test";
180
+ };
181
+ 13B07F861A680F5B00A75B9A /* ui-native */ = {
182
+ isa = PBXNativeTarget;
183
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ui-native" */;
184
+ buildPhases = (
185
+ FD10A7F022414F080027D42C /* Start Packager */,
186
+ 13B07F871A680F5B00A75B9A /* Sources */,
187
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
188
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
189
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
190
+ );
191
+ buildRules = (
192
+ );
193
+ dependencies = (
194
+ );
195
+ name = ui-native;
196
+ productName = ui-native;
197
+ productReference = 13B07F961A680F5B00A75B9A /* ui-native.app */;
198
+ productType = "com.apple.product-type.application";
199
+ };
200
+ 2D02E47A1E0B4A5D006451C7 /* ui-native-tvOS */ = {
201
+ isa = PBXNativeTarget;
202
+ buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ui-native-tvOS" */;
203
+ buildPhases = (
204
+ FD10A7F122414F3F0027D42C /* Start Packager */,
205
+ 2D02E4771E0B4A5D006451C7 /* Sources */,
206
+ 2D02E4781E0B4A5D006451C7 /* Frameworks */,
207
+ 2D02E4791E0B4A5D006451C7 /* Resources */,
208
+ 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
209
+ );
210
+ buildRules = (
211
+ );
212
+ dependencies = (
213
+ );
214
+ name = "ui-native-tvOS";
215
+ productName = "ui-native-tvOS";
216
+ productReference = 2D02E47B1E0B4A5D006451C7 /* ui-native-tvOS.app */;
217
+ productType = "com.apple.product-type.application";
218
+ };
219
+ 2D02E48F1E0B4A5D006451C7 /* ui-native-tvOSTests */ = {
220
+ isa = PBXNativeTarget;
221
+ buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ui-native-tvOSTests" */;
222
+ buildPhases = (
223
+ 2D02E48C1E0B4A5D006451C7 /* Sources */,
224
+ 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
225
+ 2D02E48E1E0B4A5D006451C7 /* Resources */,
226
+ );
227
+ buildRules = (
228
+ );
229
+ dependencies = (
230
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
231
+ );
232
+ name = "ui-native-tvOSTests";
233
+ productName = "ui-native-tvOSTests";
234
+ productReference = 2D02E4901E0B4A5D006451C7 /* ui-native-tvOSTests.xctest */;
235
+ productType = "com.apple.product-type.bundle.unit-test";
236
+ };
237
+ /* End PBXNativeTarget section */
238
+
239
+ /* Begin PBXProject section */
240
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
241
+ isa = PBXProject;
242
+ attributes = {
243
+ LastUpgradeCheck = 1130;
244
+ TargetAttributes = {
245
+ 00E356ED1AD99517003FC87E = {
246
+ CreatedOnToolsVersion = 6.2;
247
+ TestTargetID = 13B07F861A680F5B00A75B9A;
248
+ };
249
+ 13B07F861A680F5B00A75B9A = {
250
+ LastSwiftMigration = 1120;
251
+ };
252
+ 2D02E47A1E0B4A5D006451C7 = {
253
+ CreatedOnToolsVersion = 8.2.1;
254
+ ProvisioningStyle = Automatic;
255
+ };
256
+ 2D02E48F1E0B4A5D006451C7 = {
257
+ CreatedOnToolsVersion = 8.2.1;
258
+ ProvisioningStyle = Automatic;
259
+ TestTargetID = 2D02E47A1E0B4A5D006451C7;
260
+ };
261
+ };
262
+ };
263
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ui-native" */;
264
+ compatibilityVersion = "Xcode 3.2";
265
+ developmentRegion = en;
266
+ hasScannedForEncodings = 0;
267
+ knownRegions = (
268
+ en,
269
+ Base,
270
+ );
271
+ mainGroup = 83CBB9F61A601CBA00E9B192;
272
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
273
+ projectDirPath = "";
274
+ projectRoot = "";
275
+ targets = (
276
+ 13B07F861A680F5B00A75B9A /* ui-native */,
277
+ 00E356ED1AD99517003FC87E /* MyAppTests */,
278
+ 2D02E47A1E0B4A5D006451C7 /* ui-native-tvOS */,
279
+ 2D02E48F1E0B4A5D006451C7 /* ui-native-tvOSTests */,
280
+ );
281
+ };
282
+ /* End PBXProject section */
283
+
284
+ /* Begin PBXResourcesBuildPhase section */
285
+ 00E356EC1AD99517003FC87E /* Resources */ = {
286
+ isa = PBXResourcesBuildPhase;
287
+ buildActionMask = 2147483647;
288
+ files = (
289
+ );
290
+ runOnlyForDeploymentPostprocessing = 0;
291
+ };
292
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
293
+ isa = PBXResourcesBuildPhase;
294
+ buildActionMask = 2147483647;
295
+ files = (
296
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
297
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
298
+ );
299
+ runOnlyForDeploymentPostprocessing = 0;
300
+ };
301
+ 2D02E4791E0B4A5D006451C7 /* Resources */ = {
302
+ isa = PBXResourcesBuildPhase;
303
+ buildActionMask = 2147483647;
304
+ files = (
305
+ 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
306
+ );
307
+ runOnlyForDeploymentPostprocessing = 0;
308
+ };
309
+ 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
310
+ isa = PBXResourcesBuildPhase;
311
+ buildActionMask = 2147483647;
312
+ files = (
313
+ );
314
+ runOnlyForDeploymentPostprocessing = 0;
315
+ };
316
+ /* End PBXResourcesBuildPhase section */
317
+
318
+ /* Begin PBXShellScriptBuildPhase section */
319
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
320
+ isa = PBXShellScriptBuildPhase;
321
+ buildActionMask = 2147483647;
322
+ files = (
323
+ );
324
+ inputPaths = (
325
+ );
326
+ name = "Bundle React Native code and images";
327
+ outputPaths = (
328
+ );
329
+ runOnlyForDeploymentPostprocessing = 0;
330
+ shellPath = /bin/sh;
331
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
332
+ };
333
+ 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
334
+ isa = PBXShellScriptBuildPhase;
335
+ buildActionMask = 2147483647;
336
+ files = (
337
+ );
338
+ inputPaths = (
339
+ );
340
+ name = "Bundle React Native Code And Images";
341
+ outputPaths = (
342
+ );
343
+ runOnlyForDeploymentPostprocessing = 0;
344
+ shellPath = /bin/sh;
345
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
346
+ };
347
+ FD10A7F022414F080027D42C /* Start Packager */ = {
348
+ isa = PBXShellScriptBuildPhase;
349
+ buildActionMask = 2147483647;
350
+ files = (
351
+ );
352
+ inputFileListPaths = (
353
+ );
354
+ inputPaths = (
355
+ );
356
+ name = "Start Packager";
357
+ outputFileListPaths = (
358
+ );
359
+ outputPaths = (
360
+ );
361
+ runOnlyForDeploymentPostprocessing = 0;
362
+ shellPath = /bin/sh;
363
+ 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";
364
+ showEnvVarsInLog = 0;
365
+ };
366
+ FD10A7F122414F3F0027D42C /* Start Packager */ = {
367
+ isa = PBXShellScriptBuildPhase;
368
+ buildActionMask = 2147483647;
369
+ files = (
370
+ );
371
+ inputFileListPaths = (
372
+ );
373
+ inputPaths = (
374
+ );
375
+ name = "Start Packager";
376
+ outputFileListPaths = (
377
+ );
378
+ outputPaths = (
379
+ );
380
+ runOnlyForDeploymentPostprocessing = 0;
381
+ shellPath = /bin/sh;
382
+ 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";
383
+ showEnvVarsInLog = 0;
384
+ };
385
+ /* End PBXShellScriptBuildPhase section */
386
+
387
+ /* Begin PBXSourcesBuildPhase section */
388
+ 00E356EA1AD99517003FC87E /* Sources */ = {
389
+ isa = PBXSourcesBuildPhase;
390
+ buildActionMask = 2147483647;
391
+ files = (
392
+ 00E356F31AD99517003FC87E /* MyAppTests.m in Sources */,
393
+ );
394
+ runOnlyForDeploymentPostprocessing = 0;
395
+ };
396
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
397
+ isa = PBXSourcesBuildPhase;
398
+ buildActionMask = 2147483647;
399
+ files = (
400
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
401
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
402
+ );
403
+ runOnlyForDeploymentPostprocessing = 0;
404
+ };
405
+ 2D02E4771E0B4A5D006451C7 /* Sources */ = {
406
+ isa = PBXSourcesBuildPhase;
407
+ buildActionMask = 2147483647;
408
+ files = (
409
+ 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
410
+ 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
411
+ );
412
+ runOnlyForDeploymentPostprocessing = 0;
413
+ };
414
+ 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
415
+ isa = PBXSourcesBuildPhase;
416
+ buildActionMask = 2147483647;
417
+ files = (
418
+ 2DCD954D1E0B4F2C00145EB5 /* MyAppTests.m in Sources */,
419
+ );
420
+ runOnlyForDeploymentPostprocessing = 0;
421
+ };
422
+ /* End PBXSourcesBuildPhase section */
423
+
424
+ /* Begin PBXTargetDependency section */
425
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
426
+ isa = PBXTargetDependency;
427
+ target = 13B07F861A680F5B00A75B9A /* ui-native */;
428
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
429
+ };
430
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
431
+ isa = PBXTargetDependency;
432
+ target = 2D02E47A1E0B4A5D006451C7 /* ui-native-tvOS */;
433
+ targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
434
+ };
435
+ /* End PBXTargetDependency section */
436
+
437
+ /* Begin XCBuildConfiguration section */
438
+ 00E356F61AD99517003FC87E /* Debug */ = {
439
+ isa = XCBuildConfiguration;
440
+ buildSettings = {
441
+ BUNDLE_LOADER = "$(TEST_HOST)";
442
+ GCC_PREPROCESSOR_DEFINITIONS = (
443
+ "DEBUG=1",
444
+ "$(inherited)",
445
+ );
446
+ INFOPLIST_FILE = MyAppTests/Info.plist;
447
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
448
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
449
+ OTHER_LDFLAGS = (
450
+ "-ObjC",
451
+ "-lc++",
452
+ "$(inherited)",
453
+ );
454
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
455
+ PRODUCT_NAME = "$(TARGET_NAME)";
456
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ui-native.app/ui-native";
457
+ };
458
+ name = Debug;
459
+ };
460
+ 00E356F71AD99517003FC87E /* Release */ = {
461
+ isa = XCBuildConfiguration;
462
+ buildSettings = {
463
+ BUNDLE_LOADER = "$(TEST_HOST)";
464
+ COPY_PHASE_STRIP = NO;
465
+ INFOPLIST_FILE = MyAppTests/Info.plist;
466
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
467
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
468
+ OTHER_LDFLAGS = (
469
+ "-ObjC",
470
+ "-lc++",
471
+ "$(inherited)",
472
+ );
473
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
474
+ PRODUCT_NAME = "$(TARGET_NAME)";
475
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ui-native.app/ui-native";
476
+ };
477
+ name = Release;
478
+ };
479
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
480
+ isa = XCBuildConfiguration;
481
+ buildSettings = {
482
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
483
+ CLANG_ENABLE_MODULES = YES;
484
+ CURRENT_PROJECT_VERSION = 1;
485
+ ENABLE_BITCODE = NO;
486
+ INFOPLIST_FILE = ui-native/Info.plist;
487
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
488
+ OTHER_LDFLAGS = (
489
+ "$(inherited)",
490
+ "-ObjC",
491
+ "-lc++",
492
+ );
493
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
494
+ PRODUCT_NAME = ui-native;
495
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
496
+ SWIFT_VERSION = 5.0;
497
+ VERSIONING_SYSTEM = "apple-generic";
498
+ };
499
+ name = Debug;
500
+ };
501
+ 13B07F951A680F5B00A75B9A /* Release */ = {
502
+ isa = XCBuildConfiguration;
503
+ buildSettings = {
504
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
505
+ CLANG_ENABLE_MODULES = YES;
506
+ CURRENT_PROJECT_VERSION = 1;
507
+ INFOPLIST_FILE = ui-native/Info.plist;
508
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
509
+ OTHER_LDFLAGS = (
510
+ "$(inherited)",
511
+ "-ObjC",
512
+ "-lc++",
513
+ );
514
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
515
+ PRODUCT_NAME = ui-native;
516
+ SWIFT_VERSION = 5.0;
517
+ VERSIONING_SYSTEM = "apple-generic";
518
+ };
519
+ name = Release;
520
+ };
521
+ 2D02E4971E0B4A5E006451C7 /* Debug */ = {
522
+ isa = XCBuildConfiguration;
523
+ buildSettings = {
524
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
525
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
526
+ CLANG_ANALYZER_NONNULL = YES;
527
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
528
+ CLANG_WARN_INFINITE_RECURSION = YES;
529
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
530
+ DEBUG_INFORMATION_FORMAT = dwarf;
531
+ ENABLE_TESTABILITY = YES;
532
+ GCC_NO_COMMON_BLOCKS = YES;
533
+ INFOPLIST_FILE = "ui-native-tvOS/Info.plist";
534
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
535
+ OTHER_LDFLAGS = (
536
+ "$(inherited)",
537
+ "-ObjC",
538
+ "-lc++",
539
+ );
540
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.ui-native-tvOS";
541
+ PRODUCT_NAME = "$(TARGET_NAME)";
542
+ SDKROOT = appletvos;
543
+ TARGETED_DEVICE_FAMILY = 3;
544
+ TVOS_DEPLOYMENT_TARGET = 10.0;
545
+ };
546
+ name = Debug;
547
+ };
548
+ 2D02E4981E0B4A5E006451C7 /* Release */ = {
549
+ isa = XCBuildConfiguration;
550
+ buildSettings = {
551
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
552
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
553
+ CLANG_ANALYZER_NONNULL = YES;
554
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
555
+ CLANG_WARN_INFINITE_RECURSION = YES;
556
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
557
+ COPY_PHASE_STRIP = NO;
558
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
559
+ GCC_NO_COMMON_BLOCKS = YES;
560
+ INFOPLIST_FILE = "ui-native-tvOS/Info.plist";
561
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
562
+ OTHER_LDFLAGS = (
563
+ "$(inherited)",
564
+ "-ObjC",
565
+ "-lc++",
566
+ );
567
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.ui-native-tvOS";
568
+ PRODUCT_NAME = "$(TARGET_NAME)";
569
+ SDKROOT = appletvos;
570
+ TARGETED_DEVICE_FAMILY = 3;
571
+ TVOS_DEPLOYMENT_TARGET = 10.0;
572
+ };
573
+ name = Release;
574
+ };
575
+ 2D02E4991E0B4A5E006451C7 /* Debug */ = {
576
+ isa = XCBuildConfiguration;
577
+ buildSettings = {
578
+ BUNDLE_LOADER = "$(TEST_HOST)";
579
+ CLANG_ANALYZER_NONNULL = YES;
580
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
581
+ CLANG_WARN_INFINITE_RECURSION = YES;
582
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
583
+ DEBUG_INFORMATION_FORMAT = dwarf;
584
+ ENABLE_TESTABILITY = YES;
585
+ GCC_NO_COMMON_BLOCKS = YES;
586
+ INFOPLIST_FILE = "ui-native-tvOSTests/Info.plist";
587
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
588
+ OTHER_LDFLAGS = (
589
+ "$(inherited)",
590
+ "-ObjC",
591
+ "-lc++",
592
+ );
593
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.ui-native-tvOSTests";
594
+ PRODUCT_NAME = "$(TARGET_NAME)";
595
+ SDKROOT = appletvos;
596
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ui-native-tvOS.app/ui-native-tvOS";
597
+ TVOS_DEPLOYMENT_TARGET = 10.1;
598
+ };
599
+ name = Debug;
600
+ };
601
+ 2D02E49A1E0B4A5E006451C7 /* Release */ = {
602
+ isa = XCBuildConfiguration;
603
+ buildSettings = {
604
+ BUNDLE_LOADER = "$(TEST_HOST)";
605
+ CLANG_ANALYZER_NONNULL = YES;
606
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
607
+ CLANG_WARN_INFINITE_RECURSION = YES;
608
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
609
+ COPY_PHASE_STRIP = NO;
610
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
611
+ GCC_NO_COMMON_BLOCKS = YES;
612
+ INFOPLIST_FILE = "ui-native-tvOSTests/Info.plist";
613
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
614
+ OTHER_LDFLAGS = (
615
+ "$(inherited)",
616
+ "-ObjC",
617
+ "-lc++",
618
+ );
619
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.ui-native-tvOSTests";
620
+ PRODUCT_NAME = "$(TARGET_NAME)";
621
+ SDKROOT = appletvos;
622
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ui-native-tvOS.app/ui-native-tvOS";
623
+ TVOS_DEPLOYMENT_TARGET = 10.1;
624
+ };
625
+ name = Release;
626
+ };
627
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
628
+ isa = XCBuildConfiguration;
629
+ buildSettings = {
630
+ ALWAYS_SEARCH_USER_PATHS = NO;
631
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
632
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
633
+ CLANG_CXX_LIBRARY = "libc++";
634
+ CLANG_ENABLE_MODULES = YES;
635
+ CLANG_ENABLE_OBJC_ARC = YES;
636
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
637
+ CLANG_WARN_BOOL_CONVERSION = YES;
638
+ CLANG_WARN_COMMA = YES;
639
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
640
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
641
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
642
+ CLANG_WARN_EMPTY_BODY = YES;
643
+ CLANG_WARN_ENUM_CONVERSION = YES;
644
+ CLANG_WARN_INFINITE_RECURSION = YES;
645
+ CLANG_WARN_INT_CONVERSION = YES;
646
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
647
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
648
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
649
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
650
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
651
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
652
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
653
+ CLANG_WARN_UNREACHABLE_CODE = YES;
654
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
655
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
656
+ COPY_PHASE_STRIP = NO;
657
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
658
+ ENABLE_TESTABILITY = YES;
659
+ GCC_C_LANGUAGE_STANDARD = gnu99;
660
+ GCC_DYNAMIC_NO_PIC = NO;
661
+ GCC_NO_COMMON_BLOCKS = YES;
662
+ GCC_OPTIMIZATION_LEVEL = 0;
663
+ GCC_PREPROCESSOR_DEFINITIONS = (
664
+ "DEBUG=1",
665
+ "$(inherited)",
666
+ );
667
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
668
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
669
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
670
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
671
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
672
+ GCC_WARN_UNUSED_FUNCTION = YES;
673
+ GCC_WARN_UNUSED_VARIABLE = YES;
674
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
675
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
676
+ LIBRARY_SEARCH_PATHS = (
677
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
678
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
679
+ "\"$(inherited)\"",
680
+ );
681
+ MTL_ENABLE_DEBUG_INFO = YES;
682
+ ONLY_ACTIVE_ARCH = YES;
683
+ SDKROOT = iphoneos;
684
+ };
685
+ name = Debug;
686
+ };
687
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
688
+ isa = XCBuildConfiguration;
689
+ buildSettings = {
690
+ ALWAYS_SEARCH_USER_PATHS = NO;
691
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
692
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
693
+ CLANG_CXX_LIBRARY = "libc++";
694
+ CLANG_ENABLE_MODULES = YES;
695
+ CLANG_ENABLE_OBJC_ARC = YES;
696
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
697
+ CLANG_WARN_BOOL_CONVERSION = YES;
698
+ CLANG_WARN_COMMA = YES;
699
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
700
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
701
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
702
+ CLANG_WARN_EMPTY_BODY = YES;
703
+ CLANG_WARN_ENUM_CONVERSION = YES;
704
+ CLANG_WARN_INFINITE_RECURSION = YES;
705
+ CLANG_WARN_INT_CONVERSION = YES;
706
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
707
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
708
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
709
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
710
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
711
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
712
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
713
+ CLANG_WARN_UNREACHABLE_CODE = YES;
714
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
715
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
716
+ COPY_PHASE_STRIP = YES;
717
+ ENABLE_NS_ASSERTIONS = NO;
718
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
719
+ GCC_C_LANGUAGE_STANDARD = gnu99;
720
+ GCC_NO_COMMON_BLOCKS = YES;
721
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
722
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
723
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
724
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
725
+ GCC_WARN_UNUSED_FUNCTION = YES;
726
+ GCC_WARN_UNUSED_VARIABLE = YES;
727
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
728
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
729
+ LIBRARY_SEARCH_PATHS = (
730
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
731
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
732
+ "\"$(inherited)\"",
733
+ );
734
+ MTL_ENABLE_DEBUG_INFO = NO;
735
+ SDKROOT = iphoneos;
736
+ VALIDATE_PRODUCT = YES;
737
+ };
738
+ name = Release;
739
+ };
740
+ /* End XCBuildConfiguration section */
741
+
742
+ /* Begin XCConfigurationList section */
743
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MyAppTests" */ = {
744
+ isa = XCConfigurationList;
745
+ buildConfigurations = (
746
+ 00E356F61AD99517003FC87E /* Debug */,
747
+ 00E356F71AD99517003FC87E /* Release */,
748
+ );
749
+ defaultConfigurationIsVisible = 0;
750
+ defaultConfigurationName = Release;
751
+ };
752
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ui-native" */ = {
753
+ isa = XCConfigurationList;
754
+ buildConfigurations = (
755
+ 13B07F941A680F5B00A75B9A /* Debug */,
756
+ 13B07F951A680F5B00A75B9A /* Release */,
757
+ );
758
+ defaultConfigurationIsVisible = 0;
759
+ defaultConfigurationName = Release;
760
+ };
761
+ 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ui-native-tvOS" */ = {
762
+ isa = XCConfigurationList;
763
+ buildConfigurations = (
764
+ 2D02E4971E0B4A5E006451C7 /* Debug */,
765
+ 2D02E4981E0B4A5E006451C7 /* Release */,
766
+ );
767
+ defaultConfigurationIsVisible = 0;
768
+ defaultConfigurationName = Release;
769
+ };
770
+ 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ui-native-tvOSTests" */ = {
771
+ isa = XCConfigurationList;
772
+ buildConfigurations = (
773
+ 2D02E4991E0B4A5E006451C7 /* Debug */,
774
+ 2D02E49A1E0B4A5E006451C7 /* Release */,
775
+ );
776
+ defaultConfigurationIsVisible = 0;
777
+ defaultConfigurationName = Release;
778
+ };
779
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ui-native" */ = {
780
+ isa = XCConfigurationList;
781
+ buildConfigurations = (
782
+ 83CBBA201A601CBA00E9B192 /* Debug */,
783
+ 83CBBA211A601CBA00E9B192 /* Release */,
784
+ );
785
+ defaultConfigurationIsVisible = 0;
786
+ defaultConfigurationName = Release;
787
+ };
788
+ /* End XCConfigurationList section */
789
+ };
790
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
791
+ }