@hedia/recommendation-screen 1.0.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 (118) hide show
  1. package/.prettierignore +2 -0
  2. package/Changelog.md +5 -0
  3. package/README.md +3 -0
  4. package/android/app/BUCK +55 -0
  5. package/android/app/build.gradle +226 -0
  6. package/android/app/build_defs.bzl +19 -0
  7. package/android/app/debug.keystore +0 -0
  8. package/android/app/proguard-rules.pro +10 -0
  9. package/android/app/src/debug/AndroidManifest.xml +8 -0
  10. package/android/app/src/debug/java/com/hediarecommendationscreen/ReactNativeFlipper.java +72 -0
  11. package/android/app/src/main/AndroidManifest.xml +27 -0
  12. package/android/app/src/main/java/com/hediarecommendationscreen/MainActivity.java +15 -0
  13. package/android/app/src/main/java/com/hediarecommendationscreen/MainApplication.java +80 -0
  14. package/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  15. package/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  16. package/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  17. package/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  18. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  19. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  20. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  21. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  22. package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  23. package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  24. package/android/app/src/main/res/values/strings.xml +3 -0
  25. package/android/app/src/main/res/values/styles.xml +9 -0
  26. package/android/build.gradle +38 -0
  27. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  28. package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  29. package/android/gradle.properties +28 -0
  30. package/android/gradlew +188 -0
  31. package/android/gradlew.bat +100 -0
  32. package/android/settings.gradle +3 -0
  33. package/index-git.sh +5 -0
  34. package/index.d.ts +5 -0
  35. package/index.js +16 -0
  36. package/index.ts +19 -0
  37. package/ios/HediaRecommendationScreen/AppDelegate.h +8 -0
  38. package/ios/HediaRecommendationScreen/AppDelegate.m +58 -0
  39. package/ios/HediaRecommendationScreen/Base.lproj/LaunchScreen.xib +42 -0
  40. package/ios/HediaRecommendationScreen/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
  41. package/ios/HediaRecommendationScreen/Images.xcassets/Contents.json +6 -0
  42. package/ios/HediaRecommendationScreen/Info.plist +57 -0
  43. package/ios/HediaRecommendationScreen/main.m +9 -0
  44. package/ios/HediaRecommendationScreen-tvOS/Info.plist +53 -0
  45. package/ios/HediaRecommendationScreen-tvOSTests/Info.plist +24 -0
  46. package/ios/HediaRecommendationScreen.xcodeproj/project.pbxproj +807 -0
  47. package/ios/HediaRecommendationScreen.xcodeproj/xcshareddata/xcschemes/HediaRecommendationScreen-tvOS.xcscheme +88 -0
  48. package/ios/HediaRecommendationScreen.xcodeproj/xcshareddata/xcschemes/HediaRecommendationScreen.xcscheme +88 -0
  49. package/ios/HediaRecommendationScreenTests/HediaRecommendationScreenTests.m +65 -0
  50. package/ios/HediaRecommendationScreenTests/Info.plist +24 -0
  51. package/ios/Podfile +104 -0
  52. package/package.json +75 -0
  53. package/src/RecommendationScreen.d.ts +42 -0
  54. package/src/RecommendationScreen.js +142 -0
  55. package/src/RecommendationScreen.tsx +210 -0
  56. package/src/assets/happy.png +0 -0
  57. package/src/assets/happy_active.png +0 -0
  58. package/src/assets/neutral.png +0 -0
  59. package/src/assets/neutral_active.png +0 -0
  60. package/src/assets/sad.png +0 -0
  61. package/src/assets/sad_active.png +0 -0
  62. package/src/assets/semi_happy.png +0 -0
  63. package/src/assets/semi_happy_active.png +0 -0
  64. package/src/assets/semi_sad.png +0 -0
  65. package/src/assets/semi_sad_active.png +0 -0
  66. package/src/components/Emotion.d.ts +14 -0
  67. package/src/components/Emotion.js +55 -0
  68. package/src/components/Emotion.tsx +71 -0
  69. package/src/components/Header.d.ts +52 -0
  70. package/src/components/Header.js +83 -0
  71. package/src/components/Header.tsx +94 -0
  72. package/src/components/Icon.js +41 -0
  73. package/src/components/InfoBars.d.ts +67 -0
  74. package/src/components/InfoBars.js +89 -0
  75. package/src/components/InfoBars.tsx +93 -0
  76. package/src/components/InvisibleNumberInput.d.ts +24 -0
  77. package/src/components/InvisibleNumberInput.js +64 -0
  78. package/src/components/InvisibleNumberInput.tsx +88 -0
  79. package/src/components/MoodIcon.d.ts +14 -0
  80. package/src/components/MoodIcon.js +53 -0
  81. package/src/components/MoodIcon.tsx +58 -0
  82. package/src/components/RecentInsulin.d.ts +9 -0
  83. package/src/components/RecentInsulin.js +91 -0
  84. package/src/components/RecentInsulin.tsx +97 -0
  85. package/src/components/RecommendedCarbs.d.ts +30 -0
  86. package/src/components/RecommendedCarbs.js +193 -0
  87. package/src/components/RecommendedCarbs.tsx +242 -0
  88. package/src/components/RecommendedInsulin.d.ts +22 -0
  89. package/src/components/RecommendedInsulin.js +110 -0
  90. package/src/components/RecommendedInsulin.tsx +147 -0
  91. package/src/components/Remeasure.d.ts +13 -0
  92. package/src/components/Remeasure.js +89 -0
  93. package/src/components/Remeasure.tsx +105 -0
  94. package/src/components/TransferToLogbook.d.ts +14 -0
  95. package/src/components/TransferToLogbook.js +81 -0
  96. package/src/components/TransferToLogbook.tsx +97 -0
  97. package/src/locale/da/messages.js +1 -0
  98. package/src/locale/da/messages.po +119 -0
  99. package/src/locale/en/messages.js +1 -0
  100. package/src/locale/en/messages.po +119 -0
  101. package/src/locale/i18nUtils.d.ts +5 -0
  102. package/src/locale/i18nUtils.js +22 -0
  103. package/src/locale/i18nUtils.ts +21 -0
  104. package/src/types/enum.d.ts +26 -0
  105. package/src/types/enum.js +34 -0
  106. package/src/types/enum.ts +30 -0
  107. package/src/types/types.d.ts +21 -0
  108. package/src/types/types.js +2 -0
  109. package/src/types/types.ts +23 -0
  110. package/src/utils/Constants.d.ts +3 -0
  111. package/src/utils/Constants.js +6 -0
  112. package/src/utils/Constants.ts +3 -0
  113. package/src/utils/RecommendationError.d.ts +9 -0
  114. package/src/utils/RecommendationError.js +17 -0
  115. package/src/utils/RecommendationError.ts +30 -0
  116. package/src/utils/Utils.d.ts +5 -0
  117. package/src/utils/Utils.js +24 -0
  118. package/src/utils/Utils.ts +26 -0
