react-native-acoustic-connect-beta 18.0.7 → 18.0.8

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 (327) hide show
  1. package/Examples/SampleUI/.bundle/config +2 -0
  2. package/Examples/SampleUI/.eslintrc.js +4 -0
  3. package/Examples/SampleUI/.prettierrc.js +7 -0
  4. package/Examples/SampleUI/.watchmanconfig +1 -0
  5. package/Examples/SampleUI/App.js +1 -0
  6. package/Examples/SampleUI/Gemfile +10 -0
  7. package/Examples/SampleUI/Gemfile.lock +121 -0
  8. package/Examples/SampleUI/README.md +79 -0
  9. package/Examples/SampleUI/__tests__/App.test.tsx +17 -0
  10. package/Examples/SampleUI/android/app/build.gradle +124 -0
  11. package/Examples/SampleUI/android/app/debug.keystore +0 -0
  12. package/Examples/SampleUI/android/app/proguard-rules.pro +10 -0
  13. package/Examples/SampleUI/android/app/src/debug/AndroidManifest.xml +9 -0
  14. package/Examples/SampleUI/android/app/src/main/AndroidManifest.xml +26 -0
  15. package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainActivity.kt +23 -0
  16. package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainApplication.kt +53 -0
  17. package/Examples/SampleUI/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  18. package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  19. package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  20. package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  21. package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  22. package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  23. package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  24. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  25. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  26. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  27. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  28. package/Examples/SampleUI/android/app/src/main/res/values/strings.xml +3 -0
  29. package/Examples/SampleUI/android/app/src/main/res/values/styles.xml +9 -0
  30. package/Examples/SampleUI/android/build.gradle +21 -0
  31. package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  32. package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  33. package/Examples/SampleUI/android/gradle.properties +39 -0
  34. package/Examples/SampleUI/android/gradlew +252 -0
  35. package/Examples/SampleUI/android/gradlew.bat +94 -0
  36. package/Examples/SampleUI/android/settings.gradle +21 -0
  37. package/Examples/SampleUI/app.json +51 -0
  38. package/Examples/SampleUI/assets/fonts/Abel-Regular.ttf +0 -0
  39. package/Examples/SampleUI/assets/fonts/NotoSans-Regular.ttf +0 -0
  40. package/Examples/SampleUI/assets/images/android-icon.png +0 -0
  41. package/Examples/SampleUI/assets/images/artist-1.jpg +0 -0
  42. package/Examples/SampleUI/assets/images/artist-2.jpg +0 -0
  43. package/Examples/SampleUI/assets/images/avatar.png +0 -0
  44. package/Examples/SampleUI/assets/images/beach.jpg +0 -0
  45. package/Examples/SampleUI/assets/images/bridge.jpg +0 -0
  46. package/Examples/SampleUI/assets/images/chameleon.jpg +0 -0
  47. package/Examples/SampleUI/assets/images/city.jpg +0 -0
  48. package/Examples/SampleUI/assets/images/email-icon.png +0 -0
  49. package/Examples/SampleUI/assets/images/favorite.png +0 -0
  50. package/Examples/SampleUI/assets/images/forest.jpg +0 -0
  51. package/Examples/SampleUI/assets/images/paper-icon.png +0 -0
  52. package/Examples/SampleUI/assets/images/players-2.jpg +0 -0
  53. package/Examples/SampleUI/assets/images/players.jpg +0 -0
  54. package/Examples/SampleUI/assets/images/restaurant-1.jpg +0 -0
  55. package/Examples/SampleUI/assets/images/restaurant-2.jpg +0 -0
  56. package/Examples/SampleUI/assets/images/song-1.jpg +0 -0
  57. package/Examples/SampleUI/assets/images/song-2.jpg +0 -0
  58. package/Examples/SampleUI/assets/images/splash.png +0 -0
  59. package/Examples/SampleUI/assets/images/strawberries.jpg +0 -0
  60. package/Examples/SampleUI/assets/images/wrecked-ship.jpg +0 -0
  61. package/Examples/SampleUI/assets/styles/fonts.css +47 -0
  62. package/Examples/SampleUI/babel.config.js +22 -0
  63. package/Examples/SampleUI/index.js +9 -0
  64. package/Examples/SampleUI/ios/.xcode.env +11 -0
  65. package/Examples/SampleUI/ios/Podfile +58 -0
  66. package/Examples/SampleUI/ios/SampleUI/AppDelegate.h +7 -0
  67. package/Examples/SampleUI/ios/SampleUI/AppDelegate.mm +31 -0
  68. package/Examples/SampleUI/ios/SampleUI/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  69. package/Examples/SampleUI/ios/SampleUI/Images.xcassets/Contents.json +6 -0
  70. package/Examples/SampleUI/ios/SampleUI/Info.plist +52 -0
  71. package/Examples/SampleUI/ios/SampleUI/LaunchScreen.storyboard +47 -0
  72. package/Examples/SampleUI/ios/SampleUI/PrivacyInfo.xcprivacy +48 -0
  73. package/Examples/SampleUI/ios/SampleUI/main.m +10 -0
  74. package/Examples/SampleUI/ios/SampleUI.xcodeproj/project.pbxproj +785 -0
  75. package/Examples/SampleUI/ios/SampleUI.xcodeproj/xcshareddata/xcschemes/SampleUI.xcscheme +88 -0
  76. package/Examples/SampleUI/ios/SampleUI.xcworkspace/contents.xcworkspacedata +10 -0
  77. package/Examples/SampleUI/ios/SampleUITests/Info.plist +24 -0
  78. package/Examples/SampleUI/ios/SampleUITests/SampleUITests.m +66 -0
  79. package/Examples/SampleUI/jest.config.js +3 -0
  80. package/Examples/SampleUI/metro.config.js +53 -0
  81. package/Examples/SampleUI/package-lock.json +17033 -0
  82. package/Examples/SampleUI/package.json +62 -0
  83. package/Examples/SampleUI/src/DrawerItems.tsx +322 -0
  84. package/Examples/SampleUI/src/ExampleList.tsx +175 -0
  85. package/Examples/SampleUI/src/Examples/ActivityIndicatorExample.tsx +73 -0
  86. package/Examples/SampleUI/src/Examples/AnimatedFABExample/AnimatedFABExample.tsx +220 -0
  87. package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFAB.tsx +70 -0
  88. package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFABControls.tsx +146 -0
  89. package/Examples/SampleUI/src/Examples/AnimatedFABExample/index.ts +1 -0
  90. package/Examples/SampleUI/src/Examples/AppbarExample.tsx +263 -0
  91. package/Examples/SampleUI/src/Examples/AvatarExample.tsx +76 -0
  92. package/Examples/SampleUI/src/Examples/BadgeExample.tsx +97 -0
  93. package/Examples/SampleUI/src/Examples/BannerExample.tsx +152 -0
  94. package/Examples/SampleUI/src/Examples/BottomNavigationBarExample.tsx +94 -0
  95. package/Examples/SampleUI/src/Examples/BottomNavigationExample.tsx +205 -0
  96. package/Examples/SampleUI/src/Examples/ButtonExample.tsx +405 -0
  97. package/Examples/SampleUI/src/Examples/CardExample.tsx +245 -0
  98. package/Examples/SampleUI/src/Examples/CheckboxExample.tsx +87 -0
  99. package/Examples/SampleUI/src/Examples/CheckboxItemExample.tsx +72 -0
  100. package/Examples/SampleUI/src/Examples/ChipExample.tsx +432 -0
  101. package/Examples/SampleUI/src/Examples/DataTableExample.tsx +128 -0
  102. package/Examples/SampleUI/src/Examples/DialogExample.tsx +131 -0
  103. package/Examples/SampleUI/src/Examples/Dialogs/DialogTextComponent.tsx +31 -0
  104. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithCustomColors.tsx +57 -0
  105. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithDismissableBackButton.tsx +38 -0
  106. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithIcon.tsx +42 -0
  107. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLoadingIndicator.tsx +48 -0
  108. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLongText.tsx +81 -0
  109. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithRadioBtns.tsx +111 -0
  110. package/Examples/SampleUI/src/Examples/Dialogs/UndismissableDialog.tsx +30 -0
  111. package/Examples/SampleUI/src/Examples/Dialogs/index.tsx +7 -0
  112. package/Examples/SampleUI/src/Examples/DividerExample.tsx +30 -0
  113. package/Examples/SampleUI/src/Examples/FABExample.tsx +226 -0
  114. package/Examples/SampleUI/src/Examples/IconButtonExample.tsx +230 -0
  115. package/Examples/SampleUI/src/Examples/IconExample.tsx +50 -0
  116. package/Examples/SampleUI/src/Examples/ListAccordionExample.tsx +65 -0
  117. package/Examples/SampleUI/src/Examples/ListAccordionGroupExample.tsx +80 -0
  118. package/Examples/SampleUI/src/Examples/ListItemExample.tsx +310 -0
  119. package/Examples/SampleUI/src/Examples/ListSectionExample.tsx +159 -0
  120. package/Examples/SampleUI/src/Examples/MaterialBottomTabNavigatorExample.tsx +87 -0
  121. package/Examples/SampleUI/src/Examples/MenuExample.tsx +211 -0
  122. package/Examples/SampleUI/src/Examples/ProgressBarExample.tsx +142 -0
  123. package/Examples/SampleUI/src/Examples/RadioButtonExample.tsx +104 -0
  124. package/Examples/SampleUI/src/Examples/RadioButtonGroupExample.tsx +67 -0
  125. package/Examples/SampleUI/src/Examples/RadioButtonItemExample.tsx +77 -0
  126. package/Examples/SampleUI/src/Examples/SearchbarExample.tsx +249 -0
  127. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonCustomColorCheck.tsx +93 -0
  128. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDefault.tsx +49 -0
  129. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDisabled.tsx +47 -0
  130. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselect.tsx +50 -0
  131. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectIcons.tsx +49 -0
  132. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectRealCase.tsx +114 -0
  133. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIcons.tsx +40 -0
  134. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIconsWithCheck.tsx +43 -0
  135. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonRealCase.tsx +97 -0
  136. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithDensity.tsx +47 -0
  137. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithSelectedCheck.tsx +52 -0
  138. package/Examples/SampleUI/src/Examples/SegmentedButtons/index.ts +9 -0
  139. package/Examples/SampleUI/src/Examples/SegmentedButtonsExample.tsx +57 -0
  140. package/Examples/SampleUI/src/Examples/SnackbarExample.tsx +141 -0
  141. package/Examples/SampleUI/src/Examples/SurfaceExample.tsx +130 -0
  142. package/Examples/SampleUI/src/Examples/SwitchExample.tsx +105 -0
  143. package/Examples/SampleUI/src/Examples/TeamDetails.tsx +291 -0
  144. package/Examples/SampleUI/src/Examples/TeamsList.tsx +57 -0
  145. package/Examples/SampleUI/src/Examples/TextExample.tsx +132 -0
  146. package/Examples/SampleUI/src/Examples/TextInputExample.tsx +914 -0
  147. package/Examples/SampleUI/src/Examples/ThemeExample.tsx +41 -0
  148. package/Examples/SampleUI/src/Examples/ThemingWithReactNavigation.tsx +75 -0
  149. package/Examples/SampleUI/src/Examples/ToggleButtonExample.tsx +128 -0
  150. package/Examples/SampleUI/src/Examples/TooltipExample.tsx +191 -0
  151. package/Examples/SampleUI/src/Examples/TouchableRippleExample.tsx +37 -0
  152. package/Examples/SampleUI/src/RootNavigator.tsx +86 -0
  153. package/Examples/SampleUI/src/ScreenWrapper.tsx +67 -0
  154. package/Examples/SampleUI/src/components/ActivityIndicator.tsx +254 -0
  155. package/Examples/SampleUI/src/components/Appbar/Appbar.tsx +364 -0
  156. package/Examples/SampleUI/src/components/Appbar/AppbarAction.tsx +132 -0
  157. package/Examples/SampleUI/src/components/Appbar/AppbarBackAction.tsx +77 -0
  158. package/Examples/SampleUI/src/components/Appbar/AppbarBackIcon.tsx +52 -0
  159. package/Examples/SampleUI/src/components/Appbar/AppbarContent.tsx +249 -0
  160. package/Examples/SampleUI/src/components/Appbar/AppbarHeader.tsx +174 -0
  161. package/Examples/SampleUI/src/components/Appbar/index.ts +22 -0
  162. package/Examples/SampleUI/src/components/Appbar/utils.ts +188 -0
  163. package/Examples/SampleUI/src/components/Avatar/Avatar.tsx +8 -0
  164. package/Examples/SampleUI/src/components/Avatar/AvatarIcon.tsx +87 -0
  165. package/Examples/SampleUI/src/components/Avatar/AvatarImage.tsx +128 -0
  166. package/Examples/SampleUI/src/components/Avatar/AvatarText.tsx +127 -0
  167. package/Examples/SampleUI/src/components/Badge.tsx +138 -0
  168. package/Examples/SampleUI/src/components/Banner.tsx +302 -0
  169. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigation.tsx +643 -0
  170. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationBar.tsx +1039 -0
  171. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationRouteScreen.tsx +31 -0
  172. package/Examples/SampleUI/src/components/BottomNavigation/utils.ts +70 -0
  173. package/Examples/SampleUI/src/components/Button/Button.tsx +503 -0
  174. package/Examples/SampleUI/src/components/Button/utils.tsx +272 -0
  175. package/Examples/SampleUI/src/components/Card/Card.tsx +373 -0
  176. package/Examples/SampleUI/src/components/Card/CardActions.tsx +74 -0
  177. package/Examples/SampleUI/src/components/Card/CardContent.tsx +99 -0
  178. package/Examples/SampleUI/src/components/Card/CardCover.tsx +96 -0
  179. package/Examples/SampleUI/src/components/Card/CardTitle.tsx +236 -0
  180. package/Examples/SampleUI/src/components/Card/utils.tsx +110 -0
  181. package/Examples/SampleUI/src/components/Checkbox/Checkbox.tsx +78 -0
  182. package/Examples/SampleUI/src/components/Checkbox/CheckboxAndroid.tsx +180 -0
  183. package/Examples/SampleUI/src/components/Checkbox/CheckboxIOS.tsx +104 -0
  184. package/Examples/SampleUI/src/components/Checkbox/CheckboxItem.tsx +236 -0
  185. package/Examples/SampleUI/src/components/Checkbox/index.ts +19 -0
  186. package/Examples/SampleUI/src/components/Checkbox/utils.ts +183 -0
  187. package/Examples/SampleUI/src/components/Chip/Chip.tsx +513 -0
  188. package/Examples/SampleUI/src/components/Chip/helpers.tsx +322 -0
  189. package/Examples/SampleUI/src/components/CrossFadeIcon.tsx +140 -0
  190. package/Examples/SampleUI/src/components/DataTable/DataTable.tsx +138 -0
  191. package/Examples/SampleUI/src/components/DataTable/DataTableCell.tsx +132 -0
  192. package/Examples/SampleUI/src/components/DataTable/DataTableHeader.tsx +82 -0
  193. package/Examples/SampleUI/src/components/DataTable/DataTablePagination.tsx +407 -0
  194. package/Examples/SampleUI/src/components/DataTable/DataTableRow.tsx +107 -0
  195. package/Examples/SampleUI/src/components/DataTable/DataTableTitle.tsx +208 -0
  196. package/Examples/SampleUI/src/components/Dialog/Dialog.tsx +191 -0
  197. package/Examples/SampleUI/src/components/Dialog/DialogActions.tsx +94 -0
  198. package/Examples/SampleUI/src/components/Dialog/DialogContent.tsx +54 -0
  199. package/Examples/SampleUI/src/components/Dialog/DialogIcon.tsx +100 -0
  200. package/Examples/SampleUI/src/components/Dialog/DialogScrollArea.tsx +88 -0
  201. package/Examples/SampleUI/src/components/Dialog/DialogTitle.tsx +94 -0
  202. package/Examples/SampleUI/src/components/Divider.tsx +102 -0
  203. package/Examples/SampleUI/src/components/Drawer/Drawer.tsx +8 -0
  204. package/Examples/SampleUI/src/components/Drawer/DrawerCollapsedItem.tsx +282 -0
  205. package/Examples/SampleUI/src/components/Drawer/DrawerItem.tsx +209 -0
  206. package/Examples/SampleUI/src/components/Drawer/DrawerSection.tsx +138 -0
  207. package/Examples/SampleUI/src/components/FAB/AnimatedFAB.tsx +619 -0
  208. package/Examples/SampleUI/src/components/FAB/FAB.tsx +371 -0
  209. package/Examples/SampleUI/src/components/FAB/FABGroup.tsx +532 -0
  210. package/Examples/SampleUI/src/components/FAB/index.ts +13 -0
  211. package/Examples/SampleUI/src/components/FAB/utils.ts +474 -0
  212. package/Examples/SampleUI/src/components/HelperText/HelperText.tsx +168 -0
  213. package/Examples/SampleUI/src/components/HelperText/utils.ts +30 -0
  214. package/Examples/SampleUI/src/components/Icon.tsx +170 -0
  215. package/Examples/SampleUI/src/components/IconButton/IconButton.tsx +234 -0
  216. package/Examples/SampleUI/src/components/IconButton/utils.ts +190 -0
  217. package/Examples/SampleUI/src/components/List/List.tsx +20 -0
  218. package/Examples/SampleUI/src/components/List/ListAccordion.tsx +391 -0
  219. package/Examples/SampleUI/src/components/List/ListAccordionGroup.tsx +88 -0
  220. package/Examples/SampleUI/src/components/List/ListIcon.tsx +79 -0
  221. package/Examples/SampleUI/src/components/List/ListImage.tsx +89 -0
  222. package/Examples/SampleUI/src/components/List/ListItem.tsx +313 -0
  223. package/Examples/SampleUI/src/components/List/ListSection.tsx +87 -0
  224. package/Examples/SampleUI/src/components/List/ListSubheader.tsx +79 -0
  225. package/Examples/SampleUI/src/components/List/utils.ts +113 -0
  226. package/Examples/SampleUI/src/components/MaterialCommunityIcon.tsx +121 -0
  227. package/Examples/SampleUI/src/components/Menu/Menu.tsx +711 -0
  228. package/Examples/SampleUI/src/components/Menu/MenuItem.tsx +257 -0
  229. package/Examples/SampleUI/src/components/Menu/utils.ts +110 -0
  230. package/Examples/SampleUI/src/components/Modal.tsx +245 -0
  231. package/Examples/SampleUI/src/components/Portal/Portal.tsx +69 -0
  232. package/Examples/SampleUI/src/components/Portal/PortalConsumer.tsx +44 -0
  233. package/Examples/SampleUI/src/components/Portal/PortalHost.tsx +143 -0
  234. package/Examples/SampleUI/src/components/Portal/PortalManager.tsx +54 -0
  235. package/Examples/SampleUI/src/components/ProgressBar.tsx +292 -0
  236. package/Examples/SampleUI/src/components/RadioButton/RadioButton.tsx +86 -0
  237. package/Examples/SampleUI/src/components/RadioButton/RadioButtonAndroid.tsx +202 -0
  238. package/Examples/SampleUI/src/components/RadioButton/RadioButtonGroup.tsx +67 -0
  239. package/Examples/SampleUI/src/components/RadioButton/RadioButtonIOS.tsx +130 -0
  240. package/Examples/SampleUI/src/components/RadioButton/RadioButtonItem.tsx +268 -0
  241. package/Examples/SampleUI/src/components/RadioButton/index.ts +22 -0
  242. package/Examples/SampleUI/src/components/RadioButton/utils.ts +37 -0
  243. package/Examples/SampleUI/src/components/Searchbar.tsx +459 -0
  244. package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtonItem.tsx +271 -0
  245. package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtons.tsx +197 -0
  246. package/Examples/SampleUI/src/components/SegmentedButtons/utils.ts +179 -0
  247. package/Examples/SampleUI/src/components/Snackbar.tsx +430 -0
  248. package/Examples/SampleUI/src/components/Surface.tsx +376 -0
  249. package/Examples/SampleUI/src/components/Switch/Switch.tsx +108 -0
  250. package/Examples/SampleUI/src/components/Switch/utils.ts +113 -0
  251. package/Examples/SampleUI/src/components/TextInput/Addons/Outline.tsx +64 -0
  252. package/Examples/SampleUI/src/components/TextInput/Addons/Underline.tsx +78 -0
  253. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAdornment.tsx +208 -0
  254. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAffix.tsx +212 -0
  255. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputIcon.tsx +195 -0
  256. package/Examples/SampleUI/src/components/TextInput/Adornment/enums.tsx +12 -0
  257. package/Examples/SampleUI/src/components/TextInput/Adornment/types.tsx +11 -0
  258. package/Examples/SampleUI/src/components/TextInput/Adornment/utils.ts +48 -0
  259. package/Examples/SampleUI/src/components/TextInput/Label/InputLabel.tsx +217 -0
  260. package/Examples/SampleUI/src/components/TextInput/Label/LabelBackground.tsx +100 -0
  261. package/Examples/SampleUI/src/components/TextInput/TextInput.tsx +572 -0
  262. package/Examples/SampleUI/src/components/TextInput/TextInputFlat.tsx +475 -0
  263. package/Examples/SampleUI/src/components/TextInput/TextInputOutlined.tsx +450 -0
  264. package/Examples/SampleUI/src/components/TextInput/constants.tsx +48 -0
  265. package/Examples/SampleUI/src/components/TextInput/helpers.tsx +612 -0
  266. package/Examples/SampleUI/src/components/TextInput/types.tsx +155 -0
  267. package/Examples/SampleUI/src/components/ToggleButton/ToggleButton.tsx +187 -0
  268. package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonGroup.tsx +72 -0
  269. package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonRow.tsx +107 -0
  270. package/Examples/SampleUI/src/components/ToggleButton/index.ts +16 -0
  271. package/Examples/SampleUI/src/components/ToggleButton/utils.ts +26 -0
  272. package/Examples/SampleUI/src/components/Tooltip/Tooltip.tsx +249 -0
  273. package/Examples/SampleUI/src/components/Tooltip/utils.ts +129 -0
  274. package/Examples/SampleUI/src/components/TouchableRipple/Pressable.tsx +41 -0
  275. package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.native.tsx +145 -0
  276. package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.tsx +317 -0
  277. package/Examples/SampleUI/src/components/TouchableRipple/utils.ts +66 -0
  278. package/Examples/SampleUI/src/components/Typography/AnimatedText.tsx +107 -0
  279. package/Examples/SampleUI/src/components/Typography/Text.tsx +184 -0
  280. package/Examples/SampleUI/src/components/Typography/types.tsx +5 -0
  281. package/Examples/SampleUI/src/components/Typography/v2/Caption.tsx +50 -0
  282. package/Examples/SampleUI/src/components/Typography/v2/Headline.tsx +52 -0
  283. package/Examples/SampleUI/src/components/Typography/v2/Paragraph.tsx +49 -0
  284. package/Examples/SampleUI/src/components/Typography/v2/StyledText.tsx +56 -0
  285. package/Examples/SampleUI/src/components/Typography/v2/Subheading.tsx +50 -0
  286. package/Examples/SampleUI/src/components/Typography/v2/Text.tsx +62 -0
  287. package/Examples/SampleUI/src/components/Typography/v2/Title.tsx +49 -0
  288. package/Examples/SampleUI/src/components/Typography/v2/index.ts +5 -0
  289. package/Examples/SampleUI/src/core/PaperProvider.tsx +122 -0
  290. package/Examples/SampleUI/src/core/SafeAreaProviderCompat.tsx +65 -0
  291. package/Examples/SampleUI/src/core/settings.tsx +23 -0
  292. package/Examples/SampleUI/src/core/theming.tsx +170 -0
  293. package/Examples/SampleUI/src/index.native.tsx +270 -0
  294. package/Examples/SampleUI/src/index.tsx +226 -0
  295. package/Examples/SampleUI/src/react-navigation/index.tsx +19 -0
  296. package/Examples/SampleUI/src/react-navigation/navigators/createMaterialBottomTabNavigator.tsx +72 -0
  297. package/Examples/SampleUI/src/react-navigation/types.tsx +126 -0
  298. package/Examples/SampleUI/src/react-navigation/views/MaterialBottomTabView.tsx +140 -0
  299. package/Examples/SampleUI/src/styles/__tests__/fonts.test.js +290 -0
  300. package/Examples/SampleUI/src/styles/fonts.tsx +143 -0
  301. package/Examples/SampleUI/src/styles/overlay.tsx +70 -0
  302. package/Examples/SampleUI/src/styles/shadow.tsx +109 -0
  303. package/Examples/SampleUI/src/styles/themes/index.ts +4 -0
  304. package/Examples/SampleUI/src/styles/themes/v2/DarkTheme.tsx +30 -0
  305. package/Examples/SampleUI/src/styles/themes/v2/LightTheme.tsx +30 -0
  306. package/Examples/SampleUI/src/styles/themes/v2/colors.tsx +277 -0
  307. package/Examples/SampleUI/src/styles/themes/v3/DarkTheme.tsx +66 -0
  308. package/Examples/SampleUI/src/styles/themes/v3/LightTheme.tsx +69 -0
  309. package/Examples/SampleUI/src/styles/themes/v3/tokens.tsx +230 -0
  310. package/Examples/SampleUI/src/utils/BackHandler/BackHandler.native.tsx +3 -0
  311. package/Examples/SampleUI/src/utils/BackHandler/BackHandler.tsx +11 -0
  312. package/Examples/SampleUI/src/utils/addEventListener.tsx +56 -0
  313. package/Examples/SampleUI/src/utils/forwardRef.tsx +23 -0
  314. package/Examples/SampleUI/src/utils/getContrastingColor.tsx +15 -0
  315. package/Examples/SampleUI/src/utils/hasTouchHandler.tsx +23 -0
  316. package/Examples/SampleUI/src/utils/roundLayoutSize.ts +2 -0
  317. package/Examples/SampleUI/src/utils/splitStyles.ts +60 -0
  318. package/Examples/SampleUI/src/utils/useAnimatedValue.tsx +9 -0
  319. package/Examples/SampleUI/src/utils/useAnimatedValueArray.tsx +13 -0
  320. package/Examples/SampleUI/src/utils/useIsKeyboardShown.tsx +55 -0
  321. package/Examples/SampleUI/src/utils/useLayout.tsx +29 -0
  322. package/Examples/SampleUI/src/utils/useLazyRef.tsx +11 -0
  323. package/Examples/SampleUI/tsconfig.json +3 -0
  324. package/Examples/SampleUI/utils/index.ts +1426 -0
  325. package/lib/typescript/jslib/TLTRN.d.ts +5 -5
  326. package/lib/typescript/jslib/TLTRN.d.ts.map +1 -1
  327. package/package.json +7 -2
