@developer_tribe/react-native-comnyx 0.1.0 → 0.2.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 (385) hide show
  1. package/lib/commonjs/App.js +59 -0
  2. package/lib/commonjs/App.js.map +1 -0
  3. package/lib/commonjs/__dev__.js +29 -0
  4. package/lib/commonjs/__dev__.js.map +1 -0
  5. package/lib/commonjs/api/api.js +22 -0
  6. package/lib/commonjs/api/api.js.map +1 -0
  7. package/lib/commonjs/api/conversations.js +37 -0
  8. package/lib/commonjs/api/conversations.js.map +1 -0
  9. package/lib/commonjs/api/customers.js +15 -0
  10. package/lib/commonjs/api/customers.js.map +1 -0
  11. package/lib/commonjs/api/index.js +33 -0
  12. package/lib/commonjs/api/index.js.map +1 -0
  13. package/lib/commonjs/api/messages.js +27 -0
  14. package/lib/commonjs/api/messages.js.map +1 -0
  15. package/lib/commonjs/assets/clock.png +0 -0
  16. package/lib/commonjs/assets/double-check.png +0 -0
  17. package/lib/commonjs/assets/down.png +0 -0
  18. package/lib/commonjs/assets/send.png +0 -0
  19. package/lib/commonjs/components/AppText.js +38 -0
  20. package/lib/commonjs/components/AppText.js.map +1 -0
  21. package/lib/commonjs/components/ChatList.js +268 -0
  22. package/lib/commonjs/components/ChatList.js.map +1 -0
  23. package/lib/commonjs/components/CustomerForm.js +213 -0
  24. package/lib/commonjs/components/CustomerForm.js.map +1 -0
  25. package/lib/commonjs/components/EmptyList.js +40 -0
  26. package/lib/commonjs/components/EmptyList.js.map +1 -0
  27. package/lib/commonjs/components/InitFailed.js +51 -0
  28. package/lib/commonjs/components/InitFailed.js.map +1 -0
  29. package/lib/commonjs/components/MessageInput.js +119 -0
  30. package/lib/commonjs/components/MessageInput.js.map +1 -0
  31. package/lib/commonjs/components/MessageItem.js +117 -0
  32. package/lib/commonjs/components/MessageItem.js.map +1 -0
  33. package/lib/commonjs/constants/translations.js +219 -0
  34. package/lib/commonjs/constants/translations.js.map +1 -0
  35. package/lib/commonjs/data/fake/conversations.js +95 -0
  36. package/lib/commonjs/data/fake/conversations.js.map +1 -0
  37. package/lib/commonjs/data/fake/customers.js +24 -0
  38. package/lib/commonjs/data/fake/customers.js.map +1 -0
  39. package/lib/commonjs/data/fake/messages.js +67 -0
  40. package/lib/commonjs/data/fake/messages.js.map +1 -0
  41. package/lib/commonjs/hooks/useLocalize.js +20 -0
  42. package/lib/commonjs/hooks/useLocalize.js.map +1 -0
  43. package/lib/commonjs/hooks/usePolling.js +50 -0
  44. package/lib/commonjs/hooks/usePolling.js.map +1 -0
  45. package/lib/commonjs/hooks/useThemeColors.js +17 -0
  46. package/lib/commonjs/hooks/useThemeColors.js.map +1 -0
  47. package/lib/commonjs/index.js +15 -6
  48. package/lib/commonjs/index.js.map +1 -1
  49. package/lib/commonjs/register.js +21 -0
  50. package/lib/commonjs/register.js.map +1 -0
  51. package/lib/commonjs/store.js +79 -0
  52. package/lib/commonjs/store.js.map +1 -0
  53. package/lib/commonjs/types/ApiOptions.js +2 -0
  54. package/lib/commonjs/types/ApiOptions.js.map +1 -0
  55. package/lib/commonjs/types/Conversation.js +2 -0
  56. package/lib/commonjs/types/Conversation.js.map +1 -0
  57. package/lib/commonjs/types/Customer.js +2 -0
  58. package/lib/commonjs/types/Customer.js.map +1 -0
  59. package/lib/commonjs/types/Language.js +2 -0
  60. package/lib/commonjs/types/Language.js.map +1 -0
  61. package/lib/commonjs/types/LocalizationKeys.js +2 -0
  62. package/lib/commonjs/types/LocalizationKeys.js.map +1 -0
  63. package/lib/commonjs/types/MessageResponse.js +2 -0
  64. package/lib/commonjs/types/MessageResponse.js.map +1 -0
  65. package/lib/commonjs/types/Theme.js +29 -0
  66. package/lib/commonjs/types/Theme.js.map +1 -0
  67. package/lib/commonjs/utils/date.js +17 -0
  68. package/lib/commonjs/utils/date.js.map +1 -0
  69. package/lib/module/App.js +55 -0
  70. package/lib/module/App.js.map +1 -0
  71. package/lib/module/__dev__.js +29 -0
  72. package/lib/module/__dev__.js.map +1 -0
  73. package/lib/module/api/api.js +17 -0
  74. package/lib/module/api/api.js.map +1 -0
  75. package/lib/module/api/conversations.js +32 -0
  76. package/lib/module/api/conversations.js.map +1 -0
  77. package/lib/module/api/customers.js +11 -0
  78. package/lib/module/api/customers.js.map +1 -0
  79. package/lib/module/api/index.js +6 -0
  80. package/lib/module/api/index.js.map +1 -0
  81. package/lib/module/api/messages.js +23 -0
  82. package/lib/module/api/messages.js.map +1 -0
  83. package/lib/module/assets/clock.png +0 -0
  84. package/lib/module/assets/double-check.png +0 -0
  85. package/lib/module/assets/down.png +0 -0
  86. package/lib/module/assets/send.png +0 -0
  87. package/lib/module/components/AppText.js +34 -0
  88. package/lib/module/components/AppText.js.map +1 -0
  89. package/lib/module/components/ChatList.js +265 -0
  90. package/lib/module/components/ChatList.js.map +1 -0
  91. package/lib/module/components/CustomerForm.js +209 -0
  92. package/lib/module/components/CustomerForm.js.map +1 -0
  93. package/lib/module/components/EmptyList.js +36 -0
  94. package/lib/module/components/EmptyList.js.map +1 -0
  95. package/lib/module/components/InitFailed.js +47 -0
  96. package/lib/module/components/InitFailed.js.map +1 -0
  97. package/lib/module/components/MessageInput.js +115 -0
  98. package/lib/module/components/MessageInput.js.map +1 -0
  99. package/lib/module/components/MessageItem.js +114 -0
  100. package/lib/module/components/MessageItem.js.map +1 -0
  101. package/lib/module/constants/translations.js +215 -0
  102. package/lib/module/constants/translations.js.map +1 -0
  103. package/lib/module/data/fake/conversations.js +88 -0
  104. package/lib/module/data/fake/conversations.js.map +1 -0
  105. package/lib/module/data/fake/customers.js +20 -0
  106. package/lib/module/data/fake/customers.js.map +1 -0
  107. package/lib/module/data/fake/messages.js +63 -0
  108. package/lib/module/data/fake/messages.js.map +1 -0
  109. package/lib/module/hooks/useLocalize.js +16 -0
  110. package/lib/module/hooks/useLocalize.js.map +1 -0
  111. package/lib/module/hooks/usePolling.js +46 -0
  112. package/lib/module/hooks/usePolling.js.map +1 -0
  113. package/lib/module/hooks/useThemeColors.js +13 -0
  114. package/lib/module/hooks/useThemeColors.js.map +1 -0
  115. package/lib/module/index.js +3 -4
  116. package/lib/module/index.js.map +1 -1
  117. package/lib/module/register.js +17 -0
  118. package/lib/module/register.js.map +1 -0
  119. package/lib/module/store.js +74 -0
  120. package/lib/module/store.js.map +1 -0
  121. package/lib/module/types/ApiOptions.js +2 -0
  122. package/lib/module/types/ApiOptions.js.map +1 -0
  123. package/lib/module/types/Conversation.js +2 -0
  124. package/lib/module/types/Conversation.js.map +1 -0
  125. package/lib/module/types/Customer.js +2 -0
  126. package/lib/module/types/Customer.js.map +1 -0
  127. package/lib/module/types/Language.js +2 -0
  128. package/lib/module/types/Language.js.map +1 -0
  129. package/lib/module/types/LocalizationKeys.js +2 -0
  130. package/lib/module/types/LocalizationKeys.js.map +1 -0
  131. package/lib/module/types/MessageResponse.js +2 -0
  132. package/lib/module/types/MessageResponse.js.map +1 -0
  133. package/lib/module/types/Theme.js +25 -0
  134. package/lib/module/types/Theme.js.map +1 -0
  135. package/lib/module/utils/date.js +12 -0
  136. package/lib/module/utils/date.js.map +1 -0
  137. package/lib/typescript/commonjs/src/App.d.ts +9 -0
  138. package/lib/typescript/commonjs/src/App.d.ts.map +1 -0
  139. package/lib/typescript/commonjs/src/__dev__.d.ts +2 -0
  140. package/lib/typescript/commonjs/src/__dev__.d.ts.map +1 -0
  141. package/lib/typescript/commonjs/src/api/api.d.ts +4 -0
  142. package/lib/typescript/commonjs/src/api/api.d.ts.map +1 -0
  143. package/lib/typescript/commonjs/src/api/conversations.d.ts +7 -0
  144. package/lib/typescript/commonjs/src/api/conversations.d.ts.map +1 -0
  145. package/lib/typescript/commonjs/src/api/customers.d.ts +4 -0
  146. package/lib/typescript/commonjs/src/api/customers.d.ts.map +1 -0
  147. package/lib/typescript/commonjs/src/api/index.d.ts +4 -0
  148. package/lib/typescript/commonjs/src/api/index.d.ts.map +1 -0
  149. package/lib/typescript/commonjs/src/api/messages.d.ts +4 -0
  150. package/lib/typescript/commonjs/src/api/messages.d.ts.map +1 -0
  151. package/lib/typescript/commonjs/src/components/AppText.d.ts +10 -0
  152. package/lib/typescript/commonjs/src/components/AppText.d.ts.map +1 -0
  153. package/lib/typescript/commonjs/src/components/ChatList.d.ts +2 -0
  154. package/lib/typescript/commonjs/src/components/ChatList.d.ts.map +1 -0
  155. package/lib/typescript/commonjs/src/components/CustomerForm.d.ts +2 -0
  156. package/lib/typescript/commonjs/src/components/CustomerForm.d.ts.map +1 -0
  157. package/lib/typescript/commonjs/src/components/EmptyList.d.ts +2 -0
  158. package/lib/typescript/commonjs/src/components/EmptyList.d.ts.map +1 -0
  159. package/lib/typescript/commonjs/src/components/InitFailed.d.ts +6 -0
  160. package/lib/typescript/commonjs/src/components/InitFailed.d.ts.map +1 -0
  161. package/lib/typescript/commonjs/src/components/MessageInput.d.ts +4 -0
  162. package/lib/typescript/commonjs/src/components/MessageInput.d.ts.map +1 -0
  163. package/lib/typescript/commonjs/src/components/MessageItem.d.ts +5 -0
  164. package/lib/typescript/commonjs/src/components/MessageItem.d.ts.map +1 -0
  165. package/lib/typescript/commonjs/src/constants/translations.d.ts +4 -0
  166. package/lib/typescript/commonjs/src/constants/translations.d.ts.map +1 -0
  167. package/lib/typescript/commonjs/src/data/fake/conversations.d.ts +5 -0
  168. package/lib/typescript/commonjs/src/data/fake/conversations.d.ts.map +1 -0
  169. package/lib/typescript/commonjs/src/data/fake/customers.d.ts +3 -0
  170. package/lib/typescript/commonjs/src/data/fake/customers.d.ts.map +1 -0
  171. package/lib/typescript/commonjs/src/data/fake/messages.d.ts +3 -0
  172. package/lib/typescript/commonjs/src/data/fake/messages.d.ts.map +1 -0
  173. package/lib/typescript/commonjs/src/hooks/useLocalize.d.ts +3 -0
  174. package/lib/typescript/commonjs/src/hooks/useLocalize.d.ts.map +1 -0
  175. package/lib/typescript/commonjs/src/hooks/usePolling.d.ts +2 -0
  176. package/lib/typescript/commonjs/src/hooks/usePolling.d.ts.map +1 -0
  177. package/lib/typescript/commonjs/src/hooks/useThemeColors.d.ts +3 -0
  178. package/lib/typescript/commonjs/src/hooks/useThemeColors.d.ts.map +1 -0
  179. package/lib/typescript/commonjs/src/index.d.ts +4 -1
  180. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  181. package/lib/typescript/commonjs/src/register.d.ts +5 -0
  182. package/lib/typescript/commonjs/src/register.d.ts.map +1 -0
  183. package/lib/typescript/commonjs/src/store.d.ts +35 -0
  184. package/lib/typescript/commonjs/src/store.d.ts.map +1 -0
  185. package/lib/typescript/commonjs/src/types/ApiOptions.d.ts +4 -0
  186. package/lib/typescript/commonjs/src/types/ApiOptions.d.ts.map +1 -0
  187. package/lib/typescript/commonjs/src/types/Conversation.d.ts +26 -0
  188. package/lib/typescript/commonjs/src/types/Conversation.d.ts.map +1 -0
  189. package/lib/typescript/commonjs/src/types/Customer.d.ts +30 -0
  190. package/lib/typescript/commonjs/src/types/Customer.d.ts.map +1 -0
  191. package/lib/typescript/commonjs/src/types/Language.d.ts +2 -0
  192. package/lib/typescript/commonjs/src/types/Language.d.ts.map +1 -0
  193. package/lib/typescript/commonjs/src/types/LocalizationKeys.d.ts +22 -0
  194. package/lib/typescript/commonjs/src/types/LocalizationKeys.d.ts.map +1 -0
  195. package/lib/typescript/commonjs/src/types/MessageResponse.d.ts +59 -0
  196. package/lib/typescript/commonjs/src/types/MessageResponse.d.ts.map +1 -0
  197. package/lib/typescript/commonjs/src/types/Theme.d.ts +18 -0
  198. package/lib/typescript/commonjs/src/types/Theme.d.ts.map +1 -0
  199. package/lib/typescript/commonjs/src/utils/date.d.ts +7 -0
  200. package/lib/typescript/commonjs/src/utils/date.d.ts.map +1 -0
  201. package/lib/typescript/module/src/App.d.ts +9 -0
  202. package/lib/typescript/module/src/App.d.ts.map +1 -0
  203. package/lib/typescript/module/src/__dev__.d.ts +2 -0
  204. package/lib/typescript/module/src/__dev__.d.ts.map +1 -0
  205. package/lib/typescript/module/src/api/api.d.ts +4 -0
  206. package/lib/typescript/module/src/api/api.d.ts.map +1 -0
  207. package/lib/typescript/module/src/api/conversations.d.ts +7 -0
  208. package/lib/typescript/module/src/api/conversations.d.ts.map +1 -0
  209. package/lib/typescript/module/src/api/customers.d.ts +4 -0
  210. package/lib/typescript/module/src/api/customers.d.ts.map +1 -0
  211. package/lib/typescript/module/src/api/index.d.ts +4 -0
  212. package/lib/typescript/module/src/api/index.d.ts.map +1 -0
  213. package/lib/typescript/module/src/api/messages.d.ts +4 -0
  214. package/lib/typescript/module/src/api/messages.d.ts.map +1 -0
  215. package/lib/typescript/module/src/components/AppText.d.ts +10 -0
  216. package/lib/typescript/module/src/components/AppText.d.ts.map +1 -0
  217. package/lib/typescript/module/src/components/ChatList.d.ts +2 -0
  218. package/lib/typescript/module/src/components/ChatList.d.ts.map +1 -0
  219. package/lib/typescript/module/src/components/CustomerForm.d.ts +2 -0
  220. package/lib/typescript/module/src/components/CustomerForm.d.ts.map +1 -0
  221. package/lib/typescript/module/src/components/EmptyList.d.ts +2 -0
  222. package/lib/typescript/module/src/components/EmptyList.d.ts.map +1 -0
  223. package/lib/typescript/module/src/components/InitFailed.d.ts +6 -0
  224. package/lib/typescript/module/src/components/InitFailed.d.ts.map +1 -0
  225. package/lib/typescript/module/src/components/MessageInput.d.ts +4 -0
  226. package/lib/typescript/module/src/components/MessageInput.d.ts.map +1 -0
  227. package/lib/typescript/module/src/components/MessageItem.d.ts +5 -0
  228. package/lib/typescript/module/src/components/MessageItem.d.ts.map +1 -0
  229. package/lib/typescript/module/src/constants/translations.d.ts +4 -0
  230. package/lib/typescript/module/src/constants/translations.d.ts.map +1 -0
  231. package/lib/typescript/module/src/data/fake/conversations.d.ts +5 -0
  232. package/lib/typescript/module/src/data/fake/conversations.d.ts.map +1 -0
  233. package/lib/typescript/module/src/data/fake/customers.d.ts +3 -0
  234. package/lib/typescript/module/src/data/fake/customers.d.ts.map +1 -0
  235. package/lib/typescript/module/src/data/fake/messages.d.ts +3 -0
  236. package/lib/typescript/module/src/data/fake/messages.d.ts.map +1 -0
  237. package/lib/typescript/module/src/hooks/useLocalize.d.ts +3 -0
  238. package/lib/typescript/module/src/hooks/useLocalize.d.ts.map +1 -0
  239. package/lib/typescript/module/src/hooks/usePolling.d.ts +2 -0
  240. package/lib/typescript/module/src/hooks/usePolling.d.ts.map +1 -0
  241. package/lib/typescript/module/src/hooks/useThemeColors.d.ts +3 -0
  242. package/lib/typescript/module/src/hooks/useThemeColors.d.ts.map +1 -0
  243. package/lib/typescript/module/src/index.d.ts +4 -1
  244. package/lib/typescript/module/src/index.d.ts.map +1 -1
  245. package/lib/typescript/module/src/register.d.ts +5 -0
  246. package/lib/typescript/module/src/register.d.ts.map +1 -0
  247. package/lib/typescript/module/src/store.d.ts +35 -0
  248. package/lib/typescript/module/src/store.d.ts.map +1 -0
  249. package/lib/typescript/module/src/types/ApiOptions.d.ts +4 -0
  250. package/lib/typescript/module/src/types/ApiOptions.d.ts.map +1 -0
  251. package/lib/typescript/module/src/types/Conversation.d.ts +26 -0
  252. package/lib/typescript/module/src/types/Conversation.d.ts.map +1 -0
  253. package/lib/typescript/module/src/types/Customer.d.ts +30 -0
  254. package/lib/typescript/module/src/types/Customer.d.ts.map +1 -0
  255. package/lib/typescript/module/src/types/Language.d.ts +2 -0
  256. package/lib/typescript/module/src/types/Language.d.ts.map +1 -0
  257. package/lib/typescript/module/src/types/LocalizationKeys.d.ts +22 -0
  258. package/lib/typescript/module/src/types/LocalizationKeys.d.ts.map +1 -0
  259. package/lib/typescript/module/src/types/MessageResponse.d.ts +59 -0
  260. package/lib/typescript/module/src/types/MessageResponse.d.ts.map +1 -0
  261. package/lib/typescript/module/src/types/Theme.d.ts +18 -0
  262. package/lib/typescript/module/src/types/Theme.d.ts.map +1 -0
  263. package/lib/typescript/module/src/utils/date.d.ts +7 -0
  264. package/lib/typescript/module/src/utils/date.d.ts.map +1 -0
  265. package/package.json +10 -2
  266. package/src/App.tsx +59 -0
  267. package/src/__dev__.ts +22 -0
  268. package/src/api/api.ts +16 -0
  269. package/src/api/conversations.ts +53 -0
  270. package/src/api/customers.ts +16 -0
  271. package/src/api/index.ts +6 -0
  272. package/src/api/messages.ts +33 -0
  273. package/src/assets/clock.png +0 -0
  274. package/src/assets/double-check.png +0 -0
  275. package/src/assets/down.png +0 -0
  276. package/src/assets/send.png +0 -0
  277. package/src/components/AppText.tsx +43 -0
  278. package/src/components/ChatList.tsx +305 -0
  279. package/src/components/CustomerForm.tsx +203 -0
  280. package/src/components/EmptyList.tsx +32 -0
  281. package/src/components/InitFailed.tsx +46 -0
  282. package/src/components/MessageInput.tsx +133 -0
  283. package/src/components/MessageItem.tsx +141 -0
  284. package/src/constants/translations.ts +232 -0
  285. package/src/data/fake/conversations.ts +558 -0
  286. package/src/data/fake/customers.ts +19 -0
  287. package/src/data/fake/messages.ts +64 -0
  288. package/src/hooks/useLocalize.ts +18 -0
  289. package/src/hooks/usePolling.ts +46 -0
  290. package/src/hooks/useThemeColors.ts +10 -0
  291. package/src/index.tsx +4 -5
  292. package/src/register.ts +17 -0
  293. package/src/store.ts +85 -0
  294. package/src/types/ApiOptions.ts +4 -0
  295. package/src/types/Conversation.ts +29 -0
  296. package/src/types/Customer.ts +31 -0
  297. package/src/types/Language.ts +11 -0
  298. package/src/types/LocalizationKeys.ts +21 -0
  299. package/src/types/MessageResponse.ts +58 -0
  300. package/src/types/Theme.ts +40 -0
  301. package/src/utils/date.ts +11 -0
  302. package/.editorconfig +0 -15
  303. package/.gitattributes +0 -3
  304. package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -68
  305. package/.github/ISSUE_TEMPLATE/config.yml +0 -8
  306. package/.github/actions/setup/action.yml +0 -36
  307. package/.github/workflows/ci.yml +0 -165
  308. package/.gitignore +0 -86
  309. package/.idea/.gitignore +0 -8
  310. package/.idea/codeStyles/Project.xml +0 -59
  311. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  312. package/.idea/comnyx-rn.iml +0 -12
  313. package/.idea/inspectionProfiles/Project_Default.xml +0 -6
  314. package/.idea/modules.xml +0 -8
  315. package/.idea/prettier.xml +0 -6
  316. package/.idea/vcs.xml +0 -6
  317. package/.idea/workspace.xml +0 -71
  318. package/.nvmrc +0 -1
  319. package/.watchmanconfig +0 -1
  320. package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +0 -541
  321. package/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +0 -28
  322. package/.yarn/releases/yarn-3.6.1.cjs +0 -874
  323. package/.yarnrc.yml +0 -10
  324. package/CODE_OF_CONDUCT.md +0 -133
  325. package/CONTRIBUTING.md +0 -130
  326. package/babel.config.js +0 -3
  327. package/example/.bundle/config +0 -2
  328. package/example/.watchmanconfig +0 -1
  329. package/example/Gemfile +0 -10
  330. package/example/README.md +0 -97
  331. package/example/android/app/build.gradle +0 -133
  332. package/example/android/app/debug.keystore +0 -0
  333. package/example/android/app/proguard-rules.pro +0 -10
  334. package/example/android/app/src/debug/AndroidManifest.xml +0 -9
  335. package/example/android/app/src/main/AndroidManifest.xml +0 -26
  336. package/example/android/app/src/main/java/comnyx/example/MainActivity.kt +0 -22
  337. package/example/android/app/src/main/java/comnyx/example/MainApplication.kt +0 -44
  338. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -37
  339. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  340. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  341. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  342. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  343. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  344. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  345. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  346. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  347. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  348. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  349. package/example/android/app/src/main/res/values/strings.xml +0 -3
  350. package/example/android/app/src/main/res/values/styles.xml +0 -9
  351. package/example/android/build.gradle +0 -21
  352. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  353. package/example/android/gradle/wrapper/gradle-wrapper.properties +0 -7
  354. package/example/android/gradle.properties +0 -39
  355. package/example/android/gradlew +0 -251
  356. package/example/android/gradlew.bat +0 -94
  357. package/example/android/settings.gradle +0 -6
  358. package/example/app.json +0 -4
  359. package/example/babel.config.js +0 -12
  360. package/example/index.js +0 -5
  361. package/example/ios/.xcode.env +0 -11
  362. package/example/ios/ComnyxExample/AppDelegate.swift +0 -30
  363. package/example/ios/ComnyxExample/Images.xcassets/AppIcon.appiconset/Contents.json +0 -53
  364. package/example/ios/ComnyxExample/Images.xcassets/Contents.json +0 -6
  365. package/example/ios/ComnyxExample/Info.plist +0 -52
  366. package/example/ios/ComnyxExample/LaunchScreen.storyboard +0 -47
  367. package/example/ios/ComnyxExample/PrivacyInfo.xcprivacy +0 -37
  368. package/example/ios/ComnyxExample.xcodeproj/project.pbxproj +0 -505
  369. package/example/ios/ComnyxExample.xcodeproj/xcshareddata/xcschemes/ComnyxExample.xcscheme +0 -88
  370. package/example/ios/Podfile +0 -43
  371. package/example/jest.config.js +0 -3
  372. package/example/metro.config.js +0 -18
  373. package/example/package.json +0 -31
  374. package/example/react-native.config.js +0 -21
  375. package/example/src/App.tsx +0 -20
  376. package/lefthook.yml +0 -14
  377. package/lib/typescript/commonjs/src/__tests__/index.test.d.ts +0 -1
  378. package/lib/typescript/commonjs/src/__tests__/index.test.d.ts.map +0 -1
  379. package/lib/typescript/module/src/__tests__/index.test.d.ts +0 -1
  380. package/lib/typescript/module/src/__tests__/index.test.d.ts.map +0 -1
  381. package/src/__tests__/index.test.tsx +0 -1
  382. package/tsconfig.build.json +0 -4
  383. package/tsconfig.json +0 -30
  384. package/turbo.json +0 -36
  385. package/yarn.lock +0 -9251
