@hero-design/rn 7.7.0 → 7.9.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 (221) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/es/index.js +1775 -333
  3. package/lib/index.js +1780 -336
  4. package/package.json +4 -8
  5. package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  6. package/src/components/Avatar/index.tsx +1 -1
  7. package/src/components/Button/Button.tsx +4 -2
  8. package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +7 -2
  9. package/src/components/Button/LoadingIndicator/__tests__/StyledLoadingIndicator.spec.tsx +2 -0
  10. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +40 -0
  11. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +242 -0
  12. package/src/components/Button/LoadingIndicator/__tests__/index.spec.tsx +2 -0
  13. package/src/components/Button/LoadingIndicator/index.tsx +3 -1
  14. package/src/components/Button/StyledButton.tsx +15 -2
  15. package/src/components/Button/__tests__/Button.spec.tsx +2 -0
  16. package/src/components/Button/__tests__/StyledButton.spec.tsx +12 -0
  17. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +314 -0
  18. package/src/components/Card/DataCard/StyledDataCard.tsx +18 -0
  19. package/src/components/Card/DataCard/__tests__/StyledDataCard.spec.tsx +24 -0
  20. package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +96 -0
  21. package/src/components/Card/DataCard/__tests__/__snapshots__/index.spec.tsx.snap +151 -0
  22. package/src/components/Card/DataCard/__tests__/index.spec.tsx +30 -0
  23. package/src/components/Card/DataCard/index.tsx +35 -0
  24. package/src/components/Card/StyledCard.tsx +1 -3
  25. package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +0 -1
  26. package/src/components/Card/index.tsx +7 -2
  27. package/src/components/Checkbox/index.tsx +1 -1
  28. package/src/components/Collapse/index.tsx +1 -1
  29. package/src/components/Icon/HeroIcon/index.tsx +3 -1
  30. package/src/components/Icon/index.tsx +3 -2
  31. package/src/components/List/BasicListItem.tsx +98 -0
  32. package/src/components/List/ListItem.tsx +142 -0
  33. package/src/components/List/StyledBasicListItem.tsx +34 -0
  34. package/src/components/List/StyledListItem.tsx +82 -0
  35. package/src/components/List/__tests__/BasicListItem.spec.tsx +37 -0
  36. package/src/components/List/__tests__/ListItem.spec.tsx +110 -0
  37. package/src/components/List/__tests__/StyledBasicListItem.spec.tsx +24 -0
  38. package/src/components/List/__tests__/StyledListItem.spec.tsx +48 -0
  39. package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +103 -0
  40. package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +760 -0
  41. package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +105 -0
  42. package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +200 -0
  43. package/src/components/List/index.tsx +14 -0
  44. package/src/components/SectionHeading/index.tsx +1 -1
  45. package/src/components/Select/Footer.tsx +13 -0
  46. package/src/components/Select/MultiSelect/Option.tsx +25 -0
  47. package/src/components/Select/MultiSelect/OptionList.tsx +30 -63
  48. package/src/components/Select/MultiSelect/__tests__/Option.spec.tsx +16 -0
  49. package/src/components/Select/MultiSelect/__tests__/OptionList.spec.tsx +42 -0
  50. package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +70 -0
  51. package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +627 -0
  52. package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +6 -6
  53. package/src/components/Select/MultiSelect/index.tsx +8 -7
  54. package/src/components/Select/SingleSelect/Option.tsx +23 -0
  55. package/src/components/Select/SingleSelect/OptionList.tsx +43 -0
  56. package/src/components/Select/SingleSelect/__tests__/Option.spec.tsx +16 -0
  57. package/src/components/Select/SingleSelect/__tests__/OptionList.spec.tsx +42 -0
  58. package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +56 -0
  59. package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +571 -0
  60. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +1430 -0
  61. package/src/components/Select/SingleSelect/__tests__/index.spec.tsx +89 -0
  62. package/src/components/Select/SingleSelect/index.tsx +89 -0
  63. package/src/components/Select/{MultiSelect/StyledMultiSelect.tsx → StyledSelect.tsx} +1 -1
  64. package/src/components/Select/{MultiSelect/__tests__/StyledMultiSelect.spec.tsx → __tests__/StyledSelect.spec.tsx} +2 -2
  65. package/src/components/Select/{MultiSelect/__tests__/__snapshots__/StyledMultiSelect.spec.tsx.snap → __tests__/__snapshots__/StyledSelect.spec.tsx.snap} +0 -0
  66. package/src/components/Select/helpers.tsx +18 -0
  67. package/src/components/Select/index.tsx +4 -3
  68. package/src/components/Select/{MultiSelect/types.ts → types.ts} +0 -0
  69. package/src/components/Switch/index.tsx +1 -1
  70. package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +2 -2
  71. package/src/components/Toolbar/StyledToolbar.tsx +42 -0
  72. package/src/components/Toolbar/ToolbarGroup.tsx +31 -0
  73. package/src/components/Toolbar/ToolbarItem.tsx +57 -0
  74. package/src/components/Toolbar/__tests__/ToolbarGroup.spec.tsx +32 -0
  75. package/src/components/Toolbar/__tests__/ToolbarItem.spec.tsx +57 -0
  76. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +391 -0
  77. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +355 -0
  78. package/src/components/Toolbar/index.tsx +18 -0
  79. package/src/components/Typography/Text/StyledText.tsx +8 -1
  80. package/src/components/Typography/Text/__tests__/StyledText.spec.tsx +5 -0
  81. package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +110 -0
  82. package/src/components/Typography/Text/index.tsx +9 -2
  83. package/src/index.ts +4 -0
  84. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +83 -3
  85. package/src/theme/components/button.ts +2 -0
  86. package/src/theme/components/card.ts +13 -2
  87. package/src/theme/components/icon.ts +1 -0
  88. package/src/theme/components/list.ts +46 -0
  89. package/src/theme/components/toolbar.ts +27 -0
  90. package/src/theme/components/typography.ts +4 -0
  91. package/src/theme/global/colors.ts +9 -2
  92. package/src/theme/global/space.ts +2 -0
  93. package/src/theme/index.ts +6 -0
  94. package/tsconfig.json +1 -2
  95. package/types/components/Avatar/index.d.ts +1 -1
  96. package/types/components/Button/Button.d.ts +2 -2
  97. package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +1 -1
  98. package/types/components/Button/LoadingIndicator/index.d.ts +1 -1
  99. package/types/components/Button/StyledButton.d.ts +2 -2
  100. package/types/components/Card/DataCard/StyledDataCard.d.ts +16 -0
  101. package/types/components/{Select/MultiSelect/__tests__/StyledMultiSelect.spec.d.ts → Card/DataCard/__tests__/StyledDataCard.spec.d.ts} +0 -0
  102. package/types/components/Card/DataCard/__tests__/index.spec.d.ts +1 -0
  103. package/types/components/Card/DataCard/index.d.ts +22 -0
  104. package/types/components/Card/index.d.ts +7 -3
  105. package/types/components/Checkbox/index.d.ts +1 -1
  106. package/types/components/Collapse/index.d.ts +1 -1
  107. package/types/components/Icon/HeroIcon/index.d.ts +1 -1
  108. package/types/components/Icon/index.d.ts +2 -2
  109. package/types/components/List/BasicListItem.d.ts +43 -0
  110. package/types/components/List/ListItem.d.ts +51 -0
  111. package/types/components/List/StyledBasicListItem.d.ts +29 -0
  112. package/types/components/List/StyledListItem.d.ts +51 -0
  113. package/types/components/List/__tests__/BasicListItem.spec.d.ts +1 -0
  114. package/types/components/List/__tests__/ListItem.spec.d.ts +1 -0
  115. package/types/components/List/__tests__/StyledBasicListItem.spec.d.ts +1 -0
  116. package/types/components/List/__tests__/StyledListItem.spec.d.ts +1 -0
  117. package/types/components/List/index.d.ts +8 -0
  118. package/types/components/SectionHeading/index.d.ts +1 -1
  119. package/types/components/Select/{MultiSelect/Footer.d.ts → Footer.d.ts} +2 -2
  120. package/types/components/Select/MultiSelect/Option.d.ts +6 -0
  121. package/types/components/Select/MultiSelect/OptionList.d.ts +7 -1
  122. package/types/components/Select/MultiSelect/__tests__/Option.spec.d.ts +1 -0
  123. package/types/components/Select/MultiSelect/__tests__/OptionList.spec.d.ts +1 -0
  124. package/types/components/Select/MultiSelect/index.d.ts +4 -4
  125. package/types/components/Select/SingleSelect/Option.d.ts +6 -0
  126. package/types/components/Select/SingleSelect/OptionList.d.ts +9 -0
  127. package/types/components/Select/SingleSelect/__tests__/Option.spec.d.ts +1 -0
  128. package/types/components/Select/SingleSelect/__tests__/OptionList.spec.d.ts +1 -0
  129. package/types/components/Select/SingleSelect/__tests__/index.spec.d.ts +1 -0
  130. package/types/components/Select/SingleSelect/index.d.ts +35 -0
  131. package/types/components/Select/{MultiSelect/StyledMultiSelect.d.ts → StyledSelect.d.ts} +1 -1
  132. package/types/components/Select/__tests__/StyledSelect.spec.d.ts +1 -0
  133. package/types/components/Select/helpers.d.ts +2 -0
  134. package/types/components/Select/index.d.ts +3 -3
  135. package/types/components/Select/{MultiSelect/types.d.ts → types.d.ts} +0 -0
  136. package/types/components/Switch/index.d.ts +1 -1
  137. package/types/components/Toolbar/StyledToolbar.d.ts +22 -0
  138. package/types/components/Toolbar/ToolbarGroup.d.ts +13 -0
  139. package/types/components/Toolbar/ToolbarItem.d.ts +25 -0
  140. package/types/components/Toolbar/__tests__/ToolbarGroup.spec.d.ts +1 -0
  141. package/types/components/Toolbar/__tests__/ToolbarItem.spec.d.ts +1 -0
  142. package/types/components/Toolbar/index.d.ts +11 -0
  143. package/types/components/Typography/Text/StyledText.d.ts +1 -1
  144. package/types/components/Typography/Text/index.d.ts +2 -2
  145. package/types/index.d.ts +3 -1
  146. package/types/theme/components/button.d.ts +2 -0
  147. package/types/theme/components/card.d.ts +10 -0
  148. package/types/theme/components/icon.d.ts +1 -0
  149. package/types/theme/components/list.d.ts +40 -0
  150. package/types/theme/components/toolbar.d.ts +21 -0
  151. package/types/theme/components/typography.d.ts +4 -0
  152. package/types/theme/global/colors.d.ts +5 -0
  153. package/types/theme/global/index.d.ts +5 -0
  154. package/types/theme/global/space.d.ts +1 -0
  155. package/types/theme/index.d.ts +4 -0
  156. package/playground/.detoxrc.json +0 -49
  157. package/playground/.prettierrc.json +0 -8
  158. package/playground/.turbo/turbo-type-check.log +0 -7
  159. package/playground/app.json +0 -9
  160. package/playground/babel.config.js +0 -63
  161. package/playground/e2e/config.json +0 -9
  162. package/playground/e2e/environment.js +0 -23
  163. package/playground/e2e/firstTest.e2e.js +0 -16
  164. package/playground/expoEntry.js +0 -5
  165. package/playground/fonts/be-vietnam-pro-light.ttf +0 -0
  166. package/playground/fonts/be-vietnam-pro-regular.ttf +0 -0
  167. package/playground/fonts/be-vietnam-pro-semibold.ttf +0 -0
  168. package/playground/fonts/hero-icons.ttf +0 -0
  169. package/playground/index.js +0 -7
  170. package/playground/ios/MobileHeroDesignPlayground/AppDelegate.h +0 -9
  171. package/playground/ios/MobileHeroDesignPlayground/AppDelegate.m +0 -75
  172. package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/AppIcon.appiconset/Contents.json +0 -38
  173. package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/Contents.json +0 -6
  174. package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/SplashScreenBackground.imageset/Contents.json +0 -21
  175. package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/SplashScreenBackground.imageset/image.png +0 -0
  176. package/playground/ios/MobileHeroDesignPlayground/Info.plist +0 -85
  177. package/playground/ios/MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h +0 -3
  178. package/playground/ios/MobileHeroDesignPlayground/MobileHeroDesignPlayground.entitlements +0 -8
  179. package/playground/ios/MobileHeroDesignPlayground/SplashScreen.storyboard +0 -40
  180. package/playground/ios/MobileHeroDesignPlayground/Supporting/Expo.plist +0 -16
  181. package/playground/ios/MobileHeroDesignPlayground/main.m +0 -10
  182. package/playground/ios/MobileHeroDesignPlayground/noop-file.swift +0 -4
  183. package/playground/ios/MobileHeroDesignPlayground.xcodeproj/project.pbxproj +0 -515
  184. package/playground/ios/MobileHeroDesignPlayground.xcodeproj/xcshareddata/xcschemes/MobileHeroDesignPlayground.xcscheme +0 -88
  185. package/playground/ios/MobileHeroDesignPlayground.xcworkspace/contents.xcworkspacedata +0 -10
  186. package/playground/ios/MobileHeroDesignPlayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  187. package/playground/ios/Podfile +0 -49
  188. package/playground/ios/Podfile.lock +0 -478
  189. package/playground/ios/Podfile.properties.json +0 -3
  190. package/playground/metro.config.js +0 -24
  191. package/playground/package.json +0 -63
  192. package/playground/src/Alert.tsx +0 -80
  193. package/playground/src/App.tsx +0 -210
  194. package/playground/src/Avatar.tsx +0 -102
  195. package/playground/src/Badge.tsx +0 -187
  196. package/playground/src/BottomNavigation.tsx +0 -72
  197. package/playground/src/BottomSheet.tsx +0 -43
  198. package/playground/src/Button.tsx +0 -170
  199. package/playground/src/Card.tsx +0 -342
  200. package/playground/src/Checkbox.tsx +0 -55
  201. package/playground/src/Collapse.tsx +0 -99
  202. package/playground/src/ContentNavigator.tsx +0 -58
  203. package/playground/src/Divider.tsx +0 -13
  204. package/playground/src/Drawer.tsx +0 -32
  205. package/playground/src/FAB.tsx +0 -66
  206. package/playground/src/Icon.tsx +0 -144
  207. package/playground/src/IconButton.tsx +0 -78
  208. package/playground/src/MultipleThemes.tsx +0 -34
  209. package/playground/src/Progress.tsx +0 -95
  210. package/playground/src/Radio.tsx +0 -25
  211. package/playground/src/SectionHeading.tsx +0 -68
  212. package/playground/src/Select.tsx +0 -32
  213. package/playground/src/Spinner.tsx +0 -19
  214. package/playground/src/Switch.tsx +0 -80
  215. package/playground/src/Tabs.tsx +0 -136
  216. package/playground/src/Tag.tsx +0 -45
  217. package/playground/src/TextInput.tsx +0 -14
  218. package/playground/src/Toast.tsx +0 -114
  219. package/playground/src/Typography.tsx +0 -23
  220. package/playground/tsconfig.json +0 -21
  221. package/src/components/Select/MultiSelect/Footer.tsx +0 -15