@@ -0,0 +1,785 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* SampleUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* SampleUITests.m */; };
11
+ 085AC5626E6A467BCF11825C /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
12
+ 0C80B921A6F3F58F76C31292 /* libPods-SampleUI.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-SampleUI.a */; };
13
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
14
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
15
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
16
+ 7234D8C05BD91C6A85AEA38F /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3045B38C88F7BC888FC75AA7 /* ExpoModulesProvider.swift */; };
17
+ 7699B88040F8A987B510C191 /* libPods-SampleUI-SampleUITests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-SampleUI-SampleUITests.a */; };
18
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
19
+ C7C34072154C36F94ADA5E48 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E9C928A359C6618A8BAE429 /* ExpoModulesProvider.swift */; };
20
+ /* End PBXBuildFile section */
21
+
22
+ /* Begin PBXContainerItemProxy section */
23
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
24
+ isa = PBXContainerItemProxy;
25
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
26
+ proxyType = 1;
27
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
28
+ remoteInfo = SampleUI;
29
+ };
30
+ /* End PBXContainerItemProxy section */
31
+
32
+ /* Begin PBXFileReference section */
33
+ 00E356EE1AD99517003FC87E /* SampleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SampleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
34
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
35
+ 00E356F21AD99517003FC87E /* SampleUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SampleUITests.m; sourceTree = "<group>"; };
36
+ 13B07F961A680F5B00A75B9A /* SampleUI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SampleUI.app; sourceTree = BUILT_PRODUCTS_DIR; };
37
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = SampleUI/AppDelegate.h; sourceTree = "<group>"; };
38
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = SampleUI/AppDelegate.mm; sourceTree = "<group>"; };
39
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = SampleUI/Images.xcassets; sourceTree = "<group>"; };
40
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = SampleUI/Info.plist; sourceTree = "<group>"; };
41
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = SampleUI/main.m; sourceTree = "<group>"; };
42
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = SampleUI/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
43
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-SampleUI-SampleUITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SampleUI-SampleUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
44
+ 3045B38C88F7BC888FC75AA7 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-SampleUI-SampleUITests/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
45
+ 3B4392A12AC88292D35C810B /* Pods-SampleUI.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SampleUI.debug.xcconfig"; path = "Target Support Files/Pods-SampleUI/Pods-SampleUI.debug.xcconfig"; sourceTree = "<group>"; };
46
+ 4E9C928A359C6618A8BAE429 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-SampleUI/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
47
+ 5709B34CF0A7D63546082F79 /* Pods-SampleUI.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SampleUI.release.xcconfig"; path = "Target Support Files/Pods-SampleUI/Pods-SampleUI.release.xcconfig"; sourceTree = "<group>"; };
48
+ 5B7EB9410499542E8C5724F5 /* Pods-SampleUI-SampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SampleUI-SampleUITests.debug.xcconfig"; path = "Target Support Files/Pods-SampleUI-SampleUITests/Pods-SampleUI-SampleUITests.debug.xcconfig"; sourceTree = "<group>"; };
49
+ 5DCACB8F33CDC322A6C60F78 /* libPods-SampleUI.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SampleUI.a"; sourceTree = BUILT_PRODUCTS_DIR; };
50
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = SampleUI/LaunchScreen.storyboard; sourceTree = "<group>"; };
51
+ 89C6BE57DB24E9ADA2F236DE /* Pods-SampleUI-SampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SampleUI-SampleUITests.release.xcconfig"; path = "Target Support Files/Pods-SampleUI-SampleUITests/Pods-SampleUI-SampleUITests.release.xcconfig"; sourceTree = "<group>"; };
52
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
53
+ /* End PBXFileReference section */
54
+
55
+ /* Begin PBXFrameworksBuildPhase section */
56
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
57
+ isa = PBXFrameworksBuildPhase;
58
+ buildActionMask = 2147483647;
59
+ files = (
60
+ 7699B88040F8A987B510C191 /* libPods-SampleUI-SampleUITests.a in Frameworks */,
61
+ );
62
+ runOnlyForDeploymentPostprocessing = 0;
63
+ };
64
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
65
+ isa = PBXFrameworksBuildPhase;
66
+ buildActionMask = 2147483647;
67
+ files = (
68
+ 0C80B921A6F3F58F76C31292 /* libPods-SampleUI.a in Frameworks */,
69
+ );
70
+ runOnlyForDeploymentPostprocessing = 0;
71
+ };
72
+ /* End PBXFrameworksBuildPhase section */
73
+
74
+ /* Begin PBXGroup section */
75
+ 00E356EF1AD99517003FC87E /* SampleUITests */ = {
76
+ isa = PBXGroup;
77
+ children = (
78
+ 00E356F21AD99517003FC87E /* SampleUITests.m */,
79
+ 00E356F01AD99517003FC87E /* Supporting Files */,
80
+ );
81
+ path = SampleUITests;
82
+ sourceTree = "<group>";
83
+ };
84
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
85
+ isa = PBXGroup;
86
+ children = (
87
+ 00E356F11AD99517003FC87E /* Info.plist */,
88
+ );
89
+ name = "Supporting Files";
90
+ sourceTree = "<group>";
91
+ };
92
+ 13B07FAE1A68108700A75B9A /* SampleUI */ = {
93
+ isa = PBXGroup;
94
+ children = (
95
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
96
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
97
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
98
+ 13B07FB61A68108700A75B9A /* Info.plist */,
99
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
100
+ 13B07FB71A68108700A75B9A /* main.m */,
101
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
102
+ );
103
+ name = SampleUI;
104
+ sourceTree = "<group>";
105
+ };
106
+ 282C1736B8FD440993C56138 /* SampleUITests */ = {
107
+ isa = PBXGroup;
108
+ children = (
109
+ 3045B38C88F7BC888FC75AA7 /* ExpoModulesProvider.swift */,
110
+ );
111
+ name = SampleUITests;
112
+ sourceTree = "<group>";
113
+ };
114
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
115
+ isa = PBXGroup;
116
+ children = (
117
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
118
+ 5DCACB8F33CDC322A6C60F78 /* libPods-SampleUI.a */,
119
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-SampleUI-SampleUITests.a */,
120
+ );
121
+ name = Frameworks;
122
+ sourceTree = "<group>";
123
+ };
124
+ 3272D5FFF073FC638E9635D8 /* ExpoModulesProviders */ = {
125
+ isa = PBXGroup;
126
+ children = (
127
+ 823461CE9985476576507530 /* SampleUI */,
128
+ 282C1736B8FD440993C56138 /* SampleUITests */,
129
+ );
130
+ name = ExpoModulesProviders;
131
+ sourceTree = "<group>";
132
+ };
133
+ 823461CE9985476576507530 /* SampleUI */ = {
134
+ isa = PBXGroup;
135
+ children = (
136
+ 4E9C928A359C6618A8BAE429 /* ExpoModulesProvider.swift */,
137
+ );
138
+ name = SampleUI;
139
+ sourceTree = "<group>";
140
+ };
141
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
142
+ isa = PBXGroup;
143
+ children = (
144
+ );
145
+ name = Libraries;
146
+ sourceTree = "<group>";
147
+ };
148
+ 83CBB9F61A601CBA00E9B192 = {
149
+ isa = PBXGroup;
150
+ children = (
151
+ 13B07FAE1A68108700A75B9A /* SampleUI */,
152
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
153
+ 00E356EF1AD99517003FC87E /* SampleUITests */,
154
+ 83CBBA001A601CBA00E9B192 /* Products */,
155
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
156
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
157
+ 3272D5FFF073FC638E9635D8 /* ExpoModulesProviders */,
158
+ );
159
+ indentWidth = 2;
160
+ sourceTree = "<group>";
161
+ tabWidth = 2;
162
+ usesTabs = 0;
163
+ };
164
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
165
+ isa = PBXGroup;
166
+ children = (
167
+ 13B07F961A680F5B00A75B9A /* SampleUI.app */,
168
+ 00E356EE1AD99517003FC87E /* SampleUITests.xctest */,
169
+ );
170
+ name = Products;
171
+ sourceTree = "<group>";
172
+ };
173
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
174
+ isa = PBXGroup;
175
+ children = (
176
+ 3B4392A12AC88292D35C810B /* Pods-SampleUI.debug.xcconfig */,
177
+ 5709B34CF0A7D63546082F79 /* Pods-SampleUI.release.xcconfig */,
178
+ 5B7EB9410499542E8C5724F5 /* Pods-SampleUI-SampleUITests.debug.xcconfig */,
179
+ 89C6BE57DB24E9ADA2F236DE /* Pods-SampleUI-SampleUITests.release.xcconfig */,
180
+ );
181
+ path = Pods;
182
+ sourceTree = "<group>";
183
+ };
184
+ /* End PBXGroup section */
185
+
186
+ /* Begin PBXNativeTarget section */
187
+ 00E356ED1AD99517003FC87E /* SampleUITests */ = {
188
+ isa = PBXNativeTarget;
189
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "SampleUITests" */;
190
+ buildPhases = (
191
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
192
+ 4A241055850134C6B238543B /* [Expo] Configure project */,
193
+ 00E356EA1AD99517003FC87E /* Sources */,
194
+ 00E356EB1AD99517003FC87E /* Frameworks */,
195
+ 00E356EC1AD99517003FC87E /* Resources */,
196
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
197
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
198
+ );
199
+ buildRules = (
200
+ );
201
+ dependencies = (
202
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
203
+ );
204
+ name = SampleUITests;
205
+ productName = SampleUITests;
206
+ productReference = 00E356EE1AD99517003FC87E /* SampleUITests.xctest */;
207
+ productType = "com.apple.product-type.bundle.unit-test";
208
+ };
209
+ 13B07F861A680F5B00A75B9A /* SampleUI */ = {
210
+ isa = PBXNativeTarget;
211
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "SampleUI" */;
212
+ buildPhases = (
213
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
214
+ 1C23D0485923CF5A44DAB77F /* [Expo] Configure project */,
215
+ 13B07F871A680F5B00A75B9A /* Sources */,
216
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
217
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
218
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
219
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
220
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
221
+ );
222
+ buildRules = (
223
+ );
224
+ dependencies = (
225
+ );
226
+ name = SampleUI;
227
+ productName = SampleUI;
228
+ productReference = 13B07F961A680F5B00A75B9A /* SampleUI.app */;
229
+ productType = "com.apple.product-type.application";
230
+ };
231
+ /* End PBXNativeTarget section */
232
+
233
+ /* Begin PBXProject section */
234
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
235
+ isa = PBXProject;
236
+ attributes = {
237
+ LastUpgradeCheck = 1210;
238
+ TargetAttributes = {
239
+ 00E356ED1AD99517003FC87E = {
240
+ CreatedOnToolsVersion = 6.2;
241
+ TestTargetID = 13B07F861A680F5B00A75B9A;
242
+ };
243
+ 13B07F861A680F5B00A75B9A = {
244
+ LastSwiftMigration = 1120;
245
+ };
246
+ };
247
+ };
248
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SampleUI" */;
249
+ compatibilityVersion = "Xcode 12.0";
250
+ developmentRegion = en;
251
+ hasScannedForEncodings = 0;
252
+ knownRegions = (
253
+ en,
254
+ Base,
255
+ );
256
+ mainGroup = 83CBB9F61A601CBA00E9B192;
257
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
258
+ projectDirPath = "";
259
+ projectRoot = "";
260
+ targets = (
261
+ 13B07F861A680F5B00A75B9A /* SampleUI */,
262
+ 00E356ED1AD99517003FC87E /* SampleUITests */,
263
+ );
264
+ };
265
+ /* End PBXProject section */
266
+
267
+ /* Begin PBXResourcesBuildPhase section */
268
+ 00E356EC1AD99517003FC87E /* Resources */ = {
269
+ isa = PBXResourcesBuildPhase;
270
+ buildActionMask = 2147483647;
271
+ files = (
272
+ );
273
+ runOnlyForDeploymentPostprocessing = 0;
274
+ };
275
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
276
+ isa = PBXResourcesBuildPhase;
277
+ buildActionMask = 2147483647;
278
+ files = (
279
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
280
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
281
+ 085AC5626E6A467BCF11825C /* PrivacyInfo.xcprivacy in Resources */,
282
+ );
283
+ runOnlyForDeploymentPostprocessing = 0;
284
+ };
285
+ /* End PBXResourcesBuildPhase section */
286
+
287
+ /* Begin PBXShellScriptBuildPhase section */
288
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
289
+ isa = PBXShellScriptBuildPhase;
290
+ buildActionMask = 2147483647;
291
+ files = (
292
+ );
293
+ inputPaths = (
294
+ "$(SRCROOT)/.xcode.env.local",
295
+ "$(SRCROOT)/.xcode.env",
296
+ );
297
+ name = "Bundle React Native code and images";
298
+ outputPaths = (
299
+ );
300
+ runOnlyForDeploymentPostprocessing = 0;
301
+ shellPath = /bin/sh;
302
+ shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli')\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n";
303
+ };
304
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
305
+ isa = PBXShellScriptBuildPhase;
306
+ buildActionMask = 2147483647;
307
+ files = (
308
+ );
309
+ inputFileListPaths = (
310
+ "${PODS_ROOT}/Target Support Files/Pods-SampleUI/Pods-SampleUI-frameworks-${CONFIGURATION}-input-files.xcfilelist",
311
+ );
312
+ name = "[CP] Embed Pods Frameworks";
313
+ outputFileListPaths = (
314
+ "${PODS_ROOT}/Target Support Files/Pods-SampleUI/Pods-SampleUI-frameworks-${CONFIGURATION}-output-files.xcfilelist",
315
+ );
316
+ runOnlyForDeploymentPostprocessing = 0;
317
+ shellPath = /bin/sh;
318
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SampleUI/Pods-SampleUI-frameworks.sh\"\n";
319
+ showEnvVarsInLog = 0;
320
+ };
321
+ 1C23D0485923CF5A44DAB77F /* [Expo] Configure project */ = {
322
+ isa = PBXShellScriptBuildPhase;
323
+ alwaysOutOfDate = 1;
324
+ buildActionMask = 2147483647;
325
+ files = (
326
+ );
327
+ inputFileListPaths = (
328
+ );
329
+ inputPaths = (
330
+ );
331
+ name = "[Expo] Configure project";
332
+ outputFileListPaths = (
333
+ );
334
+ outputPaths = (
335
+ );
336
+ runOnlyForDeploymentPostprocessing = 0;
337
+ shellPath = /bin/sh;
338
+ shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-SampleUI/expo-configure-project.sh\"\n";
339
+ };
340
+ 4A241055850134C6B238543B /* [Expo] Configure project */ = {
341
+ isa = PBXShellScriptBuildPhase;
342
+ alwaysOutOfDate = 1;
343
+ buildActionMask = 2147483647;
344
+ files = (
345
+ );
346
+ inputFileListPaths = (
347
+ );
348
+ inputPaths = (
349
+ );
350
+ name = "[Expo] Configure project";
351
+ outputFileListPaths = (
352
+ );
353
+ outputPaths = (
354
+ );
355
+ runOnlyForDeploymentPostprocessing = 0;
356
+ shellPath = /bin/sh;
357
+ shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-SampleUI-SampleUITests/expo-configure-project.sh\"\n";
358
+ };
359
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
360
+ isa = PBXShellScriptBuildPhase;
361
+ buildActionMask = 2147483647;
362
+ files = (
363
+ );
364
+ inputFileListPaths = (
365
+ );
366
+ inputPaths = (
367
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
368
+ "${PODS_ROOT}/Manifest.lock",
369
+ );
370
+ name = "[CP] Check Pods Manifest.lock";
371
+ outputFileListPaths = (
372
+ );
373
+ outputPaths = (
374
+ "$(DERIVED_FILE_DIR)/Pods-SampleUI-SampleUITests-checkManifestLockResult.txt",
375
+ );
376
+ runOnlyForDeploymentPostprocessing = 0;
377
+ shellPath = /bin/sh;
378
+ 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";
379
+ showEnvVarsInLog = 0;
380
+ };
381
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
382
+ isa = PBXShellScriptBuildPhase;
383
+ buildActionMask = 2147483647;
384
+ files = (
385
+ );
386
+ inputFileListPaths = (
387
+ );
388
+ inputPaths = (
389
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
390
+ "${PODS_ROOT}/Manifest.lock",
391
+ );
392
+ name = "[CP] Check Pods Manifest.lock";
393
+ outputFileListPaths = (
394
+ );
395
+ outputPaths = (
396
+ "$(DERIVED_FILE_DIR)/Pods-SampleUI-checkManifestLockResult.txt",
397
+ );
398
+ runOnlyForDeploymentPostprocessing = 0;
399
+ shellPath = /bin/sh;
400
+ 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";
401
+ showEnvVarsInLog = 0;
402
+ };
403
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
404
+ isa = PBXShellScriptBuildPhase;
405
+ buildActionMask = 2147483647;
406
+ files = (
407
+ );
408
+ inputFileListPaths = (
409
+ "${PODS_ROOT}/Target Support Files/Pods-SampleUI-SampleUITests/Pods-SampleUI-SampleUITests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
410
+ );
411
+ name = "[CP] Embed Pods Frameworks";
412
+ outputFileListPaths = (
413
+ "${PODS_ROOT}/Target Support Files/Pods-SampleUI-SampleUITests/Pods-SampleUI-SampleUITests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
414
+ );
415
+ runOnlyForDeploymentPostprocessing = 0;
416
+ shellPath = /bin/sh;
417
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SampleUI-SampleUITests/Pods-SampleUI-SampleUITests-frameworks.sh\"\n";
418
+ showEnvVarsInLog = 0;
419
+ };
420
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
421
+ isa = PBXShellScriptBuildPhase;
422
+ buildActionMask = 2147483647;
423
+ files = (
424
+ );
425
+ inputFileListPaths = (
426
+ "${PODS_ROOT}/Target Support Files/Pods-SampleUI/Pods-SampleUI-resources-${CONFIGURATION}-input-files.xcfilelist",
427
+ );
428
+ name = "[CP] Copy Pods Resources";
429
+ outputFileListPaths = (
430
+ "${PODS_ROOT}/Target Support Files/Pods-SampleUI/Pods-SampleUI-resources-${CONFIGURATION}-output-files.xcfilelist",
431
+ );
432
+ runOnlyForDeploymentPostprocessing = 0;
433
+ shellPath = /bin/sh;
434
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SampleUI/Pods-SampleUI-resources.sh\"\n";
435
+ showEnvVarsInLog = 0;
436
+ };
437
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
438
+ isa = PBXShellScriptBuildPhase;
439
+ buildActionMask = 2147483647;
440
+ files = (
441
+ );
442
+ inputFileListPaths = (
443
+ "${PODS_ROOT}/Target Support Files/Pods-SampleUI-SampleUITests/Pods-SampleUI-SampleUITests-resources-${CONFIGURATION}-input-files.xcfilelist",
444
+ );
445
+ name = "[CP] Copy Pods Resources";
446
+ outputFileListPaths = (
447
+ "${PODS_ROOT}/Target Support Files/Pods-SampleUI-SampleUITests/Pods-SampleUI-SampleUITests-resources-${CONFIGURATION}-output-files.xcfilelist",
448
+ );
449
+ runOnlyForDeploymentPostprocessing = 0;
450
+ shellPath = /bin/sh;
451
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SampleUI-SampleUITests/Pods-SampleUI-SampleUITests-resources.sh\"\n";
452
+ showEnvVarsInLog = 0;
453
+ };
454
+ /* End PBXShellScriptBuildPhase section */
455
+
456
+ /* Begin PBXSourcesBuildPhase section */
457
+ 00E356EA1AD99517003FC87E /* Sources */ = {
458
+ isa = PBXSourcesBuildPhase;
459
+ buildActionMask = 2147483647;
460
+ files = (
461
+ 00E356F31AD99517003FC87E /* SampleUITests.m in Sources */,
462
+ 7234D8C05BD91C6A85AEA38F /* ExpoModulesProvider.swift in Sources */,
463
+ );
464
+ runOnlyForDeploymentPostprocessing = 0;
465
+ };
466
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
467
+ isa = PBXSourcesBuildPhase;
468
+ buildActionMask = 2147483647;
469
+ files = (
470
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
471
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
472
+ C7C34072154C36F94ADA5E48 /* ExpoModulesProvider.swift in Sources */,
473
+ );
474
+ runOnlyForDeploymentPostprocessing = 0;
475
+ };
476
+ /* End PBXSourcesBuildPhase section */
477
+
478
+ /* Begin PBXTargetDependency section */
479
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
480
+ isa = PBXTargetDependency;
481
+ target = 13B07F861A680F5B00A75B9A /* SampleUI */;
482
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
483
+ };
484
+ /* End PBXTargetDependency section */
485
+
486
+ /* Begin XCBuildConfiguration section */
487
+ 00E356F61AD99517003FC87E /* Debug */ = {
488
+ isa = XCBuildConfiguration;
489
+ baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-SampleUI-SampleUITests.debug.xcconfig */;
490
+ buildSettings = {
491
+ BUNDLE_LOADER = "$(TEST_HOST)";
492
+ GCC_PREPROCESSOR_DEFINITIONS = (
493
+ "DEBUG=1",
494
+ "$(inherited)",
495
+ );
496
+ INFOPLIST_FILE = SampleUITests/Info.plist;
497
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
498
+ LD_RUNPATH_SEARCH_PATHS = (
499
+ "$(inherited)",
500
+ "@executable_path/Frameworks",
501
+ "@loader_path/Frameworks",
502
+ );
503
+ OTHER_LDFLAGS = (
504
+ "-ObjC",
505
+ "-lc++",
506
+ "$(inherited)",
507
+ );
508
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
509
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
510
+ PRODUCT_NAME = "$(TARGET_NAME)";
511
+ SWIFT_VERSION = 5.0;
512
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SampleUI.app/SampleUI";
513
+ };
514
+ name = Debug;
515
+ };
516
+ 00E356F71AD99517003FC87E /* Release */ = {
517
+ isa = XCBuildConfiguration;
518
+ baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-SampleUI-SampleUITests.release.xcconfig */;
519
+ buildSettings = {
520
+ BUNDLE_LOADER = "$(TEST_HOST)";
521
+ COPY_PHASE_STRIP = NO;
522
+ INFOPLIST_FILE = SampleUITests/Info.plist;
523
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
524
+ LD_RUNPATH_SEARCH_PATHS = (
525
+ "$(inherited)",
526
+ "@executable_path/Frameworks",
527
+ "@loader_path/Frameworks",
528
+ );
529
+ OTHER_LDFLAGS = (
530
+ "-ObjC",
531
+ "-lc++",
532
+ "$(inherited)",
533
+ );
534
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
535
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
536
+ PRODUCT_NAME = "$(TARGET_NAME)";
537
+ SWIFT_VERSION = 5.0;
538
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SampleUI.app/SampleUI";
539
+ };
540
+ name = Release;
541
+ };
542
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
543
+ isa = XCBuildConfiguration;
544
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-SampleUI.debug.xcconfig */;
545
+ buildSettings = {
546
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
547
+ CLANG_ENABLE_MODULES = YES;
548
+ CURRENT_PROJECT_VERSION = 1;
549
+ ENABLE_BITCODE = NO;
550
+ INFOPLIST_FILE = SampleUI/Info.plist;
551
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
552
+ LD_RUNPATH_SEARCH_PATHS = (
553
+ "$(inherited)",
554
+ "@executable_path/Frameworks",
555
+ );
556
+ MARKETING_VERSION = 1.0;
557
+ OTHER_LDFLAGS = (
558
+ "$(inherited)",
559
+ "-ObjC",
560
+ "-lc++",
561
+ );
562
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
563
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
564
+ PRODUCT_NAME = SampleUI;
565
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
566
+ SWIFT_VERSION = 5.0;
567
+ VERSIONING_SYSTEM = "apple-generic";
568
+ };
569
+ name = Debug;
570
+ };
571
+ 13B07F951A680F5B00A75B9A /* Release */ = {
572
+ isa = XCBuildConfiguration;
573
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-SampleUI.release.xcconfig */;
574
+ buildSettings = {
575
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
576
+ CLANG_ENABLE_MODULES = YES;
577
+ CURRENT_PROJECT_VERSION = 1;
578
+ INFOPLIST_FILE = SampleUI/Info.plist;
579
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
580
+ LD_RUNPATH_SEARCH_PATHS = (
581
+ "$(inherited)",
582
+ "@executable_path/Frameworks",
583
+ );
584
+ MARKETING_VERSION = 1.0;
585
+ OTHER_LDFLAGS = (
586
+ "$(inherited)",
587
+ "-ObjC",
588
+ "-lc++",
589
+ );
590
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
591
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
592
+ PRODUCT_NAME = SampleUI;
593
+ SWIFT_VERSION = 5.0;
594
+ VERSIONING_SYSTEM = "apple-generic";
595
+ };
596
+ name = Release;
597
+ };
598
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
599
+ isa = XCBuildConfiguration;
600
+ buildSettings = {
601
+ ALWAYS_SEARCH_USER_PATHS = NO;
602
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
603
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
604
+ CLANG_CXX_LIBRARY = "libc++";
605
+ CLANG_ENABLE_MODULES = YES;
606
+ CLANG_ENABLE_OBJC_ARC = YES;
607
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
608
+ CLANG_WARN_BOOL_CONVERSION = YES;
609
+ CLANG_WARN_COMMA = YES;
610
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
611
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
612
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
613
+ CLANG_WARN_EMPTY_BODY = YES;
614
+ CLANG_WARN_ENUM_CONVERSION = YES;
615
+ CLANG_WARN_INFINITE_RECURSION = YES;
616
+ CLANG_WARN_INT_CONVERSION = YES;
617
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
618
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
619
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
620
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
621
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
622
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
623
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
624
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
625
+ CLANG_WARN_UNREACHABLE_CODE = YES;
626
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
627
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
628
+ COPY_PHASE_STRIP = NO;
629
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
630
+ ENABLE_TESTABILITY = YES;
631
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
632
+ GCC_C_LANGUAGE_STANDARD = gnu99;
633
+ GCC_DYNAMIC_NO_PIC = NO;
634
+ GCC_NO_COMMON_BLOCKS = YES;
635
+ GCC_OPTIMIZATION_LEVEL = 0;
636
+ GCC_PREPROCESSOR_DEFINITIONS = (
637
+ "DEBUG=1",
638
+ "$(inherited)",
639
+ );
640
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
641
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
642
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
643
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
644
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
645
+ GCC_WARN_UNUSED_FUNCTION = YES;
646
+ GCC_WARN_UNUSED_VARIABLE = YES;
647
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
648
+ LD_RUNPATH_SEARCH_PATHS = (
649
+ /usr/lib/swift,
650
+ "$(inherited)",
651
+ );
652
+ LIBRARY_SEARCH_PATHS = (
653
+ "\"$(SDKROOT)/usr/lib/swift\"",
654
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
655
+ "\"$(inherited)\"",
656
+ );
657
+ MTL_ENABLE_DEBUG_INFO = YES;
658
+ ONLY_ACTIVE_ARCH = YES;
659
+ OTHER_CPLUSPLUSFLAGS = (
660
+ "$(OTHER_CFLAGS)",
661
+ "-DFOLLY_NO_CONFIG",
662
+ "-DFOLLY_MOBILE=1",
663
+ "-DFOLLY_USE_LIBCPP=1",
664
+ "-DFOLLY_CFG_NO_COROUTINES=1",
665
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
666
+ );
667
+ OTHER_LDFLAGS = (
668
+ "$(inherited)",
669
+ " ",
670
+ );
671
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
672
+ SDKROOT = iphoneos;
673
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
674
+ SWIFT_VERSION = 5.0;
675
+ USE_HERMES = true;
676
+ };
677
+ name = Debug;
678
+ };
679
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
680
+ isa = XCBuildConfiguration;
681
+ buildSettings = {
682
+ ALWAYS_SEARCH_USER_PATHS = NO;
683
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
684
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
685
+ CLANG_CXX_LIBRARY = "libc++";
686
+ CLANG_ENABLE_MODULES = YES;
687
+ CLANG_ENABLE_OBJC_ARC = YES;
688
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
689
+ CLANG_WARN_BOOL_CONVERSION = YES;
690
+ CLANG_WARN_COMMA = YES;
691
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
692
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
693
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
694
+ CLANG_WARN_EMPTY_BODY = YES;
695
+ CLANG_WARN_ENUM_CONVERSION = YES;
696
+ CLANG_WARN_INFINITE_RECURSION = YES;
697
+ CLANG_WARN_INT_CONVERSION = YES;
698
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
699
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
700
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
701
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
702
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
703
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
704
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
705
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
706
+ CLANG_WARN_UNREACHABLE_CODE = YES;
707
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
708
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
709
+ COPY_PHASE_STRIP = YES;
710
+ ENABLE_NS_ASSERTIONS = NO;
711
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
712
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
713
+ GCC_C_LANGUAGE_STANDARD = gnu99;
714
+ GCC_NO_COMMON_BLOCKS = YES;
715
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
716
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
717
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
718
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
719
+ GCC_WARN_UNUSED_FUNCTION = YES;
720
+ GCC_WARN_UNUSED_VARIABLE = YES;
721
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
722
+ LD_RUNPATH_SEARCH_PATHS = (
723
+ /usr/lib/swift,
724
+ "$(inherited)",
725
+ );
726
+ LIBRARY_SEARCH_PATHS = (
727
+ "\"$(SDKROOT)/usr/lib/swift\"",
728
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
729
+ "\"$(inherited)\"",
730
+ );
731
+ MTL_ENABLE_DEBUG_INFO = NO;
732
+ OTHER_CPLUSPLUSFLAGS = (
733
+ "$(OTHER_CFLAGS)",
734
+ "-DFOLLY_NO_CONFIG",
735
+ "-DFOLLY_MOBILE=1",
736
+ "-DFOLLY_USE_LIBCPP=1",
737
+ "-DFOLLY_CFG_NO_COROUTINES=1",
738
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
739
+ );
740
+ OTHER_LDFLAGS = (
741
+ "$(inherited)",
742
+ " ",
743
+ );
744
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
745
+ SDKROOT = iphoneos;
746
+ SWIFT_VERSION = 5.0;
747
+ USE_HERMES = true;
748
+ VALIDATE_PRODUCT = YES;
749
+ };
750
+ name = Release;
751
+ };
752
+ /* End XCBuildConfiguration section */
753
+
754
+ /* Begin XCConfigurationList section */
755
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "SampleUITests" */ = {
756
+ isa = XCConfigurationList;
757
+ buildConfigurations = (
758
+ 00E356F61AD99517003FC87E /* Debug */,
759
+ 00E356F71AD99517003FC87E /* Release */,
760
+ );
761
+ defaultConfigurationIsVisible = 0;
762
+ defaultConfigurationName = Release;
763
+ };
764
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "SampleUI" */ = {
765
+ isa = XCConfigurationList;
766
+ buildConfigurations = (
767
+ 13B07F941A680F5B00A75B9A /* Debug */,
768
+ 13B07F951A680F5B00A75B9A /* Release */,
769
+ );
770
+ defaultConfigurationIsVisible = 0;
771
+ defaultConfigurationName = Release;
772
+ };
773
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SampleUI" */ = {
774
+ isa = XCConfigurationList;
775
+ buildConfigurations = (
776
+ 83CBBA201A601CBA00E9B192 /* Debug */,
777
+ 83CBBA211A601CBA00E9B192 /* Release */,
778
+ );
779
+ defaultConfigurationIsVisible = 0;
780
+ defaultConfigurationName = Release;
781
+ };
782
+ /* End XCConfigurationList section */
783
+ };
784
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
785
+ }