@@ -1,52 +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>CFBundleDevelopmentRegion</key>
6
- <string>en</string>
7
- <key>CFBundleDisplayName</key>
8
- <string>ComnyxExample</string>
9
- <key>CFBundleExecutable</key>
10
- <string>$(EXECUTABLE_NAME)</string>
11
- <key>CFBundleIdentifier</key>
12
- <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13
- <key>CFBundleInfoDictionaryVersion</key>
14
- <string>6.0</string>
15
- <key>CFBundleName</key>
16
- <string>$(PRODUCT_NAME)</string>
17
- <key>CFBundlePackageType</key>
18
- <string>APPL</string>
19
- <key>CFBundleShortVersionString</key>
20
- <string>$(MARKETING_VERSION)</string>
21
- <key>CFBundleSignature</key>
22
- <string>????</string>
23
- <key>CFBundleVersion</key>
24
- <string>$(CURRENT_PROJECT_VERSION)</string>
25
- <key>LSRequiresIPhoneOS</key>
26
- <true/>
27
- <key>NSAppTransportSecurity</key>
28
- <dict>
29
- <!-- Do not change NSAllowsArbitraryLoads to true, or you will risk app rejection! -->
30
- <key>NSAllowsArbitraryLoads</key>
31
- <false/>
32
- <key>NSAllowsLocalNetworking</key>
33
- <true/>
34
- </dict>
35
- <key>NSLocationWhenInUseUsageDescription</key>
36
- <string></string>
37
- <key>UILaunchStoryboardName</key>
38
- <string>LaunchScreen</string>
39
- <key>UIRequiredDeviceCapabilities</key>
40
- <array>
41
- <string>arm64</string>
42
- </array>
43
- <key>UISupportedInterfaceOrientations</key>
44
- <array>
45
- <string>UIInterfaceOrientationPortrait</string>
46
- <string>UIInterfaceOrientationLandscapeLeft</string>
47
- <string>UIInterfaceOrientationLandscapeRight</string>
48
- </array>
49
- <key>UIViewControllerBasedStatusBarAppearance</key>
50
- <false/>
51
- </dict>
52
- </plist>
@@ -1,47 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
3
- <device id="retina4_7" orientation="portrait" appearance="light"/>
4
- <dependencies>
5
- <deployment identifier="iOS"/>
6
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/>
7
- <capability name="Safe area layout guides" minToolsVersion="9.0"/>
8
- <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
9
- </dependencies>
10
- <scenes>
11
- <!--View Controller-->
12
- <scene sceneID="EHf-IW-A2E">
13
- <objects>
14
- <viewController id="01J-lp-oVM" sceneMemberID="viewController">
15
- <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
16
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
17
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
18
- <subviews>
19
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ComnyxExample" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
20
- <rect key="frame" x="0.0" y="202" width="375" height="43"/>
21
- <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
22
- <nil key="highlightedColor"/>
23
- </label>
24
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="MN2-I3-ftu">
25
- <rect key="frame" x="0.0" y="626" width="375" height="21"/>
26
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
27
- <nil key="highlightedColor"/>
28
- </label>
29
- </subviews>
30
- <color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
31
- <constraints>
32
- <constraint firstItem="Bcu-3y-fUS" firstAttribute="bottom" secondItem="MN2-I3-ftu" secondAttribute="bottom" constant="20" id="OZV-Vh-mqD"/>
33
- <constraint firstItem="Bcu-3y-fUS" firstAttribute="centerX" secondItem="GJd-Yh-RWb" secondAttribute="centerX" id="Q3B-4B-g5h"/>
34
- <constraint firstItem="MN2-I3-ftu" firstAttribute="centerX" secondItem="Bcu-3y-fUS" secondAttribute="centerX" id="akx-eg-2ui"/>
35
- <constraint firstItem="MN2-I3-ftu" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" id="i1E-0Y-4RG"/>
36
- <constraint firstItem="GJd-Yh-RWb" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="bottom" multiplier="1/3" constant="1" id="moa-c2-u7t"/>
37
- <constraint firstItem="GJd-Yh-RWb" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" symbolic="YES" id="x7j-FC-K8j"/>
38
- </constraints>
39
- <viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/>
40
- </view>
41
- </viewController>
42
- <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
43
- </objects>
44
- <point key="canvasLocation" x="52.173913043478265" y="375"/>
45
- </scene>
46
- </scenes>
47
- </document>
@@ -1,37 +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>NSPrivacyAccessedAPITypes</key>
6
- <array>
7
- <dict>
8
- <key>NSPrivacyAccessedAPIType</key>
9
- <string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
10
- <key>NSPrivacyAccessedAPITypeReasons</key>
11
- <array>
12
- <string>C617.1</string>
13
- </array>
14
- </dict>
15
- <dict>
16
- <key>NSPrivacyAccessedAPIType</key>
17
- <string>NSPrivacyAccessedAPICategoryUserDefaults</string>
18
- <key>NSPrivacyAccessedAPITypeReasons</key>
19
- <array>
20
- <string>CA92.1</string>
21
- </array>
22
- </dict>
23
- <dict>
24
- <key>NSPrivacyAccessedAPIType</key>
25
- <string>NSPrivacyAccessedAPICategorySystemBootTime</string>
26
- <key>NSPrivacyAccessedAPITypeReasons</key>
27
- <array>
28
- <string>35F9.1</string>
29
- </array>
30
- </dict>
31
- </array>
32
- <key>NSPrivacyCollectedDataTypes</key>
33
- <array/>
34
- <key>NSPrivacyTracking</key>
35
- <false/>
36
- </dict>
37
- </plist>
@@ -1,505 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 54;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 0C80B921A6F3F58F76C31292 /* libPods-ComnyxExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-ComnyxExample.a */; };
11
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
12
- 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
13
- 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
14
- /* End PBXBuildFile section */
15
-
16
- /* Begin PBXContainerItemProxy section */
17
- 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
18
- isa = PBXContainerItemProxy;
19
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
20
- proxyType = 1;
21
- remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
22
- remoteInfo = ComnyxExample;
23
- };
24
- /* End PBXContainerItemProxy section */
25
-
26
- /* Begin PBXFileReference section */
27
- 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
28
- 13B07F961A680F5B00A75B9A /* ComnyxExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ComnyxExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
29
- 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ComnyxExample/Images.xcassets; sourceTree = "<group>"; };
30
- 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ComnyxExample/Info.plist; sourceTree = "<group>"; };
31
- 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = ComnyxExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
32
- 3B4392A12AC88292D35C810B /* Pods-ComnyxExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ComnyxExample.debug.xcconfig"; path = "Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample.debug.xcconfig"; sourceTree = "<group>"; };
33
- 5709B34CF0A7D63546082F79 /* Pods-ComnyxExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ComnyxExample.release.xcconfig"; path = "Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample.release.xcconfig"; sourceTree = "<group>"; };
34
- 5DCACB8F33CDC322A6C60F78 /* libPods-ComnyxExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ComnyxExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
35
- 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = ComnyxExample/AppDelegate.swift; sourceTree = "<group>"; };
36
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ComnyxExample/LaunchScreen.storyboard; sourceTree = "<group>"; };
37
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
38
- /* End PBXFileReference section */
39
-
40
- /* Begin PBXFrameworksBuildPhase section */
41
- 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
42
- isa = PBXFrameworksBuildPhase;
43
- buildActionMask = 2147483647;
44
- files = (
45
- 0C80B921A6F3F58F76C31292 /* libPods-ComnyxExample.a in Frameworks */,
46
- );
47
- runOnlyForDeploymentPostprocessing = 0;
48
- };
49
- /* End PBXFrameworksBuildPhase section */
50
-
51
- /* Begin PBXGroup section */
52
- 00E356F01AD99517003FC87E /* Supporting Files */ = {
53
- isa = PBXGroup;
54
- children = (
55
- 00E356F11AD99517003FC87E /* Info.plist */,
56
- );
57
- name = "Supporting Files";
58
- sourceTree = "<group>";
59
- };
60
- 13B07FAE1A68108700A75B9A /* ComnyxExample */ = {
61
- isa = PBXGroup;
62
- children = (
63
- 13B07FB51A68108700A75B9A /* Images.xcassets */,
64
- 761780EC2CA45674006654EE /* AppDelegate.swift */,
65
- 13B07FB61A68108700A75B9A /* Info.plist */,
66
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
67
- 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
68
- );
69
- name = ComnyxExample;
70
- sourceTree = "<group>";
71
- };
72
- 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
73
- isa = PBXGroup;
74
- children = (
75
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
76
- 5DCACB8F33CDC322A6C60F78 /* libPods-ComnyxExample.a */,
77
- );
78
- name = Frameworks;
79
- sourceTree = "<group>";
80
- };
81
- 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
82
- isa = PBXGroup;
83
- children = (
84
- );
85
- name = Libraries;
86
- sourceTree = "<group>";
87
- };
88
- 83CBB9F61A601CBA00E9B192 = {
89
- isa = PBXGroup;
90
- children = (
91
- 13B07FAE1A68108700A75B9A /* ComnyxExample */,
92
- 832341AE1AAA6A7D00B99B32 /* Libraries */,
93
- 83CBBA001A601CBA00E9B192 /* Products */,
94
- 2D16E6871FA4F8E400B85C8A /* Frameworks */,
95
- BBD78D7AC51CEA395F1C20DB /* Pods */,
96
- );
97
- indentWidth = 2;
98
- sourceTree = "<group>";
99
- tabWidth = 2;
100
- usesTabs = 0;
101
- };
102
- 83CBBA001A601CBA00E9B192 /* Products */ = {
103
- isa = PBXGroup;
104
- children = (
105
- 13B07F961A680F5B00A75B9A /* ComnyxExample.app */,
106
- );
107
- name = Products;
108
- sourceTree = "<group>";
109
- };
110
- BBD78D7AC51CEA395F1C20DB /* Pods */ = {
111
- isa = PBXGroup;
112
- children = (
113
- 3B4392A12AC88292D35C810B /* Pods-ComnyxExample.debug.xcconfig */,
114
- 5709B34CF0A7D63546082F79 /* Pods-ComnyxExample.release.xcconfig */,
115
- );
116
- path = Pods;
117
- sourceTree = "<group>";
118
- };
119
- /* End PBXGroup section */
120
-
121
- /* Begin PBXNativeTarget section */
122
- 13B07F861A680F5B00A75B9A /* ComnyxExample */ = {
123
- isa = PBXNativeTarget;
124
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ComnyxExample" */;
125
- buildPhases = (
126
- C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
127
- 13B07F871A680F5B00A75B9A /* Sources */,
128
- 13B07F8C1A680F5B00A75B9A /* Frameworks */,
129
- 13B07F8E1A680F5B00A75B9A /* Resources */,
130
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
131
- 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
132
- E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
133
- );
134
- buildRules = (
135
- );
136
- dependencies = (
137
- );
138
- name = ComnyxExample;
139
- productName = ComnyxExample;
140
- productReference = 13B07F961A680F5B00A75B9A /* ComnyxExample.app */;
141
- productType = "com.apple.product-type.application";
142
- };
143
- /* End PBXNativeTarget section */
144
-
145
- /* Begin PBXProject section */
146
- 83CBB9F71A601CBA00E9B192 /* Project object */ = {
147
- isa = PBXProject;
148
- attributes = {
149
- LastUpgradeCheck = 1210;
150
- TargetAttributes = {
151
- 13B07F861A680F5B00A75B9A = {
152
- LastSwiftMigration = 1120;
153
- };
154
- };
155
- };
156
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ComnyxExample" */;
157
- compatibilityVersion = "Xcode 12.0";
158
- developmentRegion = en;
159
- hasScannedForEncodings = 0;
160
- knownRegions = (
161
- en,
162
- Base,
163
- );
164
- mainGroup = 83CBB9F61A601CBA00E9B192;
165
- productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
166
- projectDirPath = "";
167
- projectRoot = "";
168
- targets = (
169
- 13B07F861A680F5B00A75B9A /* ComnyxExample */,
170
- );
171
- };
172
- /* End PBXProject section */
173
-
174
- /* Begin PBXResourcesBuildPhase section */
175
- 00E356EC1AD99517003FC87E /* Resources */ = {
176
- isa = PBXResourcesBuildPhase;
177
- buildActionMask = 2147483647;
178
- files = (
179
- );
180
- runOnlyForDeploymentPostprocessing = 0;
181
- };
182
- 13B07F8E1A680F5B00A75B9A /* Resources */ = {
183
- isa = PBXResourcesBuildPhase;
184
- buildActionMask = 2147483647;
185
- files = (
186
- 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
187
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
188
- );
189
- runOnlyForDeploymentPostprocessing = 0;
190
- };
191
- /* End PBXResourcesBuildPhase section */
192
-
193
- /* Begin PBXShellScriptBuildPhase section */
194
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
195
- isa = PBXShellScriptBuildPhase;
196
- buildActionMask = 2147483647;
197
- files = (
198
- );
199
- inputPaths = (
200
- "$(SRCROOT)/.xcode.env.local",
201
- "$(SRCROOT)/.xcode.env",
202
- );
203
- name = "Bundle React Native code and images";
204
- outputPaths = (
205
- );
206
- runOnlyForDeploymentPostprocessing = 0;
207
- shellPath = /bin/sh;
208
- shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
209
- };
210
- 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
211
- isa = PBXShellScriptBuildPhase;
212
- buildActionMask = 2147483647;
213
- files = (
214
- );
215
- inputFileListPaths = (
216
- "${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
217
- );
218
- name = "[CP] Embed Pods Frameworks";
219
- outputFileListPaths = (
220
- "${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
221
- );
222
- runOnlyForDeploymentPostprocessing = 0;
223
- shellPath = /bin/sh;
224
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-frameworks.sh\"\n";
225
- showEnvVarsInLog = 0;
226
- };
227
- C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
228
- isa = PBXShellScriptBuildPhase;
229
- buildActionMask = 2147483647;
230
- files = (
231
- );
232
- inputFileListPaths = (
233
- );
234
- inputPaths = (
235
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
236
- "${PODS_ROOT}/Manifest.lock",
237
- );
238
- name = "[CP] Check Pods Manifest.lock";
239
- outputFileListPaths = (
240
- );
241
- outputPaths = (
242
- "$(DERIVED_FILE_DIR)/Pods-ComnyxExample-checkManifestLockResult.txt",
243
- );
244
- runOnlyForDeploymentPostprocessing = 0;
245
- shellPath = /bin/sh;
246
- 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";
247
- showEnvVarsInLog = 0;
248
- };
249
- E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
250
- isa = PBXShellScriptBuildPhase;
251
- buildActionMask = 2147483647;
252
- files = (
253
- );
254
- inputFileListPaths = (
255
- "${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-resources-${CONFIGURATION}-input-files.xcfilelist",
256
- );
257
- name = "[CP] Copy Pods Resources";
258
- outputFileListPaths = (
259
- "${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-resources-${CONFIGURATION}-output-files.xcfilelist",
260
- );
261
- runOnlyForDeploymentPostprocessing = 0;
262
- shellPath = /bin/sh;
263
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-resources.sh\"\n";
264
- showEnvVarsInLog = 0;
265
- };
266
- /* End PBXShellScriptBuildPhase section */
267
-
268
- /* Begin PBXSourcesBuildPhase section */
269
- 13B07F871A680F5B00A75B9A /* Sources */ = {
270
- isa = PBXSourcesBuildPhase;
271
- buildActionMask = 2147483647;
272
- files = (
273
- 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
274
- );
275
- runOnlyForDeploymentPostprocessing = 0;
276
- };
277
- /* End PBXSourcesBuildPhase section */
278
-
279
- /* Begin PBXTargetDependency section */
280
- 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
281
- isa = PBXTargetDependency;
282
- target = 13B07F861A680F5B00A75B9A /* ComnyxExample */;
283
- targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
284
- };
285
- /* End PBXTargetDependency section */
286
-
287
- /* Begin XCBuildConfiguration section */
288
- 13B07F941A680F5B00A75B9A /* Debug */ = {
289
- isa = XCBuildConfiguration;
290
- baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-ComnyxExample.debug.xcconfig */;
291
- buildSettings = {
292
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
293
- CLANG_ENABLE_MODULES = YES;
294
- CURRENT_PROJECT_VERSION = 1;
295
- ENABLE_BITCODE = NO;
296
- INFOPLIST_FILE = ComnyxExample/Info.plist;
297
- IPHONEOS_DEPLOYMENT_TARGET = 15.1;
298
- LD_RUNPATH_SEARCH_PATHS = (
299
- "$(inherited)",
300
- "@executable_path/Frameworks",
301
- );
302
- MARKETING_VERSION = 1.0;
303
- OTHER_LDFLAGS = (
304
- "$(inherited)",
305
- "-ObjC",
306
- "-lc++",
307
- );
308
- PRODUCT_BUNDLE_IDENTIFIER = "comnyx.example";
309
- PRODUCT_NAME = ComnyxExample;
310
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
311
- SWIFT_VERSION = 5.0;
312
- VERSIONING_SYSTEM = "apple-generic";
313
- };
314
- name = Debug;
315
- };
316
- 13B07F951A680F5B00A75B9A /* Release */ = {
317
- isa = XCBuildConfiguration;
318
- baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-ComnyxExample.release.xcconfig */;
319
- buildSettings = {
320
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
321
- CLANG_ENABLE_MODULES = YES;
322
- CURRENT_PROJECT_VERSION = 1;
323
- INFOPLIST_FILE = ComnyxExample/Info.plist;
324
- IPHONEOS_DEPLOYMENT_TARGET = 15.1;
325
- LD_RUNPATH_SEARCH_PATHS = (
326
- "$(inherited)",
327
- "@executable_path/Frameworks",
328
- );
329
- MARKETING_VERSION = 1.0;
330
- OTHER_LDFLAGS = (
331
- "$(inherited)",
332
- "-ObjC",
333
- "-lc++",
334
- );
335
- PRODUCT_BUNDLE_IDENTIFIER = "comnyx.example";
336
- PRODUCT_NAME = ComnyxExample;
337
- SWIFT_VERSION = 5.0;
338
- VERSIONING_SYSTEM = "apple-generic";
339
- };
340
- name = Release;
341
- };
342
- 83CBBA201A601CBA00E9B192 /* Debug */ = {
343
- isa = XCBuildConfiguration;
344
- buildSettings = {
345
- ALWAYS_SEARCH_USER_PATHS = NO;
346
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
347
- CLANG_CXX_LANGUAGE_STANDARD = "c++20";
348
- CLANG_CXX_LIBRARY = "libc++";
349
- CLANG_ENABLE_MODULES = YES;
350
- CLANG_ENABLE_OBJC_ARC = YES;
351
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
352
- CLANG_WARN_BOOL_CONVERSION = YES;
353
- CLANG_WARN_COMMA = YES;
354
- CLANG_WARN_CONSTANT_CONVERSION = YES;
355
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
356
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
357
- CLANG_WARN_EMPTY_BODY = YES;
358
- CLANG_WARN_ENUM_CONVERSION = YES;
359
- CLANG_WARN_INFINITE_RECURSION = YES;
360
- CLANG_WARN_INT_CONVERSION = YES;
361
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
362
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
363
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
364
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
365
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
366
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
367
- CLANG_WARN_STRICT_PROTOTYPES = YES;
368
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
369
- CLANG_WARN_UNREACHABLE_CODE = YES;
370
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
371
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
372
- COPY_PHASE_STRIP = NO;
373
- ENABLE_STRICT_OBJC_MSGSEND = YES;
374
- ENABLE_TESTABILITY = YES;
375
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
376
- GCC_C_LANGUAGE_STANDARD = gnu99;
377
- GCC_DYNAMIC_NO_PIC = NO;
378
- GCC_NO_COMMON_BLOCKS = YES;
379
- GCC_OPTIMIZATION_LEVEL = 0;
380
- GCC_PREPROCESSOR_DEFINITIONS = (
381
- "DEBUG=1",
382
- "$(inherited)",
383
- );
384
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
385
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
386
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
387
- GCC_WARN_UNDECLARED_SELECTOR = YES;
388
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
389
- GCC_WARN_UNUSED_FUNCTION = YES;
390
- GCC_WARN_UNUSED_VARIABLE = YES;
391
- IPHONEOS_DEPLOYMENT_TARGET = 15.1;
392
- LD_RUNPATH_SEARCH_PATHS = (
393
- /usr/lib/swift,
394
- "$(inherited)",
395
- );
396
- LIBRARY_SEARCH_PATHS = (
397
- "\"$(SDKROOT)/usr/lib/swift\"",
398
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
399
- "\"$(inherited)\"",
400
- );
401
- MTL_ENABLE_DEBUG_INFO = YES;
402
- ONLY_ACTIVE_ARCH = YES;
403
- OTHER_CPLUSPLUSFLAGS = (
404
- "$(OTHER_CFLAGS)",
405
- "-DFOLLY_NO_CONFIG",
406
- "-DFOLLY_MOBILE=1",
407
- "-DFOLLY_USE_LIBCPP=1",
408
- "-DFOLLY_CFG_NO_COROUTINES=1",
409
- "-DFOLLY_HAVE_CLOCK_GETTIME=1",
410
- );
411
- SDKROOT = iphoneos;
412
- };
413
- name = Debug;
414
- };
415
- 83CBBA211A601CBA00E9B192 /* Release */ = {
416
- isa = XCBuildConfiguration;
417
- buildSettings = {
418
- ALWAYS_SEARCH_USER_PATHS = NO;
419
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
420
- CLANG_CXX_LANGUAGE_STANDARD = "c++20";
421
- CLANG_CXX_LIBRARY = "libc++";
422
- CLANG_ENABLE_MODULES = YES;
423
- CLANG_ENABLE_OBJC_ARC = YES;
424
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
425
- CLANG_WARN_BOOL_CONVERSION = YES;
426
- CLANG_WARN_COMMA = YES;
427
- CLANG_WARN_CONSTANT_CONVERSION = YES;
428
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
429
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
430
- CLANG_WARN_EMPTY_BODY = YES;
431
- CLANG_WARN_ENUM_CONVERSION = YES;
432
- CLANG_WARN_INFINITE_RECURSION = YES;
433
- CLANG_WARN_INT_CONVERSION = YES;
434
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
435
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
436
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
437
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
438
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
439
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
440
- CLANG_WARN_STRICT_PROTOTYPES = YES;
441
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
442
- CLANG_WARN_UNREACHABLE_CODE = YES;
443
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
444
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
445
- COPY_PHASE_STRIP = YES;
446
- ENABLE_NS_ASSERTIONS = NO;
447
- ENABLE_STRICT_OBJC_MSGSEND = YES;
448
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
449
- GCC_C_LANGUAGE_STANDARD = gnu99;
450
- GCC_NO_COMMON_BLOCKS = YES;
451
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
452
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
453
- GCC_WARN_UNDECLARED_SELECTOR = YES;
454
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
455
- GCC_WARN_UNUSED_FUNCTION = YES;
456
- GCC_WARN_UNUSED_VARIABLE = YES;
457
- IPHONEOS_DEPLOYMENT_TARGET = 15.1;
458
- LD_RUNPATH_SEARCH_PATHS = (
459
- /usr/lib/swift,
460
- "$(inherited)",
461
- );
462
- LIBRARY_SEARCH_PATHS = (
463
- "\"$(SDKROOT)/usr/lib/swift\"",
464
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
465
- "\"$(inherited)\"",
466
- );
467
- MTL_ENABLE_DEBUG_INFO = NO;
468
- OTHER_CPLUSPLUSFLAGS = (
469
- "$(OTHER_CFLAGS)",
470
- "-DFOLLY_NO_CONFIG",
471
- "-DFOLLY_MOBILE=1",
472
- "-DFOLLY_USE_LIBCPP=1",
473
- "-DFOLLY_CFG_NO_COROUTINES=1",
474
- "-DFOLLY_HAVE_CLOCK_GETTIME=1",
475
- );
476
- SDKROOT = iphoneos;
477
- VALIDATE_PRODUCT = YES;
478
- };
479
- name = Release;
480
- };
481
- /* End XCBuildConfiguration section */
482
-
483
- /* Begin XCConfigurationList section */
484
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ComnyxExample" */ = {
485
- isa = XCConfigurationList;
486
- buildConfigurations = (
487
- 13B07F941A680F5B00A75B9A /* Debug */,
488
- 13B07F951A680F5B00A75B9A /* Release */,
489
- );
490
- defaultConfigurationIsVisible = 0;
491
- defaultConfigurationName = Release;
492
- };
493
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ComnyxExample" */ = {
494
- isa = XCConfigurationList;
495
- buildConfigurations = (
496
- 83CBBA201A601CBA00E9B192 /* Debug */,
497
- 83CBBA211A601CBA00E9B192 /* Release */,
498
- );
499
- defaultConfigurationIsVisible = 0;
500
- defaultConfigurationName = Release;
501
- };
502
- /* End XCConfigurationList section */
503
- };
504
- rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
505
- }