@@ -0,0 +1,807 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* HediaRecommendationScreenTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* HediaRecommendationScreenTests.m */; };
11
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
12
+ 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
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
+ 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
16
+ 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
17
+ 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
18
+ 2DCD954D1E0B4F2C00145EB5 /* HediaRecommendationScreenTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* HediaRecommendationScreenTests.m */; };
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 = HediaRecommendationScreen;
28
+ };
29
+ 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
30
+ isa = PBXContainerItemProxy;
31
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
32
+ proxyType = 1;
33
+ remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
34
+ remoteInfo = "HediaRecommendationScreen-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 /* HediaRecommendationScreenTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = HediaRecommendationScreenTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
41
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
42
+ 00E356F21AD99517003FC87E /* HediaRecommendationScreenTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HediaRecommendationScreenTests.m; sourceTree = "<group>"; };
43
+ 13B07F961A680F5B00A75B9A /* HediaRecommendationScreen.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HediaRecommendationScreen.app; sourceTree = BUILT_PRODUCTS_DIR; };
44
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = HediaRecommendationScreen/AppDelegate.h; sourceTree = "<group>"; };
45
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = HediaRecommendationScreen/AppDelegate.m; sourceTree = "<group>"; };
46
+ 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
47
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = HediaRecommendationScreen/Images.xcassets; sourceTree = "<group>"; };
48
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = HediaRecommendationScreen/Info.plist; sourceTree = "<group>"; };
49
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = HediaRecommendationScreen/main.m; sourceTree = "<group>"; };
50
+ 2D02E47B1E0B4A5D006451C7 /* HediaRecommendationScreen-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "HediaRecommendationScreen-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
51
+ 2D02E4901E0B4A5D006451C7 /* HediaRecommendationScreen-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "HediaRecommendationScreen-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
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 /* HediaRecommendationScreenTests */ = {
89
+ isa = PBXGroup;
90
+ children = (
91
+ 00E356F21AD99517003FC87E /* HediaRecommendationScreenTests.m */,
92
+ 00E356F01AD99517003FC87E /* Supporting Files */,
93
+ );
94
+ path = HediaRecommendationScreenTests;
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 /* HediaRecommendationScreen */ = {
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
+ 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
114
+ 13B07FB71A68108700A75B9A /* main.m */,
115
+ );
116
+ name = HediaRecommendationScreen;
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 /* HediaRecommendationScreen */,
139
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
140
+ 00E356EF1AD99517003FC87E /* HediaRecommendationScreenTests */,
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 /* HediaRecommendationScreen.app */,
153
+ 00E356EE1AD99517003FC87E /* HediaRecommendationScreenTests.xctest */,
154
+ 2D02E47B1E0B4A5D006451C7 /* HediaRecommendationScreen-tvOS.app */,
155
+ 2D02E4901E0B4A5D006451C7 /* HediaRecommendationScreen-tvOSTests.xctest */,
156
+ );
157
+ name = Products;
158
+ sourceTree = "<group>";
159
+ };
160
+ /* End PBXGroup section */
161
+
162
+ /* Begin PBXNativeTarget section */
163
+ 00E356ED1AD99517003FC87E /* HediaRecommendationScreenTests */ = {
164
+ isa = PBXNativeTarget;
165
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "HediaRecommendationScreenTests" */;
166
+ buildPhases = (
167
+ 00E356EA1AD99517003FC87E /* Sources */,
168
+ 00E356EB1AD99517003FC87E /* Frameworks */,
169
+ 00E356EC1AD99517003FC87E /* Resources */,
170
+ );
171
+ buildRules = (
172
+ );
173
+ dependencies = (
174
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
175
+ );
176
+ name = HediaRecommendationScreenTests;
177
+ productName = HediaRecommendationScreenTests;
178
+ productReference = 00E356EE1AD99517003FC87E /* HediaRecommendationScreenTests.xctest */;
179
+ productType = "com.apple.product-type.bundle.unit-test";
180
+ };
181
+ 13B07F861A680F5B00A75B9A /* HediaRecommendationScreen */ = {
182
+ isa = PBXNativeTarget;
183
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "HediaRecommendationScreen" */;
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 = HediaRecommendationScreen;
196
+ productName = HediaRecommendationScreen;
197
+ productReference = 13B07F961A680F5B00A75B9A /* HediaRecommendationScreen.app */;
198
+ productType = "com.apple.product-type.application";
199
+ };
200
+ 2D02E47A1E0B4A5D006451C7 /* HediaRecommendationScreen-tvOS */ = {
201
+ isa = PBXNativeTarget;
202
+ buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "HediaRecommendationScreen-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 = "HediaRecommendationScreen-tvOS";
215
+ productName = "HediaRecommendationScreen-tvOS";
216
+ productReference = 2D02E47B1E0B4A5D006451C7 /* HediaRecommendationScreen-tvOS.app */;
217
+ productType = "com.apple.product-type.application";
218
+ };
219
+ 2D02E48F1E0B4A5D006451C7 /* HediaRecommendationScreen-tvOSTests */ = {
220
+ isa = PBXNativeTarget;
221
+ buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "HediaRecommendationScreen-tvOSTests" */;
222
+ buildPhases = (
223
+ 2D02E48C1E0B4A5D006451C7 /* Sources */,
224
+ 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
225
+ 2D02E48E1E0B4A5D006451C7 /* Resources */,
226
+ );
227
+ buildRules = (
228
+ );
229
+ dependencies = (
230
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
231
+ );
232
+ name = "HediaRecommendationScreen-tvOSTests";
233
+ productName = "HediaRecommendationScreen-tvOSTests";
234
+ productReference = 2D02E4901E0B4A5D006451C7 /* HediaRecommendationScreen-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 "HediaRecommendationScreen" */;
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 /* HediaRecommendationScreen */,
277
+ 00E356ED1AD99517003FC87E /* HediaRecommendationScreenTests */,
278
+ 2D02E47A1E0B4A5D006451C7 /* HediaRecommendationScreen-tvOS */,
279
+ 2D02E48F1E0B4A5D006451C7 /* HediaRecommendationScreen-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
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
297
+ 13B07FBD1A68108700A75B9A /* LaunchScreen.xib 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 /* HediaRecommendationScreenTests.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 /* HediaRecommendationScreenTests.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 /* HediaRecommendationScreen */;
428
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
429
+ };
430
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
431
+ isa = PBXTargetDependency;
432
+ target = 2D02E47A1E0B4A5D006451C7 /* HediaRecommendationScreen-tvOS */;
433
+ targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
434
+ };
435
+ /* End PBXTargetDependency section */
436
+
437
+ /* Begin PBXVariantGroup section */
438
+ 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
439
+ isa = PBXVariantGroup;
440
+ children = (
441
+ 13B07FB21A68108700A75B9A /* Base */,
442
+ );
443
+ name = LaunchScreen.xib;
444
+ path = HediaRecommendationScreen;
445
+ sourceTree = "<group>";
446
+ };
447
+ /* End PBXVariantGroup section */
448
+
449
+ /* Begin XCBuildConfiguration section */
450
+ 00E356F61AD99517003FC87E /* Debug */ = {
451
+ isa = XCBuildConfiguration;
452
+ buildSettings = {
453
+ BUNDLE_LOADER = "$(TEST_HOST)";
454
+ GCC_PREPROCESSOR_DEFINITIONS = (
455
+ "DEBUG=1",
456
+ "$(inherited)",
457
+ );
458
+ INFOPLIST_FILE = HediaRecommendationScreenTests/Info.plist;
459
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
460
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
461
+ OTHER_LDFLAGS = (
462
+ "-ObjC",
463
+ "-lc++",
464
+ "$(inherited)",
465
+ );
466
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
467
+ PRODUCT_NAME = "$(TARGET_NAME)";
468
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HediaRecommendationScreen.app/HediaRecommendationScreen";
469
+ };
470
+ name = Debug;
471
+ };
472
+ 00E356F71AD99517003FC87E /* Release */ = {
473
+ isa = XCBuildConfiguration;
474
+ buildSettings = {
475
+ BUNDLE_LOADER = "$(TEST_HOST)";
476
+ COPY_PHASE_STRIP = NO;
477
+ INFOPLIST_FILE = HediaRecommendationScreenTests/Info.plist;
478
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
479
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
480
+ OTHER_LDFLAGS = (
481
+ "-ObjC",
482
+ "-lc++",
483
+ "$(inherited)",
484
+ );
485
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
486
+ PRODUCT_NAME = "$(TARGET_NAME)";
487
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HediaRecommendationScreen.app/HediaRecommendationScreen";
488
+ };
489
+ name = Release;
490
+ };
491
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
492
+ isa = XCBuildConfiguration;
493
+ buildSettings = {
494
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
495
+ CLANG_ENABLE_MODULES = YES;
496
+ CURRENT_PROJECT_VERSION = 1;
497
+ ENABLE_BITCODE = NO;
498
+ GCC_PREPROCESSOR_DEFINITIONS = (
499
+ "$(inherited)",
500
+ "FB_SONARKIT_ENABLED=1",
501
+ );
502
+ INFOPLIST_FILE = HediaRecommendationScreen/Info.plist;
503
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
504
+ OTHER_LDFLAGS = (
505
+ "$(inherited)",
506
+ "-ObjC",
507
+ "-lc++",
508
+ );
509
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
510
+ PRODUCT_NAME = HediaRecommendationScreen;
511
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
512
+ SWIFT_VERSION = 5.0;
513
+ VERSIONING_SYSTEM = "apple-generic";
514
+ };
515
+ name = Debug;
516
+ };
517
+ 13B07F951A680F5B00A75B9A /* Release */ = {
518
+ isa = XCBuildConfiguration;
519
+ buildSettings = {
520
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
521
+ CLANG_ENABLE_MODULES = YES;
522
+ CURRENT_PROJECT_VERSION = 1;
523
+ INFOPLIST_FILE = HediaRecommendationScreen/Info.plist;
524
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
525
+ OTHER_LDFLAGS = (
526
+ "$(inherited)",
527
+ "-ObjC",
528
+ "-lc++",
529
+ );
530
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
531
+ PRODUCT_NAME = HediaRecommendationScreen;
532
+ SWIFT_VERSION = 5.0;
533
+ VERSIONING_SYSTEM = "apple-generic";
534
+ };
535
+ name = Release;
536
+ };
537
+ 2D02E4971E0B4A5E006451C7 /* Debug */ = {
538
+ isa = XCBuildConfiguration;
539
+ buildSettings = {
540
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
541
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
542
+ CLANG_ANALYZER_NONNULL = YES;
543
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
544
+ CLANG_WARN_INFINITE_RECURSION = YES;
545
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
546
+ DEBUG_INFORMATION_FORMAT = dwarf;
547
+ ENABLE_TESTABILITY = YES;
548
+ GCC_NO_COMMON_BLOCKS = YES;
549
+ INFOPLIST_FILE = "HediaRecommendationScreen-tvOS/Info.plist";
550
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
551
+ OTHER_LDFLAGS = (
552
+ "$(inherited)",
553
+ "-ObjC",
554
+ "-lc++",
555
+ );
556
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.HediaRecommendationScreen-tvOS";
557
+ PRODUCT_NAME = "$(TARGET_NAME)";
558
+ SDKROOT = appletvos;
559
+ TARGETED_DEVICE_FAMILY = 3;
560
+ TVOS_DEPLOYMENT_TARGET = 9.2;
561
+ };
562
+ name = Debug;
563
+ };
564
+ 2D02E4981E0B4A5E006451C7 /* Release */ = {
565
+ isa = XCBuildConfiguration;
566
+ buildSettings = {
567
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
568
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
569
+ CLANG_ANALYZER_NONNULL = YES;
570
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
571
+ CLANG_WARN_INFINITE_RECURSION = YES;
572
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
573
+ COPY_PHASE_STRIP = NO;
574
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
575
+ GCC_NO_COMMON_BLOCKS = YES;
576
+ INFOPLIST_FILE = "HediaRecommendationScreen-tvOS/Info.plist";
577
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
578
+ OTHER_LDFLAGS = (
579
+ "$(inherited)",
580
+ "-ObjC",
581
+ "-lc++",
582
+ );
583
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.HediaRecommendationScreen-tvOS";
584
+ PRODUCT_NAME = "$(TARGET_NAME)";
585
+ SDKROOT = appletvos;
586
+ TARGETED_DEVICE_FAMILY = 3;
587
+ TVOS_DEPLOYMENT_TARGET = 9.2;
588
+ };
589
+ name = Release;
590
+ };
591
+ 2D02E4991E0B4A5E006451C7 /* Debug */ = {
592
+ isa = XCBuildConfiguration;
593
+ buildSettings = {
594
+ BUNDLE_LOADER = "$(TEST_HOST)";
595
+ CLANG_ANALYZER_NONNULL = YES;
596
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
597
+ CLANG_WARN_INFINITE_RECURSION = YES;
598
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
599
+ DEBUG_INFORMATION_FORMAT = dwarf;
600
+ ENABLE_TESTABILITY = YES;
601
+ GCC_NO_COMMON_BLOCKS = YES;
602
+ INFOPLIST_FILE = "HediaRecommendationScreen-tvOSTests/Info.plist";
603
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
604
+ OTHER_LDFLAGS = (
605
+ "$(inherited)",
606
+ "-ObjC",
607
+ "-lc++",
608
+ );
609
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.HediaRecommendationScreen-tvOSTests";
610
+ PRODUCT_NAME = "$(TARGET_NAME)";
611
+ SDKROOT = appletvos;
612
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HediaRecommendationScreen-tvOS.app/HediaRecommendationScreen-tvOS";
613
+ TVOS_DEPLOYMENT_TARGET = 10.1;
614
+ };
615
+ name = Debug;
616
+ };
617
+ 2D02E49A1E0B4A5E006451C7 /* Release */ = {
618
+ isa = XCBuildConfiguration;
619
+ buildSettings = {
620
+ BUNDLE_LOADER = "$(TEST_HOST)";
621
+ CLANG_ANALYZER_NONNULL = YES;
622
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
623
+ CLANG_WARN_INFINITE_RECURSION = YES;
624
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
625
+ COPY_PHASE_STRIP = NO;
626
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
627
+ GCC_NO_COMMON_BLOCKS = YES;
628
+ INFOPLIST_FILE = "HediaRecommendationScreen-tvOSTests/Info.plist";
629
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
630
+ OTHER_LDFLAGS = (
631
+ "$(inherited)",
632
+ "-ObjC",
633
+ "-lc++",
634
+ );
635
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.HediaRecommendationScreen-tvOSTests";
636
+ PRODUCT_NAME = "$(TARGET_NAME)";
637
+ SDKROOT = appletvos;
638
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HediaRecommendationScreen-tvOS.app/HediaRecommendationScreen-tvOS";
639
+ TVOS_DEPLOYMENT_TARGET = 10.1;
640
+ };
641
+ name = Release;
642
+ };
643
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
644
+ isa = XCBuildConfiguration;
645
+ buildSettings = {
646
+ ALWAYS_SEARCH_USER_PATHS = NO;
647
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
648
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
649
+ CLANG_CXX_LIBRARY = "libc++";
650
+ CLANG_ENABLE_MODULES = YES;
651
+ CLANG_ENABLE_OBJC_ARC = YES;
652
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
653
+ CLANG_WARN_BOOL_CONVERSION = YES;
654
+ CLANG_WARN_COMMA = YES;
655
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
656
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
657
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
658
+ CLANG_WARN_EMPTY_BODY = YES;
659
+ CLANG_WARN_ENUM_CONVERSION = YES;
660
+ CLANG_WARN_INFINITE_RECURSION = YES;
661
+ CLANG_WARN_INT_CONVERSION = YES;
662
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
663
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
664
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
665
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
666
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
667
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
668
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
669
+ CLANG_WARN_UNREACHABLE_CODE = YES;
670
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
671
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
672
+ COPY_PHASE_STRIP = NO;
673
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
674
+ ENABLE_TESTABILITY = YES;
675
+ GCC_C_LANGUAGE_STANDARD = gnu99;
676
+ GCC_DYNAMIC_NO_PIC = NO;
677
+ GCC_NO_COMMON_BLOCKS = YES;
678
+ GCC_OPTIMIZATION_LEVEL = 0;
679
+ GCC_PREPROCESSOR_DEFINITIONS = (
680
+ "DEBUG=1",
681
+ "$(inherited)",
682
+ );
683
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
684
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
685
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
686
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
687
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
688
+ GCC_WARN_UNUSED_FUNCTION = YES;
689
+ GCC_WARN_UNUSED_VARIABLE = YES;
690
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
691
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
692
+ LIBRARY_SEARCH_PATHS = (
693
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
694
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
695
+ "\"$(inherited)\"",
696
+ );
697
+ MTL_ENABLE_DEBUG_INFO = YES;
698
+ ONLY_ACTIVE_ARCH = YES;
699
+ SDKROOT = iphoneos;
700
+ };
701
+ name = Debug;
702
+ };
703
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
704
+ isa = XCBuildConfiguration;
705
+ buildSettings = {
706
+ ALWAYS_SEARCH_USER_PATHS = NO;
707
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
708
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
709
+ CLANG_CXX_LIBRARY = "libc++";
710
+ CLANG_ENABLE_MODULES = YES;
711
+ CLANG_ENABLE_OBJC_ARC = YES;
712
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
713
+ CLANG_WARN_BOOL_CONVERSION = YES;
714
+ CLANG_WARN_COMMA = YES;
715
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
716
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
717
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
718
+ CLANG_WARN_EMPTY_BODY = YES;
719
+ CLANG_WARN_ENUM_CONVERSION = YES;
720
+ CLANG_WARN_INFINITE_RECURSION = YES;
721
+ CLANG_WARN_INT_CONVERSION = YES;
722
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
723
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
724
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
725
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
726
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
727
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
728
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
729
+ CLANG_WARN_UNREACHABLE_CODE = YES;
730
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
731
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
732
+ COPY_PHASE_STRIP = YES;
733
+ ENABLE_NS_ASSERTIONS = NO;
734
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
735
+ GCC_C_LANGUAGE_STANDARD = gnu99;
736
+ GCC_NO_COMMON_BLOCKS = YES;
737
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
738
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
739
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
740
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
741
+ GCC_WARN_UNUSED_FUNCTION = YES;
742
+ GCC_WARN_UNUSED_VARIABLE = YES;
743
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
744
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
745
+ LIBRARY_SEARCH_PATHS = (
746
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
747
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
748
+ "\"$(inherited)\"",
749
+ );
750
+ MTL_ENABLE_DEBUG_INFO = NO;
751
+ SDKROOT = iphoneos;
752
+ VALIDATE_PRODUCT = YES;
753
+ };
754
+ name = Release;
755
+ };
756
+ /* End XCBuildConfiguration section */
757
+
758
+ /* Begin XCConfigurationList section */
759
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "HediaRecommendationScreenTests" */ = {
760
+ isa = XCConfigurationList;
761
+ buildConfigurations = (
762
+ 00E356F61AD99517003FC87E /* Debug */,
763
+ 00E356F71AD99517003FC87E /* Release */,
764
+ );
765
+ defaultConfigurationIsVisible = 0;
766
+ defaultConfigurationName = Release;
767
+ };
768
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "HediaRecommendationScreen" */ = {
769
+ isa = XCConfigurationList;
770
+ buildConfigurations = (
771
+ 13B07F941A680F5B00A75B9A /* Debug */,
772
+ 13B07F951A680F5B00A75B9A /* Release */,
773
+ );
774
+ defaultConfigurationIsVisible = 0;
775
+ defaultConfigurationName = Release;
776
+ };
777
+ 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "HediaRecommendationScreen-tvOS" */ = {
778
+ isa = XCConfigurationList;
779
+ buildConfigurations = (
780
+ 2D02E4971E0B4A5E006451C7 /* Debug */,
781
+ 2D02E4981E0B4A5E006451C7 /* Release */,
782
+ );
783
+ defaultConfigurationIsVisible = 0;
784
+ defaultConfigurationName = Release;
785
+ };
786
+ 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "HediaRecommendationScreen-tvOSTests" */ = {
787
+ isa = XCConfigurationList;
788
+ buildConfigurations = (
789
+ 2D02E4991E0B4A5E006451C7 /* Debug */,
790
+ 2D02E49A1E0B4A5E006451C7 /* Release */,
791
+ );
792
+ defaultConfigurationIsVisible = 0;
793
+ defaultConfigurationName = Release;
794
+ };
795
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "HediaRecommendationScreen" */ = {
796
+ isa = XCConfigurationList;
797
+ buildConfigurations = (
798
+ 83CBBA201A601CBA00E9B192 /* Debug */,
799
+ 83CBBA211A601CBA00E9B192 /* Release */,
800
+ );
801
+ defaultConfigurationIsVisible = 0;
802
+ defaultConfigurationName = Release;
803
+ };
804
+ /* End XCConfigurationList section */
805
+ };
806
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
807
+ }