@@ -1,515 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
11
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
12
- 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
13
- 16B4C2D54D6B45DDB105B95E /* be-vietnam-pro-light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EF5740945E0E4E62BD4D1ABE /* be-vietnam-pro-light.ttf */; };
14
- 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
15
- 4FBCD585B19746B8BEAD3806 /* hero-icons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C1578E6D16D24FE8B2967E90 /* hero-icons.ttf */; };
16
- 80F6D4E5E039401C80ADE5E0 /* be-vietnam-pro-semibold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5E37DE72701E4059BA799B5E /* be-vietnam-pro-semibold.ttf */; };
17
- 90C0D473828041BD9EEC3099 /* be-vietnam-pro-regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4A26D551CEEF41248FB699AB /* be-vietnam-pro-regular.ttf */; };
18
- B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */; };
19
- BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
20
- F6E015FA58E842B89B8A19B8 /* noop-file.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2F56576D7E14C1DB9FE539D /* noop-file.swift */; };
21
- /* End PBXBuildFile section */
22
-
23
- /* Begin PBXFileReference section */
24
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
25
- 13B07F961A680F5B00A75B9A /* MobileHeroDesignPlayground.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MobileHeroDesignPlayground.app; sourceTree = BUILT_PRODUCTS_DIR; };
26
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = MobileHeroDesignPlayground/AppDelegate.h; sourceTree = "<group>"; };
27
- 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = MobileHeroDesignPlayground/AppDelegate.m; sourceTree = "<group>"; };
28
- 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = MobileHeroDesignPlayground/Images.xcassets; sourceTree = "<group>"; };
29
- 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = MobileHeroDesignPlayground/Info.plist; sourceTree = "<group>"; };
30
- 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = MobileHeroDesignPlayground/main.m; sourceTree = "<group>"; };
31
- 4A26D551CEEF41248FB699AB /* be-vietnam-pro-regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "be-vietnam-pro-regular.ttf"; path = "../../assets/fonts/be-vietnam-pro-regular.ttf"; sourceTree = "<group>"; };
32
- 4B0848E3AE024522B6BBC6F5 /* MobileHeroDesignPlayground.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; path = MobileHeroDesignPlayground.xcodeproj; sourceTree = "<group>"; };
33
- 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-MobileHeroDesignPlayground.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MobileHeroDesignPlayground.a"; sourceTree = BUILT_PRODUCTS_DIR; };
34
- 5E37DE72701E4059BA799B5E /* be-vietnam-pro-semibold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "be-vietnam-pro-semibold.ttf"; path = "../../assets/fonts/be-vietnam-pro-semibold.ttf"; sourceTree = "<group>"; };
35
- 6C2E3173556A471DD304B334 /* Pods-MobileHeroDesignPlayground.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MobileHeroDesignPlayground.debug.xcconfig"; path = "Target Support Files/Pods-MobileHeroDesignPlayground/Pods-MobileHeroDesignPlayground.debug.xcconfig"; sourceTree = "<group>"; };
36
- 7A4D352CD337FB3A3BF06240 /* Pods-MobileHeroDesignPlayground.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MobileHeroDesignPlayground.release.xcconfig"; path = "Target Support Files/Pods-MobileHeroDesignPlayground/Pods-MobileHeroDesignPlayground.release.xcconfig"; sourceTree = "<group>"; };
37
- AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = MobileHeroDesignPlayground/SplashScreen.storyboard; sourceTree = "<group>"; };
38
- B2F56576D7E14C1DB9FE539D /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "MobileHeroDesignPlayground/noop-file.swift"; sourceTree = "<group>"; };
39
- BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
40
- C1578E6D16D24FE8B2967E90 /* hero-icons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "hero-icons.ttf"; path = "../../assets/fonts/hero-icons.ttf"; sourceTree = "<group>"; };
41
- DE5E9E761E114078A9DA4349 /* MobileHeroDesignPlayground-Bridging-Header.h */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.c.h; name = "MobileHeroDesignPlayground-Bridging-Header.h"; path = "MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h"; sourceTree = "<group>"; };
42
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
43
- EF5740945E0E4E62BD4D1ABE /* be-vietnam-pro-light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "be-vietnam-pro-light.ttf"; path = "../../assets/fonts/be-vietnam-pro-light.ttf"; sourceTree = "<group>"; };
44
- FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-MobileHeroDesignPlayground/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
45
- /* End PBXFileReference section */
46
-
47
- /* Begin PBXFrameworksBuildPhase section */
48
- 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
49
- isa = PBXFrameworksBuildPhase;
50
- buildActionMask = 2147483647;
51
- files = (
52
- );
53
- runOnlyForDeploymentPostprocessing = 0;
54
- };
55
- /* End PBXFrameworksBuildPhase section */
56
-
57
- /* Begin PBXGroup section */
58
- 13B07FAE1A68108700A75B9A /* MobileHeroDesignPlayground */ = {
59
- isa = PBXGroup;
60
- children = (
61
- BB2F792B24A3F905000567C9 /* Supporting */,
62
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
63
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
64
- 13B07FB01A68108700A75B9A /* AppDelegate.m */,
65
- 13B07FB51A68108700A75B9A /* Images.xcassets */,
66
- 13B07FB61A68108700A75B9A /* Info.plist */,
67
- 13B07FB71A68108700A75B9A /* main.m */,
68
- AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
69
- B2F56576D7E14C1DB9FE539D /* noop-file.swift */,
70
- DE5E9E761E114078A9DA4349 /* MobileHeroDesignPlayground-Bridging-Header.h */,
71
- );
72
- name = MobileHeroDesignPlayground;
73
- sourceTree = "<group>";
74
- };
75
- 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
76
- isa = PBXGroup;
77
- children = (
78
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
79
- 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-MobileHeroDesignPlayground.a */,
80
- );
81
- name = Frameworks;
82
- sourceTree = "<group>";
83
- };
84
- 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
85
- isa = PBXGroup;
86
- children = (
87
- 4B0848E3AE024522B6BBC6F5 /* MobileHeroDesignPlayground.xcodeproj */,
88
- );
89
- name = Libraries;
90
- sourceTree = "<group>";
91
- };
92
- 83CBB9F61A601CBA00E9B192 = {
93
- isa = PBXGroup;
94
- children = (
95
- 13B07FAE1A68108700A75B9A /* MobileHeroDesignPlayground */,
96
- 832341AE1AAA6A7D00B99B32 /* Libraries */,
97
- 83CBBA001A601CBA00E9B192 /* Products */,
98
- 2D16E6871FA4F8E400B85C8A /* Frameworks */,
99
- D65327D7A22EEC0BE12398D9 /* Pods */,
100
- D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */,
101
- E24D20DB61724286BEF501AD /* Resources */,
102
- );
103
- indentWidth = 2;
104
- sourceTree = "<group>";
105
- tabWidth = 2;
106
- usesTabs = 0;
107
- };
108
- 83CBBA001A601CBA00E9B192 /* Products */ = {
109
- isa = PBXGroup;
110
- children = (
111
- 13B07F961A680F5B00A75B9A /* MobileHeroDesignPlayground.app */,
112
- );
113
- name = Products;
114
- sourceTree = "<group>";
115
- };
116
- 92DBD88DE9BF7D494EA9DA96 /* MobileHeroDesignPlayground */ = {
117
- isa = PBXGroup;
118
- children = (
119
- FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */,
120
- );
121
- name = MobileHeroDesignPlayground;
122
- sourceTree = "<group>";
123
- };
124
- BB2F792B24A3F905000567C9 /* Supporting */ = {
125
- isa = PBXGroup;
126
- children = (
127
- BB2F792C24A3F905000567C9 /* Expo.plist */,
128
- );
129
- name = Supporting;
130
- path = MobileHeroDesignPlayground/Supporting;
131
- sourceTree = "<group>";
132
- };
133
- D65327D7A22EEC0BE12398D9 /* Pods */ = {
134
- isa = PBXGroup;
135
- children = (
136
- 6C2E3173556A471DD304B334 /* Pods-MobileHeroDesignPlayground.debug.xcconfig */,
137
- 7A4D352CD337FB3A3BF06240 /* Pods-MobileHeroDesignPlayground.release.xcconfig */,
138
- );
139
- path = Pods;
140
- sourceTree = "<group>";
141
- };
142
- D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */ = {
143
- isa = PBXGroup;
144
- children = (
145
- 92DBD88DE9BF7D494EA9DA96 /* MobileHeroDesignPlayground */,
146
- );
147
- name = ExpoModulesProviders;
148
- sourceTree = "<group>";
149
- };
150
- E24D20DB61724286BEF501AD /* Resources */ = {
151
- isa = PBXGroup;
152
- children = (
153
- EF5740945E0E4E62BD4D1ABE /* be-vietnam-pro-light.ttf */,
154
- 4A26D551CEEF41248FB699AB /* be-vietnam-pro-regular.ttf */,
155
- 5E37DE72701E4059BA799B5E /* be-vietnam-pro-semibold.ttf */,
156
- C1578E6D16D24FE8B2967E90 /* hero-icons.ttf */,
157
- );
158
- name = Resources;
159
- sourceTree = "<group>";
160
- };
161
- E607AD9C28B66CCF005FDB5A /* Products */ = {
162
- isa = PBXGroup;
163
- children = (
164
- );
165
- name = Products;
166
- sourceTree = "<group>";
167
- };
168
- /* End PBXGroup section */
169
-
170
- /* Begin PBXNativeTarget section */
171
- 13B07F861A680F5B00A75B9A /* MobileHeroDesignPlayground */ = {
172
- isa = PBXNativeTarget;
173
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MobileHeroDesignPlayground" */;
174
- buildPhases = (
175
- 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
176
- 13B07F871A680F5B00A75B9A /* Sources */,
177
- 13B07F8C1A680F5B00A75B9A /* Frameworks */,
178
- 13B07F8E1A680F5B00A75B9A /* Resources */,
179
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
180
- 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
181
- );
182
- buildRules = (
183
- );
184
- dependencies = (
185
- );
186
- name = MobileHeroDesignPlayground;
187
- productName = MobileHeroDesignPlayground;
188
- productReference = 13B07F961A680F5B00A75B9A /* MobileHeroDesignPlayground.app */;
189
- productType = "com.apple.product-type.application";
190
- };
191
- /* End PBXNativeTarget section */
192
-
193
- /* Begin PBXProject section */
194
- 83CBB9F71A601CBA00E9B192 /* Project object */ = {
195
- isa = PBXProject;
196
- attributes = {
197
- LastUpgradeCheck = 1130;
198
- TargetAttributes = {
199
- 13B07F861A680F5B00A75B9A = {
200
- LastSwiftMigration = 1250;
201
- };
202
- };
203
- };
204
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MobileHeroDesignPlayground" */;
205
- compatibilityVersion = "Xcode 3.2";
206
- developmentRegion = en;
207
- hasScannedForEncodings = 0;
208
- knownRegions = (
209
- en,
210
- Base,
211
- );
212
- mainGroup = 83CBB9F61A601CBA00E9B192;
213
- productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
214
- projectDirPath = "";
215
- projectReferences = (
216
- {
217
- ProductGroup = E607AD9C28B66CCF005FDB5A /* Products */;
218
- ProjectRef = 4B0848E3AE024522B6BBC6F5 /* MobileHeroDesignPlayground.xcodeproj */;
219
- },
220
- );
221
- projectRoot = "";
222
- targets = (
223
- 13B07F861A680F5B00A75B9A /* MobileHeroDesignPlayground */,
224
- );
225
- };
226
- /* End PBXProject section */
227
-
228
- /* Begin PBXResourcesBuildPhase section */
229
- 13B07F8E1A680F5B00A75B9A /* Resources */ = {
230
- isa = PBXResourcesBuildPhase;
231
- buildActionMask = 2147483647;
232
- files = (
233
- BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
234
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
235
- 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
236
- 16B4C2D54D6B45DDB105B95E /* be-vietnam-pro-light.ttf in Resources */,
237
- 90C0D473828041BD9EEC3099 /* be-vietnam-pro-regular.ttf in Resources */,
238
- 80F6D4E5E039401C80ADE5E0 /* be-vietnam-pro-semibold.ttf in Resources */,
239
- 4FBCD585B19746B8BEAD3806 /* hero-icons.ttf in Resources */,
240
- );
241
- runOnlyForDeploymentPostprocessing = 0;
242
- };
243
- /* End PBXResourcesBuildPhase section */
244
-
245
- /* Begin PBXShellScriptBuildPhase section */
246
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
247
- isa = PBXShellScriptBuildPhase;
248
- buildActionMask = 2147483647;
249
- files = (
250
- );
251
- inputPaths = (
252
- );
253
- name = "Bundle React Native code and images";
254
- outputPaths = (
255
- );
256
- runOnlyForDeploymentPostprocessing = 0;
257
- shellPath = /bin/sh;
258
- shellScript = "export NODE_BINARY=node\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\n`node --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n";
259
- };
260
- 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
261
- isa = PBXShellScriptBuildPhase;
262
- buildActionMask = 2147483647;
263
- files = (
264
- );
265
- inputFileListPaths = (
266
- );
267
- inputPaths = (
268
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
269
- "${PODS_ROOT}/Manifest.lock",
270
- );
271
- name = "[CP] Check Pods Manifest.lock";
272
- outputFileListPaths = (
273
- );
274
- outputPaths = (
275
- "$(DERIVED_FILE_DIR)/Pods-MobileHeroDesignPlayground-checkManifestLockResult.txt",
276
- );
277
- runOnlyForDeploymentPostprocessing = 0;
278
- shellPath = /bin/sh;
279
- 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";
280
- showEnvVarsInLog = 0;
281
- };
282
- 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
283
- isa = PBXShellScriptBuildPhase;
284
- buildActionMask = 2147483647;
285
- files = (
286
- );
287
- inputPaths = (
288
- "${PODS_ROOT}/Target Support Files/Pods-MobileHeroDesignPlayground/Pods-MobileHeroDesignPlayground-resources.sh",
289
- "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
290
- "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
291
- );
292
- name = "[CP] Copy Pods Resources";
293
- outputPaths = (
294
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
295
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
296
- );
297
- runOnlyForDeploymentPostprocessing = 0;
298
- shellPath = /bin/sh;
299
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MobileHeroDesignPlayground/Pods-MobileHeroDesignPlayground-resources.sh\"\n";
300
- showEnvVarsInLog = 0;
301
- };
302
- /* End PBXShellScriptBuildPhase section */
303
-
304
- /* Begin PBXSourcesBuildPhase section */
305
- 13B07F871A680F5B00A75B9A /* Sources */ = {
306
- isa = PBXSourcesBuildPhase;
307
- buildActionMask = 2147483647;
308
- files = (
309
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
310
- 13B07FC11A68108700A75B9A /* main.m in Sources */,
311
- B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */,
312
- F6E015FA58E842B89B8A19B8 /* noop-file.swift in Sources */,
313
- );
314
- runOnlyForDeploymentPostprocessing = 0;
315
- };
316
- /* End PBXSourcesBuildPhase section */
317
-
318
- /* Begin XCBuildConfiguration section */
319
- 13B07F941A680F5B00A75B9A /* Debug */ = {
320
- isa = XCBuildConfiguration;
321
- baseConfigurationReference = 6C2E3173556A471DD304B334 /* Pods-MobileHeroDesignPlayground.debug.xcconfig */;
322
- buildSettings = {
323
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
324
- CLANG_ENABLE_MODULES = YES;
325
- CODE_SIGN_ENTITLEMENTS = MobileHeroDesignPlayground/MobileHeroDesignPlayground.entitlements;
326
- CURRENT_PROJECT_VERSION = 1;
327
- ENABLE_BITCODE = NO;
328
- GCC_PREPROCESSOR_DEFINITIONS = (
329
- "$(inherited)",
330
- "FB_SONARKIT_ENABLED=1",
331
- );
332
- HEADER_SEARCH_PATHS = (
333
- "$(inherited)",
334
- "$(SRCROOT)/MobileHeroDesignPlayground/**",
335
- );
336
- INFOPLIST_FILE = MobileHeroDesignPlayground/Info.plist;
337
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
338
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
339
- OTHER_LDFLAGS = (
340
- "$(inherited)",
341
- "-ObjC",
342
- "-lc++",
343
- );
344
- PRODUCT_BUNDLE_IDENTIFIER = "com.thinkei.Mobile-Hero-Design-Playground";
345
- PRODUCT_NAME = MobileHeroDesignPlayground;
346
- SWIFT_OBJC_BRIDGING_HEADER = "MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h";
347
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
348
- SWIFT_VERSION = 5.0;
349
- TARGETED_DEVICE_FAMILY = 1;
350
- VERSIONING_SYSTEM = "apple-generic";
351
- };
352
- name = Debug;
353
- };
354
- 13B07F951A680F5B00A75B9A /* Release */ = {
355
- isa = XCBuildConfiguration;
356
- baseConfigurationReference = 7A4D352CD337FB3A3BF06240 /* Pods-MobileHeroDesignPlayground.release.xcconfig */;
357
- buildSettings = {
358
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
359
- CLANG_ENABLE_MODULES = YES;
360
- CODE_SIGN_ENTITLEMENTS = MobileHeroDesignPlayground/MobileHeroDesignPlayground.entitlements;
361
- CURRENT_PROJECT_VERSION = 1;
362
- DEVELOPMENT_TEAM = AC43L36827;
363
- HEADER_SEARCH_PATHS = (
364
- "$(inherited)",
365
- "$(SRCROOT)/MobileHeroDesignPlayground/**",
366
- );
367
- INFOPLIST_FILE = MobileHeroDesignPlayground/Info.plist;
368
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
369
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
370
- OTHER_LDFLAGS = (
371
- "$(inherited)",
372
- "-ObjC",
373
- "-lc++",
374
- );
375
- PRODUCT_BUNDLE_IDENTIFIER = "com.thinkei.Mobile-Hero-Design-Playground";
376
- PRODUCT_NAME = MobileHeroDesignPlayground;
377
- SWIFT_OBJC_BRIDGING_HEADER = "MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h";
378
- SWIFT_VERSION = 5.0;
379
- TARGETED_DEVICE_FAMILY = 1;
380
- VERSIONING_SYSTEM = "apple-generic";
381
- };
382
- name = Release;
383
- };
384
- 83CBBA201A601CBA00E9B192 /* Debug */ = {
385
- isa = XCBuildConfiguration;
386
- buildSettings = {
387
- ALWAYS_SEARCH_USER_PATHS = NO;
388
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
389
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
390
- CLANG_CXX_LIBRARY = "libc++";
391
- CLANG_ENABLE_MODULES = YES;
392
- CLANG_ENABLE_OBJC_ARC = YES;
393
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
394
- CLANG_WARN_BOOL_CONVERSION = YES;
395
- CLANG_WARN_COMMA = YES;
396
- CLANG_WARN_CONSTANT_CONVERSION = YES;
397
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
398
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
399
- CLANG_WARN_EMPTY_BODY = YES;
400
- CLANG_WARN_ENUM_CONVERSION = YES;
401
- CLANG_WARN_INFINITE_RECURSION = YES;
402
- CLANG_WARN_INT_CONVERSION = YES;
403
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
404
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
405
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
406
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
407
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
408
- CLANG_WARN_STRICT_PROTOTYPES = YES;
409
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
410
- CLANG_WARN_UNREACHABLE_CODE = YES;
411
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
412
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
413
- COPY_PHASE_STRIP = NO;
414
- ENABLE_STRICT_OBJC_MSGSEND = YES;
415
- ENABLE_TESTABILITY = YES;
416
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
417
- GCC_C_LANGUAGE_STANDARD = gnu99;
418
- GCC_DYNAMIC_NO_PIC = NO;
419
- GCC_NO_COMMON_BLOCKS = YES;
420
- GCC_OPTIMIZATION_LEVEL = 0;
421
- GCC_PREPROCESSOR_DEFINITIONS = (
422
- "DEBUG=1",
423
- "$(inherited)",
424
- );
425
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
426
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
427
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
428
- GCC_WARN_UNDECLARED_SELECTOR = YES;
429
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
430
- GCC_WARN_UNUSED_FUNCTION = YES;
431
- GCC_WARN_UNUSED_VARIABLE = YES;
432
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
433
- LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
434
- LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
435
- MTL_ENABLE_DEBUG_INFO = YES;
436
- ONLY_ACTIVE_ARCH = YES;
437
- SDKROOT = iphoneos;
438
- };
439
- name = Debug;
440
- };
441
- 83CBBA211A601CBA00E9B192 /* Release */ = {
442
- isa = XCBuildConfiguration;
443
- buildSettings = {
444
- ALWAYS_SEARCH_USER_PATHS = NO;
445
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
446
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
447
- CLANG_CXX_LIBRARY = "libc++";
448
- CLANG_ENABLE_MODULES = YES;
449
- CLANG_ENABLE_OBJC_ARC = YES;
450
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
451
- CLANG_WARN_BOOL_CONVERSION = YES;
452
- CLANG_WARN_COMMA = YES;
453
- CLANG_WARN_CONSTANT_CONVERSION = YES;
454
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
455
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
456
- CLANG_WARN_EMPTY_BODY = YES;
457
- CLANG_WARN_ENUM_CONVERSION = YES;
458
- CLANG_WARN_INFINITE_RECURSION = YES;
459
- CLANG_WARN_INT_CONVERSION = YES;
460
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
461
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
462
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
463
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
464
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
465
- CLANG_WARN_STRICT_PROTOTYPES = YES;
466
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
467
- CLANG_WARN_UNREACHABLE_CODE = YES;
468
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
469
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
470
- COPY_PHASE_STRIP = YES;
471
- ENABLE_NS_ASSERTIONS = NO;
472
- ENABLE_STRICT_OBJC_MSGSEND = YES;
473
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
474
- GCC_C_LANGUAGE_STANDARD = gnu99;
475
- GCC_NO_COMMON_BLOCKS = YES;
476
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
477
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
478
- GCC_WARN_UNDECLARED_SELECTOR = YES;
479
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
480
- GCC_WARN_UNUSED_FUNCTION = YES;
481
- GCC_WARN_UNUSED_VARIABLE = YES;
482
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
483
- LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
484
- LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
485
- MTL_ENABLE_DEBUG_INFO = NO;
486
- SDKROOT = iphoneos;
487
- VALIDATE_PRODUCT = YES;
488
- };
489
- name = Release;
490
- };
491
- /* End XCBuildConfiguration section */
492
-
493
- /* Begin XCConfigurationList section */
494
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MobileHeroDesignPlayground" */ = {
495
- isa = XCConfigurationList;
496
- buildConfigurations = (
497
- 13B07F941A680F5B00A75B9A /* Debug */,
498
- 13B07F951A680F5B00A75B9A /* Release */,
499
- );
500
- defaultConfigurationIsVisible = 0;
501
- defaultConfigurationName = Release;
502
- };
503
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MobileHeroDesignPlayground" */ = {
504
- isa = XCConfigurationList;
505
- buildConfigurations = (
506
- 83CBBA201A601CBA00E9B192 /* Debug */,
507
- 83CBBA211A601CBA00E9B192 /* Release */,
508
- );
509
- defaultConfigurationIsVisible = 0;
510
- defaultConfigurationName = Release;
511
- };
512
- /* End XCConfigurationList section */
513
- };
514
- rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
515
- }
@@ -1,88 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Scheme
3
- LastUpgradeVersion = "1130"
4
- version = "1.3">
5
- <BuildAction
6
- parallelizeBuildables = "YES"
7
- buildImplicitDependencies = "YES">
8
- <BuildActionEntries>
9
- <BuildActionEntry
10
- buildForTesting = "YES"
11
- buildForRunning = "YES"
12
- buildForProfiling = "YES"
13
- buildForArchiving = "YES"
14
- buildForAnalyzing = "YES">
15
- <BuildableReference
16
- BuildableIdentifier = "primary"
17
- BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
18
- BuildableName = "MobileHeroDesignPlayground.app"
19
- BlueprintName = "MobileHeroDesignPlayground"
20
- ReferencedContainer = "container:MobileHeroDesignPlayground.xcodeproj">
21
- </BuildableReference>
22
- </BuildActionEntry>
23
- </BuildActionEntries>
24
- </BuildAction>
25
- <TestAction
26
- buildConfiguration = "Debug"
27
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
- shouldUseLaunchSchemeArgsEnv = "YES">
30
- <Testables>
31
- <TestableReference
32
- skipped = "NO">
33
- <BuildableReference
34
- BuildableIdentifier = "primary"
35
- BlueprintIdentifier = "00E356ED1AD99517003FC87E"
36
- BuildableName = "MobileHeroDesignPlaygroundTests.xctest"
37
- BlueprintName = "MobileHeroDesignPlaygroundTests"
38
- ReferencedContainer = "container:MobileHeroDesignPlayground.xcodeproj">
39
- </BuildableReference>
40
- </TestableReference>
41
- </Testables>
42
- </TestAction>
43
- <LaunchAction
44
- buildConfiguration = "Release"
45
- selectedDebuggerIdentifier = ""
46
- selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
47
- launchStyle = "0"
48
- useCustomWorkingDirectory = "NO"
49
- ignoresPersistentStateOnLaunch = "NO"
50
- debugDocumentVersioning = "YES"
51
- debugServiceExtension = "internal"
52
- allowLocationSimulation = "YES">
53
- <BuildableProductRunnable
54
- runnableDebuggingMode = "0">
55
- <BuildableReference
56
- BuildableIdentifier = "primary"
57
- BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
58
- BuildableName = "MobileHeroDesignPlayground.app"
59
- BlueprintName = "MobileHeroDesignPlayground"
60
- ReferencedContainer = "container:MobileHeroDesignPlayground.xcodeproj">
61
- </BuildableReference>
62
- </BuildableProductRunnable>
63
- </LaunchAction>
64
- <ProfileAction
65
- buildConfiguration = "Release"
66
- shouldUseLaunchSchemeArgsEnv = "YES"
67
- savedToolIdentifier = ""
68
- useCustomWorkingDirectory = "NO"
69
- debugDocumentVersioning = "YES">
70
- <BuildableProductRunnable
71
- runnableDebuggingMode = "0">
72
- <BuildableReference
73
- BuildableIdentifier = "primary"
74
- BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
75
- BuildableName = "MobileHeroDesignPlayground.app"
76
- BlueprintName = "MobileHeroDesignPlayground"
77
- ReferencedContainer = "container:MobileHeroDesignPlayground.xcodeproj">
78
- </BuildableReference>
79
- </BuildableProductRunnable>
80
- </ProfileAction>
81
- <AnalyzeAction
82
- buildConfiguration = "Debug">
83
- </AnalyzeAction>
84
- <ArchiveAction
85
- buildConfiguration = "Release"
86
- revealArchiveInOrganizer = "YES">
87
- </ArchiveAction>
88
- </Scheme>
@@ -1,10 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Workspace
3
- version = "1.0">
4
- <FileRef
5
- location = "group:MobileHeroDesignPlayground.xcodeproj">
6
- </FileRef>
7
- <FileRef
8
- location = "group:Pods/Pods.xcodeproj">
9
- </FileRef>
10
- </Workspace>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>IDEDidComputeMac32BitWarning</key>
6
- <true/>
7
- </dict>
8
- </plist>
@@ -1,49 +0,0 @@
1
- require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
2
- require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
3
- require File.join(File.dirname(`node --print "require.resolve('@react-native-community/cli-platform-ios/package.json')"`), "native_modules")
4
-
5
- platform :ios, '12.0'
6
-
7
- require 'json'
8
- podfile_properties = JSON.parse(File.read('./Podfile.properties.json')) rescue {}
9
-
10
- target 'MobileHeroDesignPlayground' do
11
- use_expo_modules!
12
- config = use_native_modules!
13
-
14
- use_react_native!(
15
- :path => config[:reactNativePath],
16
- :hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes'
17
- )
18
-
19
- # Uncomment to opt-in to using Flipper
20
- #
21
- # if !ENV['CI']
22
- # use_flipper!('Flipper' => '0.75.1', 'Flipper-Folly' => '2.5.3', 'Flipper-RSocket' => '1.3.1')
23
- # end
24
-
25
- post_install do |installer|
26
- react_native_post_install(installer)
27
-
28
- # Workaround `Cycle inside FBReactNativeSpec` error for react-native 0.64
29
- # Reference: https://github.com/software-mansion/react-native-screens/issues/842#issuecomment-812543933
30
- installer.pods_project.targets.each do |target|
31
- if (target.name&.eql?('FBReactNativeSpec'))
32
- target.build_phases.each do |build_phase|
33
- if (build_phase.respond_to?(:name) && build_phase.name.eql?('[CP-User] Generate Specs'))
34
- target.build_phases.move(build_phase, 0)
35
- end
36
- end
37
- end
38
- end
39
- end
40
-
41
- post_integrate do |installer|
42
- begin
43
- expo_patch_react_imports!(installer)
44
- rescue => e
45
- Pod::UI.warn e
46
- end
47
- end
48
-
49
- end