@regulaforensics/face-sdk 7.1.210-rc → 7.1.252-beta

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 (305) hide show
  1. package/README.md +1 -1
  2. package/RNFaceSDK.podspec +3 -3
  3. package/android/CVDFaceSDK.kt +22 -8
  4. package/android/build.gradle +1 -1
  5. package/android/cordova.gradle +1 -1
  6. package/android/src/main/java/com/regula/plugin/facesdk/Config.kt +9 -1
  7. package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +2 -0
  8. package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +15 -9
  9. package/android/src/main/java/com/regula/plugin/facesdk/RNFaceApiModule.kt +16 -6
  10. package/android/src/main/java/com/regula/plugin/facesdk/Utils.kt +32 -2
  11. package/examples/capacitor/README.md +3 -8
  12. package/examples/capacitor/android/app/build.gradle +2 -6
  13. package/examples/capacitor/android/app/capacitor.build.gradle +4 -4
  14. package/examples/capacitor/android/app/src/main/AndroidManifest.xml +3 -16
  15. package/examples/capacitor/android/app/src/main/java/com/regula/{faceapi → documentreader}/MainActivity.java +1 -1
  16. package/examples/capacitor/android/app/src/main/res/values/strings.xml +2 -2
  17. package/examples/capacitor/android/build.gradle +1 -1
  18. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  19. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +2 -1
  20. package/examples/capacitor/android/gradlew +21 -13
  21. package/examples/capacitor/android/gradlew.bat +12 -10
  22. package/examples/capacitor/android/variables.gradle +11 -11
  23. package/examples/capacitor/index.html +8 -104
  24. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +4 -4
  25. package/examples/capacitor/ios/App/Podfile +2 -3
  26. package/examples/capacitor/ios/App/Podfile.lock +57 -0
  27. package/examples/capacitor/package-lock.json +3536 -0
  28. package/examples/capacitor/package.json +19 -56
  29. package/examples/capacitor/public/images/portrait.png +0 -0
  30. package/examples/capacitor/scripts/setup.sh +2 -0
  31. package/examples/capacitor/src/main.css +77 -0
  32. package/examples/capacitor/src/main.html +22 -0
  33. package/examples/capacitor/src/main.tsx +152 -11
  34. package/examples/capacitor/tsconfig.json +1 -17
  35. package/examples/capacitor/vite.config.ts +10 -9
  36. package/examples/cordova/README.md +4 -6
  37. package/examples/cordova/config.xml +4 -15
  38. package/examples/cordova/package-lock.json +1333 -0
  39. package/examples/cordova/package.json +8 -12
  40. package/examples/cordova/scripts/setup.sh +4 -1
  41. package/examples/cordova/www/images/portrait.png +0 -0
  42. package/examples/cordova/www/index.html +19 -92
  43. package/examples/cordova/www/src/main.css +77 -0
  44. package/examples/cordova/www/src/main.html +22 -0
  45. package/examples/cordova/www/{js/index.js → src/main.js} +41 -43
  46. package/examples/ionic/README.md +3 -6
  47. package/examples/ionic/angular.json +6 -154
  48. package/examples/ionic/config.xml +4 -93
  49. package/examples/ionic/index.html +19 -0
  50. package/examples/ionic/index.ts +17 -0
  51. package/examples/ionic/package-lock.json +13777 -0
  52. package/examples/ionic/package.json +24 -75
  53. package/examples/ionic/scripts/setup.sh +4 -1
  54. package/examples/ionic/src/images/portrait.png +0 -0
  55. package/examples/ionic/src/main.css +77 -0
  56. package/examples/ionic/src/main.html +22 -0
  57. package/examples/ionic/src/main.ts +157 -8
  58. package/examples/ionic/tsconfig.json +6 -20
  59. package/examples/react-native/Gemfile +7 -0
  60. package/examples/react-native/Gemfile.lock +28 -21
  61. package/examples/react-native/README.md +4 -10
  62. package/examples/react-native/android/app/build.gradle +2 -70
  63. package/examples/react-native/android/app/src/main/AndroidManifest.xml +21 -21
  64. package/examples/react-native/android/app/src/main/java/com/regula/{face/api → documentreader}/MainActivity.kt +2 -2
  65. package/examples/react-native/android/app/src/main/java/com/regula/{face/api → documentreader}/MainApplication.kt +1 -1
  66. package/examples/react-native/android/build.gradle +3 -3
  67. package/examples/react-native/android/gradle/wrapper/gradle-wrapper.properties +1 -1
  68. package/examples/react-native/android/gradle.properties +0 -34
  69. package/examples/react-native/android/gradlew +1 -2
  70. package/examples/react-native/android/settings.gradle +1 -1
  71. package/examples/react-native/images/portrait.png +0 -0
  72. package/examples/react-native/index.html +11 -0
  73. package/examples/react-native/index.tsx +51 -0
  74. package/examples/react-native/ios/{FaceSDK → App}/AppDelegate.mm +1 -1
  75. package/examples/react-native/ios/{FaceSDK.xcodeproj → App.xcodeproj}/project.pbxproj +52 -269
  76. package/examples/react-native/ios/{FaceSDK.xcodeproj/xcshareddata/xcschemes/FaceSDK.xcscheme → App.xcodeproj/xcshareddata/xcschemes/App.xcscheme} +9 -27
  77. package/examples/react-native/ios/{FaceSDK.xcworkspace → App.xcworkspace}/contents.xcworkspacedata +1 -1
  78. package/examples/react-native/ios/Podfile +3 -6
  79. package/examples/react-native/ios/Podfile.lock +565 -512
  80. package/examples/react-native/metro.config.js +16 -11
  81. package/examples/react-native/package-lock.json +2121 -6901
  82. package/examples/react-native/package.json +12 -34
  83. package/examples/react-native/patches/react-native-webview+13.13.5.patch +36 -0
  84. package/examples/react-native/scripts/android.sh +5 -0
  85. package/examples/react-native/scripts/ios.sh +5 -1
  86. package/examples/react-native/src/main.css +77 -0
  87. package/examples/react-native/src/main.html +22 -0
  88. package/examples/react-native/{App.tsx → src/main.tsx} +19 -86
  89. package/ios/RFSWConfig.m +7 -1
  90. package/ios/RFSWJSONConstructor.h +2 -0
  91. package/ios/RFSWJSONConstructor.m +32 -15
  92. package/ios/RFSWMain.m +1 -1
  93. package/package.json +1 -1
  94. package/plugin.xml +4 -4
  95. package/www/capacitor/detect_faces/detect_faces_request.js +2 -0
  96. package/www/capacitor/face_capture/face_capture_config.js +6 -2
  97. package/www/capacitor/image_quality/image_quality_characteristic.js +2 -0
  98. package/www/capacitor/image_quality/image_quality_group.js +1 -0
  99. package/www/capacitor/init/init_config.js +8 -0
  100. package/www/capacitor/internal/bridge.js +8 -7
  101. package/www/capacitor/liveness/liveness_backend_exception.js +8 -0
  102. package/www/capacitor/liveness/liveness_config.js +3 -3
  103. package/www/capacitor/person_database/person_database.js +1 -1
  104. package/www/cordova.js +109 -80
  105. package/www/react-native/detect_faces/detect_faces_request.js +2 -0
  106. package/www/react-native/face_capture/face_capture_config.js +6 -2
  107. package/www/react-native/image_quality/image_quality_characteristic.js +2 -0
  108. package/www/react-native/image_quality/image_quality_group.js +1 -0
  109. package/www/react-native/init/init_config.js +8 -0
  110. package/www/react-native/internal/bridge.js +8 -7
  111. package/www/react-native/liveness/liveness_backend_exception.js +8 -0
  112. package/www/react-native/liveness/liveness_config.js +3 -3
  113. package/www/react-native/person_database/person_database.js +1 -1
  114. package/www/types/face_capture/face_capture_config.d.ts +6 -1
  115. package/www/types/init/init_config.d.ts +7 -1
  116. package/www/types/liveness/liveness_backend_exception.d.ts +9 -1
  117. package/www/types/liveness/liveness_config.d.ts +1 -1
  118. package/www/types/person_database/person_database.d.ts +1 -1
  119. package/.gitlab/report.yaml +0 -75
  120. package/.gitlab-ci.yml +0 -49
  121. package/examples/capacitor/.browserslistrc +0 -6
  122. package/examples/capacitor/.eslintrc.js +0 -17
  123. package/examples/capacitor/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java +0 -26
  124. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_background.xml +0 -170
  125. package/examples/capacitor/android/app/src/main/res/drawable-land-hdpi/splash.png +0 -0
  126. package/examples/capacitor/android/app/src/main/res/drawable-land-mdpi/splash.png +0 -0
  127. package/examples/capacitor/android/app/src/main/res/drawable-land-xhdpi/splash.png +0 -0
  128. package/examples/capacitor/android/app/src/main/res/drawable-land-xxhdpi/splash.png +0 -0
  129. package/examples/capacitor/android/app/src/main/res/drawable-land-xxxhdpi/splash.png +0 -0
  130. package/examples/capacitor/android/app/src/main/res/drawable-port-hdpi/splash.png +0 -0
  131. package/examples/capacitor/android/app/src/main/res/drawable-port-mdpi/splash.png +0 -0
  132. package/examples/capacitor/android/app/src/main/res/drawable-port-xhdpi/splash.png +0 -0
  133. package/examples/capacitor/android/app/src/main/res/drawable-port-xxhdpi/splash.png +0 -0
  134. package/examples/capacitor/android/app/src/main/res/drawable-port-xxxhdpi/splash.png +0 -0
  135. package/examples/capacitor/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +0 -34
  136. package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +0 -5
  137. package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +0 -5
  138. package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  139. package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  140. package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  141. package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  142. package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  143. package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  144. package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  145. package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  146. package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  147. package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  148. package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  149. package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  150. package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  151. package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  152. package/examples/capacitor/android/app/src/main/res/values/ic_launcher_background.xml +0 -4
  153. package/examples/capacitor/android/app/src/main/res/xml/file_paths.xml +0 -5
  154. package/examples/capacitor/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java +0 -18
  155. package/examples/capacitor/capacitor.config.ts +0 -12
  156. package/examples/capacitor/cypress/e2e/test.cy.ts +0 -6
  157. package/examples/capacitor/cypress/fixtures/example.json +0 -5
  158. package/examples/capacitor/cypress/support/commands.ts +0 -37
  159. package/examples/capacitor/cypress/support/e2e.ts +0 -20
  160. package/examples/capacitor/cypress.config.ts +0 -10
  161. package/examples/capacitor/public/assets/img/id.png +0 -0
  162. package/examples/capacitor/public/assets/img/portrait.png +0 -0
  163. package/examples/capacitor/public/favicon.png +0 -0
  164. package/examples/capacitor/public/manifest.json +0 -21
  165. package/examples/capacitor/src/App.test.tsx +0 -8
  166. package/examples/capacitor/src/App.tsx +0 -42
  167. package/examples/capacitor/src/components/ExploreContainer.css +0 -24
  168. package/examples/capacitor/src/components/ExploreContainer.tsx +0 -14
  169. package/examples/capacitor/src/pages/Home.tsx +0 -159
  170. package/examples/capacitor/src/setupTests.ts +0 -14
  171. package/examples/capacitor/src/theme/variables.css +0 -242
  172. package/examples/capacitor/src/vite-env.d.ts +0 -1
  173. package/examples/capacitor/tsconfig.node.json +0 -9
  174. package/examples/cordova/jsconfig.json +0 -1
  175. package/examples/cordova/www/css/index.css +0 -107
  176. package/examples/cordova/www/img/id.png +0 -0
  177. package/examples/cordova/www/img/portrait.png +0 -0
  178. package/examples/ionic/browserslist +0 -12
  179. package/examples/ionic/e2e/protractor.conf.js +0 -28
  180. package/examples/ionic/e2e/src/app.e2e-spec.ts +0 -14
  181. package/examples/ionic/e2e/src/app.po.ts +0 -11
  182. package/examples/ionic/e2e/tsconfig.json +0 -13
  183. package/examples/ionic/karma.conf.js +0 -31
  184. package/examples/ionic/resources/README.md +0 -8
  185. package/examples/ionic/resources/android/icon/drawable-hdpi-icon.png +0 -0
  186. package/examples/ionic/resources/android/icon/drawable-ldpi-icon.png +0 -0
  187. package/examples/ionic/resources/android/icon/drawable-mdpi-icon.png +0 -0
  188. package/examples/ionic/resources/android/icon/drawable-xhdpi-icon.png +0 -0
  189. package/examples/ionic/resources/android/icon/drawable-xxhdpi-icon.png +0 -0
  190. package/examples/ionic/resources/android/icon/drawable-xxxhdpi-icon.png +0 -0
  191. package/examples/ionic/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
  192. package/examples/ionic/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
  193. package/examples/ionic/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
  194. package/examples/ionic/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
  195. package/examples/ionic/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
  196. package/examples/ionic/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
  197. package/examples/ionic/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
  198. package/examples/ionic/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
  199. package/examples/ionic/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
  200. package/examples/ionic/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
  201. package/examples/ionic/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
  202. package/examples/ionic/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
  203. package/examples/ionic/resources/android/xml/network_security_config.xml +0 -6
  204. package/examples/ionic/resources/ios/icon/icon-1024.png +0 -0
  205. package/examples/ionic/resources/ios/icon/icon-20.png +0 -0
  206. package/examples/ionic/resources/ios/icon/icon-20@2x.png +0 -0
  207. package/examples/ionic/resources/ios/icon/icon-20@3x.png +0 -0
  208. package/examples/ionic/resources/ios/icon/icon-24@2x.png +0 -0
  209. package/examples/ionic/resources/ios/icon/icon-27.5@2x.png +0 -0
  210. package/examples/ionic/resources/ios/icon/icon-29.png +0 -0
  211. package/examples/ionic/resources/ios/icon/icon-29@2x.png +0 -0
  212. package/examples/ionic/resources/ios/icon/icon-29@3x.png +0 -0
  213. package/examples/ionic/resources/ios/icon/icon-40.png +0 -0
  214. package/examples/ionic/resources/ios/icon/icon-40@2x.png +0 -0
  215. package/examples/ionic/resources/ios/icon/icon-40@3x.png +0 -0
  216. package/examples/ionic/resources/ios/icon/icon-44@2x.png +0 -0
  217. package/examples/ionic/resources/ios/icon/icon-50.png +0 -0
  218. package/examples/ionic/resources/ios/icon/icon-50@2x.png +0 -0
  219. package/examples/ionic/resources/ios/icon/icon-60.png +0 -0
  220. package/examples/ionic/resources/ios/icon/icon-60@2x.png +0 -0
  221. package/examples/ionic/resources/ios/icon/icon-60@3x.png +0 -0
  222. package/examples/ionic/resources/ios/icon/icon-72.png +0 -0
  223. package/examples/ionic/resources/ios/icon/icon-72@2x.png +0 -0
  224. package/examples/ionic/resources/ios/icon/icon-76.png +0 -0
  225. package/examples/ionic/resources/ios/icon/icon-76@2x.png +0 -0
  226. package/examples/ionic/resources/ios/icon/icon-83.5@2x.png +0 -0
  227. package/examples/ionic/resources/ios/icon/icon-86@2x.png +0 -0
  228. package/examples/ionic/resources/ios/icon/icon-98@2x.png +0 -0
  229. package/examples/ionic/resources/ios/icon/icon-small.png +0 -0
  230. package/examples/ionic/resources/ios/icon/icon-small@2x.png +0 -0
  231. package/examples/ionic/resources/ios/icon/icon-small@3x.png +0 -0
  232. package/examples/ionic/resources/ios/icon/icon.png +0 -0
  233. package/examples/ionic/resources/ios/icon/icon@2x.png +0 -0
  234. package/examples/ionic/resources/ios/splash/Default-2436h.png +0 -0
  235. package/examples/ionic/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
  236. package/examples/ionic/resources/ios/splash/Default-667h.png +0 -0
  237. package/examples/ionic/resources/ios/splash/Default-736h.png +0 -0
  238. package/examples/ionic/resources/ios/splash/Default-Landscape-2436h.png +0 -0
  239. package/examples/ionic/resources/ios/splash/Default-Landscape-736h.png +0 -0
  240. package/examples/ionic/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
  241. package/examples/ionic/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
  242. package/examples/ionic/resources/ios/splash/Default-Landscape~ipad.png +0 -0
  243. package/examples/ionic/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
  244. package/examples/ionic/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
  245. package/examples/ionic/resources/ios/splash/Default-Portrait~ipad.png +0 -0
  246. package/examples/ionic/resources/ios/splash/Default@2x~iphone.png +0 -0
  247. package/examples/ionic/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
  248. package/examples/ionic/resources/ios/splash/Default~iphone.png +0 -0
  249. package/examples/ionic/resources/splash.png +0 -0
  250. package/examples/ionic/src/app/app-routing.module.ts +0 -15
  251. package/examples/ionic/src/app/app.component.html +0 -3
  252. package/examples/ionic/src/app/app.component.spec.ts +0 -47
  253. package/examples/ionic/src/app/app.component.ts +0 -27
  254. package/examples/ionic/src/app/app.module.ts +0 -23
  255. package/examples/ionic/src/app/home/home.module.ts +0 -29
  256. package/examples/ionic/src/app/home/home.page.html +0 -75
  257. package/examples/ionic/src/app/home/home.page.scss +0 -1
  258. package/examples/ionic/src/app/home/home.page.spec.ts +0 -24
  259. package/examples/ionic/src/app/home/home.page.ts +0 -166
  260. package/examples/ionic/src/assets/icon/favicon.png +0 -0
  261. package/examples/ionic/src/assets/img/portrait.png +0 -0
  262. package/examples/ionic/src/assets/shapes.svg +0 -1
  263. package/examples/ionic/src/environments/environment.prod.ts +0 -3
  264. package/examples/ionic/src/environments/environment.ts +0 -16
  265. package/examples/ionic/src/global.scss +0 -31
  266. package/examples/ionic/src/index.html +0 -25
  267. package/examples/ionic/src/polyfills.ts +0 -66
  268. package/examples/ionic/src/test.ts +0 -20
  269. package/examples/ionic/src/theme/variables.scss +0 -77
  270. package/examples/ionic/src/zone-flags.ts +0 -5
  271. package/examples/ionic/tsconfig.app.json +0 -14
  272. package/examples/ionic/tsconfig.spec.json +0 -19
  273. package/examples/ionic/tslint.json +0 -88
  274. package/examples/react-native/.watchmanconfig +0 -1
  275. package/examples/react-native/android/app/proguard-rules.pro +0 -10
  276. package/examples/react-native/android/app/src/debug/AndroidManifest.xml +0 -9
  277. package/examples/react-native/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -37
  278. package/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  279. package/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  280. package/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  281. package/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  282. package/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  283. package/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  284. package/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  285. package/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  286. package/examples/react-native/android/app/src/main/res/values/strings.xml +0 -3
  287. package/examples/react-native/android/app/src/main/res/values/styles.xml +0 -9
  288. package/examples/react-native/app.json +0 -5
  289. package/examples/react-native/index.js +0 -5
  290. package/examples/react-native/ios/FaceSDKTests/FaceSDKTests.m +0 -66
  291. package/examples/react-native/ios/FaceSDKTests/Info.plist +0 -24
  292. /package/examples/capacitor/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher.png +0 -0
  293. /package/examples/cordova/www/{img → images}/logo.png +0 -0
  294. /package/examples/ionic/src/{app/app.component.scss → assets/.gitkeep} +0 -0
  295. /package/examples/ionic/{resources → src/images}/icon.png +0 -0
  296. /package/examples/react-native/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher.png +0 -0
  297. /package/examples/react-native/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher_round.png +0 -0
  298. /package/examples/react-native/ios/{FaceSDK → App}/AppDelegate.h +0 -0
  299. /package/examples/react-native/ios/{FaceSDK → App}/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
  300. /package/examples/react-native/ios/{FaceSDK → App}/Images.xcassets/Contents.json +0 -0
  301. /package/examples/react-native/ios/{FaceSDK → App}/Info.plist +0 -0
  302. /package/examples/react-native/ios/{FaceSDK → App}/LaunchScreen.storyboard +0 -0
  303. /package/examples/react-native/ios/{FaceSDK → App}/PrivacyInfo.xcprivacy +0 -0
  304. /package/examples/react-native/ios/{FaceSDK → App}/main.m +0 -0
  305. /package/examples/react-native/ios/{FaceSDK.xcworkspace → App.xcworkspace}/xcshareddata/IDEWorkspaceChecks.plist +0 -0
@@ -1,57 +1,61 @@
1
1
  PODS:
2
2
  - boost (1.84.0)
3
3
  - DoubleConversion (1.1.6)
4
- - FaceCoreBasic (6.3.982)
5
- - FaceSDK (6.4.2321):
6
- - RegulaCommon (= 7.5.935)
7
- - FBLazyVector (0.76.6)
8
- - fmt (9.1.0)
4
+ - FaceCoreBasic
5
+ - FaceSDK:
6
+ - RegulaCommon
7
+ - fast_float (6.1.4)
8
+ - FBLazyVector (0.78.1)
9
+ - fmt (11.0.2)
9
10
  - glog (0.3.5)
10
- - hermes-engine (0.76.6):
11
- - hermes-engine/Pre-built (= 0.76.6)
12
- - hermes-engine/Pre-built (0.76.6)
13
- - RCT-Folly (2024.01.01.00):
11
+ - hermes-engine (0.78.1):
12
+ - hermes-engine/Pre-built (= 0.78.1)
13
+ - hermes-engine/Pre-built (0.78.1)
14
+ - RCT-Folly (2024.11.18.00):
14
15
  - boost
15
16
  - DoubleConversion
16
- - fmt (= 9.1.0)
17
+ - fast_float (= 6.1.4)
18
+ - fmt (= 11.0.2)
17
19
  - glog
18
- - RCT-Folly/Default (= 2024.01.01.00)
19
- - RCT-Folly/Default (2024.01.01.00):
20
+ - RCT-Folly/Default (= 2024.11.18.00)
21
+ - RCT-Folly/Default (2024.11.18.00):
20
22
  - boost
21
23
  - DoubleConversion
22
- - fmt (= 9.1.0)
24
+ - fast_float (= 6.1.4)
25
+ - fmt (= 11.0.2)
23
26
  - glog
24
- - RCT-Folly/Fabric (2024.01.01.00):
27
+ - RCT-Folly/Fabric (2024.11.18.00):
25
28
  - boost
26
29
  - DoubleConversion
27
- - fmt (= 9.1.0)
28
- - glog
29
- - RCTDeprecation (0.76.6)
30
- - RCTRequired (0.76.6)
31
- - RCTTypeSafety (0.76.6):
32
- - FBLazyVector (= 0.76.6)
33
- - RCTRequired (= 0.76.6)
34
- - React-Core (= 0.76.6)
35
- - React (0.76.6):
36
- - React-Core (= 0.76.6)
37
- - React-Core/DevSupport (= 0.76.6)
38
- - React-Core/RCTWebSocket (= 0.76.6)
39
- - React-RCTActionSheet (= 0.76.6)
40
- - React-RCTAnimation (= 0.76.6)
41
- - React-RCTBlob (= 0.76.6)
42
- - React-RCTImage (= 0.76.6)
43
- - React-RCTLinking (= 0.76.6)
44
- - React-RCTNetwork (= 0.76.6)
45
- - React-RCTSettings (= 0.76.6)
46
- - React-RCTText (= 0.76.6)
47
- - React-RCTVibration (= 0.76.6)
48
- - React-callinvoker (0.76.6)
49
- - React-Core (0.76.6):
50
- - glog
51
- - hermes-engine
52
- - RCT-Folly (= 2024.01.01.00)
30
+ - fast_float (= 6.1.4)
31
+ - fmt (= 11.0.2)
32
+ - glog
33
+ - RCTDeprecation (0.78.1)
34
+ - RCTRequired (0.78.1)
35
+ - RCTTypeSafety (0.78.1):
36
+ - FBLazyVector (= 0.78.1)
37
+ - RCTRequired (= 0.78.1)
38
+ - React-Core (= 0.78.1)
39
+ - React (0.78.1):
40
+ - React-Core (= 0.78.1)
41
+ - React-Core/DevSupport (= 0.78.1)
42
+ - React-Core/RCTWebSocket (= 0.78.1)
43
+ - React-RCTActionSheet (= 0.78.1)
44
+ - React-RCTAnimation (= 0.78.1)
45
+ - React-RCTBlob (= 0.78.1)
46
+ - React-RCTImage (= 0.78.1)
47
+ - React-RCTLinking (= 0.78.1)
48
+ - React-RCTNetwork (= 0.78.1)
49
+ - React-RCTSettings (= 0.78.1)
50
+ - React-RCTText (= 0.78.1)
51
+ - React-RCTVibration (= 0.78.1)
52
+ - React-callinvoker (0.78.1)
53
+ - React-Core (0.78.1):
54
+ - glog
55
+ - hermes-engine
56
+ - RCT-Folly (= 2024.11.18.00)
53
57
  - RCTDeprecation
54
- - React-Core/Default (= 0.76.6)
58
+ - React-Core/Default (= 0.78.1)
55
59
  - React-cxxreact
56
60
  - React-featureflags
57
61
  - React-hermes
@@ -63,10 +67,10 @@ PODS:
63
67
  - React-utils
64
68
  - SocketRocket (= 0.7.1)
65
69
  - Yoga
66
- - React-Core/CoreModulesHeaders (0.76.6):
70
+ - React-Core/CoreModulesHeaders (0.78.1):
67
71
  - glog
68
72
  - hermes-engine
69
- - RCT-Folly (= 2024.01.01.00)
73
+ - RCT-Folly (= 2024.11.18.00)
70
74
  - RCTDeprecation
71
75
  - React-Core/Default
72
76
  - React-cxxreact
@@ -80,10 +84,10 @@ PODS:
80
84
  - React-utils
81
85
  - SocketRocket (= 0.7.1)
82
86
  - Yoga
83
- - React-Core/Default (0.76.6):
87
+ - React-Core/Default (0.78.1):
84
88
  - glog
85
89
  - hermes-engine
86
- - RCT-Folly (= 2024.01.01.00)
90
+ - RCT-Folly (= 2024.11.18.00)
87
91
  - RCTDeprecation
88
92
  - React-cxxreact
89
93
  - React-featureflags
@@ -96,13 +100,13 @@ PODS:
96
100
  - React-utils
97
101
  - SocketRocket (= 0.7.1)
98
102
  - Yoga
99
- - React-Core/DevSupport (0.76.6):
103
+ - React-Core/DevSupport (0.78.1):
100
104
  - glog
101
105
  - hermes-engine
102
- - RCT-Folly (= 2024.01.01.00)
106
+ - RCT-Folly (= 2024.11.18.00)
103
107
  - RCTDeprecation
104
- - React-Core/Default (= 0.76.6)
105
- - React-Core/RCTWebSocket (= 0.76.6)
108
+ - React-Core/Default (= 0.78.1)
109
+ - React-Core/RCTWebSocket (= 0.78.1)
106
110
  - React-cxxreact
107
111
  - React-featureflags
108
112
  - React-hermes
@@ -114,10 +118,10 @@ PODS:
114
118
  - React-utils
115
119
  - SocketRocket (= 0.7.1)
116
120
  - Yoga
117
- - React-Core/RCTActionSheetHeaders (0.76.6):
121
+ - React-Core/RCTActionSheetHeaders (0.78.1):
118
122
  - glog
119
123
  - hermes-engine
120
- - RCT-Folly (= 2024.01.01.00)
124
+ - RCT-Folly (= 2024.11.18.00)
121
125
  - RCTDeprecation
122
126
  - React-Core/Default
123
127
  - React-cxxreact
@@ -131,10 +135,10 @@ PODS:
131
135
  - React-utils
132
136
  - SocketRocket (= 0.7.1)
133
137
  - Yoga
134
- - React-Core/RCTAnimationHeaders (0.76.6):
138
+ - React-Core/RCTAnimationHeaders (0.78.1):
135
139
  - glog
136
140
  - hermes-engine
137
- - RCT-Folly (= 2024.01.01.00)
141
+ - RCT-Folly (= 2024.11.18.00)
138
142
  - RCTDeprecation
139
143
  - React-Core/Default
140
144
  - React-cxxreact
@@ -148,10 +152,10 @@ PODS:
148
152
  - React-utils
149
153
  - SocketRocket (= 0.7.1)
150
154
  - Yoga
151
- - React-Core/RCTBlobHeaders (0.76.6):
155
+ - React-Core/RCTBlobHeaders (0.78.1):
152
156
  - glog
153
157
  - hermes-engine
154
- - RCT-Folly (= 2024.01.01.00)
158
+ - RCT-Folly (= 2024.11.18.00)
155
159
  - RCTDeprecation
156
160
  - React-Core/Default
157
161
  - React-cxxreact
@@ -165,10 +169,10 @@ PODS:
165
169
  - React-utils
166
170
  - SocketRocket (= 0.7.1)
167
171
  - Yoga
168
- - React-Core/RCTImageHeaders (0.76.6):
172
+ - React-Core/RCTImageHeaders (0.78.1):
169
173
  - glog
170
174
  - hermes-engine
171
- - RCT-Folly (= 2024.01.01.00)
175
+ - RCT-Folly (= 2024.11.18.00)
172
176
  - RCTDeprecation
173
177
  - React-Core/Default
174
178
  - React-cxxreact
@@ -182,10 +186,10 @@ PODS:
182
186
  - React-utils
183
187
  - SocketRocket (= 0.7.1)
184
188
  - Yoga
185
- - React-Core/RCTLinkingHeaders (0.76.6):
189
+ - React-Core/RCTLinkingHeaders (0.78.1):
186
190
  - glog
187
191
  - hermes-engine
188
- - RCT-Folly (= 2024.01.01.00)
192
+ - RCT-Folly (= 2024.11.18.00)
189
193
  - RCTDeprecation
190
194
  - React-Core/Default
191
195
  - React-cxxreact
@@ -199,10 +203,10 @@ PODS:
199
203
  - React-utils
200
204
  - SocketRocket (= 0.7.1)
201
205
  - Yoga
202
- - React-Core/RCTNetworkHeaders (0.76.6):
206
+ - React-Core/RCTNetworkHeaders (0.78.1):
203
207
  - glog
204
208
  - hermes-engine
205
- - RCT-Folly (= 2024.01.01.00)
209
+ - RCT-Folly (= 2024.11.18.00)
206
210
  - RCTDeprecation
207
211
  - React-Core/Default
208
212
  - React-cxxreact
@@ -216,10 +220,10 @@ PODS:
216
220
  - React-utils
217
221
  - SocketRocket (= 0.7.1)
218
222
  - Yoga
219
- - React-Core/RCTSettingsHeaders (0.76.6):
223
+ - React-Core/RCTSettingsHeaders (0.78.1):
220
224
  - glog
221
225
  - hermes-engine
222
- - RCT-Folly (= 2024.01.01.00)
226
+ - RCT-Folly (= 2024.11.18.00)
223
227
  - RCTDeprecation
224
228
  - React-Core/Default
225
229
  - React-cxxreact
@@ -233,10 +237,10 @@ PODS:
233
237
  - React-utils
234
238
  - SocketRocket (= 0.7.1)
235
239
  - Yoga
236
- - React-Core/RCTTextHeaders (0.76.6):
240
+ - React-Core/RCTTextHeaders (0.78.1):
237
241
  - glog
238
242
  - hermes-engine
239
- - RCT-Folly (= 2024.01.01.00)
243
+ - RCT-Folly (= 2024.11.18.00)
240
244
  - RCTDeprecation
241
245
  - React-Core/Default
242
246
  - React-cxxreact
@@ -250,10 +254,10 @@ PODS:
250
254
  - React-utils
251
255
  - SocketRocket (= 0.7.1)
252
256
  - Yoga
253
- - React-Core/RCTVibrationHeaders (0.76.6):
257
+ - React-Core/RCTVibrationHeaders (0.78.1):
254
258
  - glog
255
259
  - hermes-engine
256
- - RCT-Folly (= 2024.01.01.00)
260
+ - RCT-Folly (= 2024.11.18.00)
257
261
  - RCTDeprecation
258
262
  - React-Core/Default
259
263
  - React-cxxreact
@@ -267,12 +271,12 @@ PODS:
267
271
  - React-utils
268
272
  - SocketRocket (= 0.7.1)
269
273
  - Yoga
270
- - React-Core/RCTWebSocket (0.76.6):
274
+ - React-Core/RCTWebSocket (0.78.1):
271
275
  - glog
272
276
  - hermes-engine
273
- - RCT-Folly (= 2024.01.01.00)
277
+ - RCT-Folly (= 2024.11.18.00)
274
278
  - RCTDeprecation
275
- - React-Core/Default (= 0.76.6)
279
+ - React-Core/Default (= 0.78.1)
276
280
  - React-cxxreact
277
281
  - React-featureflags
278
282
  - React-hermes
@@ -284,109 +288,108 @@ PODS:
284
288
  - React-utils
285
289
  - SocketRocket (= 0.7.1)
286
290
  - Yoga
287
- - React-CoreModules (0.76.6):
291
+ - React-CoreModules (0.78.1):
288
292
  - DoubleConversion
289
- - fmt (= 9.1.0)
290
- - RCT-Folly (= 2024.01.01.00)
291
- - RCTTypeSafety (= 0.76.6)
292
- - React-Core/CoreModulesHeaders (= 0.76.6)
293
- - React-jsi (= 0.76.6)
293
+ - fast_float (= 6.1.4)
294
+ - fmt (= 11.0.2)
295
+ - RCT-Folly (= 2024.11.18.00)
296
+ - RCTTypeSafety (= 0.78.1)
297
+ - React-Core/CoreModulesHeaders (= 0.78.1)
298
+ - React-jsi (= 0.78.1)
294
299
  - React-jsinspector
295
300
  - React-NativeModulesApple
296
301
  - React-RCTBlob
297
- - React-RCTImage (= 0.76.6)
298
- - ReactCodegen
302
+ - React-RCTFBReactNativeSpec
303
+ - React-RCTImage (= 0.78.1)
299
304
  - ReactCommon
300
305
  - SocketRocket (= 0.7.1)
301
- - React-cxxreact (0.76.6):
306
+ - React-cxxreact (0.78.1):
302
307
  - boost
303
308
  - DoubleConversion
304
- - fmt (= 9.1.0)
309
+ - fast_float (= 6.1.4)
310
+ - fmt (= 11.0.2)
305
311
  - glog
306
312
  - hermes-engine
307
- - RCT-Folly (= 2024.01.01.00)
308
- - React-callinvoker (= 0.76.6)
309
- - React-debug (= 0.76.6)
310
- - React-jsi (= 0.76.6)
313
+ - RCT-Folly (= 2024.11.18.00)
314
+ - React-callinvoker (= 0.78.1)
315
+ - React-debug (= 0.78.1)
316
+ - React-jsi (= 0.78.1)
311
317
  - React-jsinspector
312
- - React-logger (= 0.76.6)
313
- - React-perflogger (= 0.76.6)
314
- - React-runtimeexecutor (= 0.76.6)
315
- - React-timing (= 0.76.6)
316
- - React-debug (0.76.6)
317
- - React-defaultsnativemodule (0.76.6):
318
- - DoubleConversion
319
- - glog
318
+ - React-logger (= 0.78.1)
319
+ - React-perflogger (= 0.78.1)
320
+ - React-runtimeexecutor (= 0.78.1)
321
+ - React-timing (= 0.78.1)
322
+ - React-debug (0.78.1)
323
+ - React-defaultsnativemodule (0.78.1):
320
324
  - hermes-engine
321
- - RCT-Folly (= 2024.01.01.00)
322
- - RCTRequired
323
- - RCTTypeSafety
324
- - React-Core
325
- - React-debug
325
+ - RCT-Folly
326
326
  - React-domnativemodule
327
- - React-Fabric
328
- - React-featureflags
329
327
  - React-featureflagsnativemodule
330
- - React-graphics
331
328
  - React-idlecallbacksnativemodule
332
- - React-ImageManager
329
+ - React-jsi
330
+ - React-jsiexecutor
333
331
  - React-microtasksnativemodule
334
- - React-NativeModulesApple
335
- - React-RCTFabric
336
- - React-rendererdebug
337
- - React-utils
338
- - ReactCodegen
339
- - ReactCommon/turbomodule/bridging
332
+ - React-RCTFBReactNativeSpec
333
+ - React-domnativemodule (0.78.1):
334
+ - hermes-engine
335
+ - RCT-Folly
336
+ - React-Fabric
337
+ - React-FabricComponents
338
+ - React-graphics
339
+ - React-jsi
340
+ - React-jsiexecutor
341
+ - React-RCTFBReactNativeSpec
340
342
  - ReactCommon/turbomodule/core
341
343
  - Yoga
342
- - React-domnativemodule (0.76.6):
344
+ - React-Fabric (0.78.1):
343
345
  - DoubleConversion
346
+ - fast_float (= 6.1.4)
347
+ - fmt (= 11.0.2)
344
348
  - glog
345
349
  - hermes-engine
346
- - RCT-Folly (= 2024.01.01.00)
350
+ - RCT-Folly/Fabric (= 2024.11.18.00)
347
351
  - RCTRequired
348
352
  - RCTTypeSafety
349
353
  - React-Core
354
+ - React-cxxreact
350
355
  - React-debug
351
- - React-Fabric
352
- - React-FabricComponents
356
+ - React-Fabric/animations (= 0.78.1)
357
+ - React-Fabric/attributedstring (= 0.78.1)
358
+ - React-Fabric/componentregistry (= 0.78.1)
359
+ - React-Fabric/componentregistrynative (= 0.78.1)
360
+ - React-Fabric/components (= 0.78.1)
361
+ - React-Fabric/consistency (= 0.78.1)
362
+ - React-Fabric/core (= 0.78.1)
363
+ - React-Fabric/dom (= 0.78.1)
364
+ - React-Fabric/imagemanager (= 0.78.1)
365
+ - React-Fabric/leakchecker (= 0.78.1)
366
+ - React-Fabric/mounting (= 0.78.1)
367
+ - React-Fabric/observers (= 0.78.1)
368
+ - React-Fabric/scheduler (= 0.78.1)
369
+ - React-Fabric/telemetry (= 0.78.1)
370
+ - React-Fabric/templateprocessor (= 0.78.1)
371
+ - React-Fabric/uimanager (= 0.78.1)
353
372
  - React-featureflags
354
373
  - React-graphics
355
- - React-ImageManager
356
- - React-NativeModulesApple
357
- - React-RCTFabric
374
+ - React-jsi
375
+ - React-jsiexecutor
376
+ - React-logger
358
377
  - React-rendererdebug
378
+ - React-runtimescheduler
359
379
  - React-utils
360
- - ReactCodegen
361
- - ReactCommon/turbomodule/bridging
362
380
  - ReactCommon/turbomodule/core
363
- - Yoga
364
- - React-Fabric (0.76.6):
381
+ - React-Fabric/animations (0.78.1):
365
382
  - DoubleConversion
366
- - fmt (= 9.1.0)
383
+ - fast_float (= 6.1.4)
384
+ - fmt (= 11.0.2)
367
385
  - glog
368
386
  - hermes-engine
369
- - RCT-Folly/Fabric (= 2024.01.01.00)
387
+ - RCT-Folly/Fabric (= 2024.11.18.00)
370
388
  - RCTRequired
371
389
  - RCTTypeSafety
372
390
  - React-Core
373
391
  - React-cxxreact
374
392
  - React-debug
375
- - React-Fabric/animations (= 0.76.6)
376
- - React-Fabric/attributedstring (= 0.76.6)
377
- - React-Fabric/componentregistry (= 0.76.6)
378
- - React-Fabric/componentregistrynative (= 0.76.6)
379
- - React-Fabric/components (= 0.76.6)
380
- - React-Fabric/core (= 0.76.6)
381
- - React-Fabric/dom (= 0.76.6)
382
- - React-Fabric/imagemanager (= 0.76.6)
383
- - React-Fabric/leakchecker (= 0.76.6)
384
- - React-Fabric/mounting (= 0.76.6)
385
- - React-Fabric/observers (= 0.76.6)
386
- - React-Fabric/scheduler (= 0.76.6)
387
- - React-Fabric/telemetry (= 0.76.6)
388
- - React-Fabric/templateprocessor (= 0.76.6)
389
- - React-Fabric/uimanager (= 0.76.6)
390
393
  - React-featureflags
391
394
  - React-graphics
392
395
  - React-jsi
@@ -396,12 +399,13 @@ PODS:
396
399
  - React-runtimescheduler
397
400
  - React-utils
398
401
  - ReactCommon/turbomodule/core
399
- - React-Fabric/animations (0.76.6):
402
+ - React-Fabric/attributedstring (0.78.1):
400
403
  - DoubleConversion
401
- - fmt (= 9.1.0)
404
+ - fast_float (= 6.1.4)
405
+ - fmt (= 11.0.2)
402
406
  - glog
403
407
  - hermes-engine
404
- - RCT-Folly/Fabric (= 2024.01.01.00)
408
+ - RCT-Folly/Fabric (= 2024.11.18.00)
405
409
  - RCTRequired
406
410
  - RCTTypeSafety
407
411
  - React-Core
@@ -416,12 +420,13 @@ PODS:
416
420
  - React-runtimescheduler
417
421
  - React-utils
418
422
  - ReactCommon/turbomodule/core
419
- - React-Fabric/attributedstring (0.76.6):
423
+ - React-Fabric/componentregistry (0.78.1):
420
424
  - DoubleConversion
421
- - fmt (= 9.1.0)
425
+ - fast_float (= 6.1.4)
426
+ - fmt (= 11.0.2)
422
427
  - glog
423
428
  - hermes-engine
424
- - RCT-Folly/Fabric (= 2024.01.01.00)
429
+ - RCT-Folly/Fabric (= 2024.11.18.00)
425
430
  - RCTRequired
426
431
  - RCTTypeSafety
427
432
  - React-Core
@@ -436,12 +441,13 @@ PODS:
436
441
  - React-runtimescheduler
437
442
  - React-utils
438
443
  - ReactCommon/turbomodule/core
439
- - React-Fabric/componentregistry (0.76.6):
444
+ - React-Fabric/componentregistrynative (0.78.1):
440
445
  - DoubleConversion
441
- - fmt (= 9.1.0)
446
+ - fast_float (= 6.1.4)
447
+ - fmt (= 11.0.2)
442
448
  - glog
443
449
  - hermes-engine
444
- - RCT-Folly/Fabric (= 2024.01.01.00)
450
+ - RCT-Folly/Fabric (= 2024.11.18.00)
445
451
  - RCTRequired
446
452
  - RCTTypeSafety
447
453
  - React-Core
@@ -456,17 +462,21 @@ PODS:
456
462
  - React-runtimescheduler
457
463
  - React-utils
458
464
  - ReactCommon/turbomodule/core
459
- - React-Fabric/componentregistrynative (0.76.6):
465
+ - React-Fabric/components (0.78.1):
460
466
  - DoubleConversion
461
- - fmt (= 9.1.0)
467
+ - fast_float (= 6.1.4)
468
+ - fmt (= 11.0.2)
462
469
  - glog
463
470
  - hermes-engine
464
- - RCT-Folly/Fabric (= 2024.01.01.00)
471
+ - RCT-Folly/Fabric (= 2024.11.18.00)
465
472
  - RCTRequired
466
473
  - RCTTypeSafety
467
474
  - React-Core
468
475
  - React-cxxreact
469
476
  - React-debug
477
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.78.1)
478
+ - React-Fabric/components/root (= 0.78.1)
479
+ - React-Fabric/components/view (= 0.78.1)
470
480
  - React-featureflags
471
481
  - React-graphics
472
482
  - React-jsi
@@ -476,20 +486,18 @@ PODS:
476
486
  - React-runtimescheduler
477
487
  - React-utils
478
488
  - ReactCommon/turbomodule/core
479
- - React-Fabric/components (0.76.6):
489
+ - React-Fabric/components/legacyviewmanagerinterop (0.78.1):
480
490
  - DoubleConversion
481
- - fmt (= 9.1.0)
491
+ - fast_float (= 6.1.4)
492
+ - fmt (= 11.0.2)
482
493
  - glog
483
494
  - hermes-engine
484
- - RCT-Folly/Fabric (= 2024.01.01.00)
495
+ - RCT-Folly/Fabric (= 2024.11.18.00)
485
496
  - RCTRequired
486
497
  - RCTTypeSafety
487
498
  - React-Core
488
499
  - React-cxxreact
489
500
  - React-debug
490
- - React-Fabric/components/legacyviewmanagerinterop (= 0.76.6)
491
- - React-Fabric/components/root (= 0.76.6)
492
- - React-Fabric/components/view (= 0.76.6)
493
501
  - React-featureflags
494
502
  - React-graphics
495
503
  - React-jsi
@@ -499,12 +507,13 @@ PODS:
499
507
  - React-runtimescheduler
500
508
  - React-utils
501
509
  - ReactCommon/turbomodule/core
502
- - React-Fabric/components/legacyviewmanagerinterop (0.76.6):
510
+ - React-Fabric/components/root (0.78.1):
503
511
  - DoubleConversion
504
- - fmt (= 9.1.0)
512
+ - fast_float (= 6.1.4)
513
+ - fmt (= 11.0.2)
505
514
  - glog
506
515
  - hermes-engine
507
- - RCT-Folly/Fabric (= 2024.01.01.00)
516
+ - RCT-Folly/Fabric (= 2024.11.18.00)
508
517
  - RCTRequired
509
518
  - RCTTypeSafety
510
519
  - React-Core
@@ -519,12 +528,13 @@ PODS:
519
528
  - React-runtimescheduler
520
529
  - React-utils
521
530
  - ReactCommon/turbomodule/core
522
- - React-Fabric/components/root (0.76.6):
531
+ - React-Fabric/components/view (0.78.1):
523
532
  - DoubleConversion
524
- - fmt (= 9.1.0)
533
+ - fast_float (= 6.1.4)
534
+ - fmt (= 11.0.2)
525
535
  - glog
526
536
  - hermes-engine
527
- - RCT-Folly/Fabric (= 2024.01.01.00)
537
+ - RCT-Folly/Fabric (= 2024.11.18.00)
528
538
  - RCTRequired
529
539
  - RCTTypeSafety
530
540
  - React-Core
@@ -539,12 +549,14 @@ PODS:
539
549
  - React-runtimescheduler
540
550
  - React-utils
541
551
  - ReactCommon/turbomodule/core
542
- - React-Fabric/components/view (0.76.6):
552
+ - Yoga
553
+ - React-Fabric/consistency (0.78.1):
543
554
  - DoubleConversion
544
- - fmt (= 9.1.0)
555
+ - fast_float (= 6.1.4)
556
+ - fmt (= 11.0.2)
545
557
  - glog
546
558
  - hermes-engine
547
- - RCT-Folly/Fabric (= 2024.01.01.00)
559
+ - RCT-Folly/Fabric (= 2024.11.18.00)
548
560
  - RCTRequired
549
561
  - RCTTypeSafety
550
562
  - React-Core
@@ -559,13 +571,13 @@ PODS:
559
571
  - React-runtimescheduler
560
572
  - React-utils
561
573
  - ReactCommon/turbomodule/core
562
- - Yoga
563
- - React-Fabric/core (0.76.6):
574
+ - React-Fabric/core (0.78.1):
564
575
  - DoubleConversion
565
- - fmt (= 9.1.0)
576
+ - fast_float (= 6.1.4)
577
+ - fmt (= 11.0.2)
566
578
  - glog
567
579
  - hermes-engine
568
- - RCT-Folly/Fabric (= 2024.01.01.00)
580
+ - RCT-Folly/Fabric (= 2024.11.18.00)
569
581
  - RCTRequired
570
582
  - RCTTypeSafety
571
583
  - React-Core
@@ -580,12 +592,13 @@ PODS:
580
592
  - React-runtimescheduler
581
593
  - React-utils
582
594
  - ReactCommon/turbomodule/core
583
- - React-Fabric/dom (0.76.6):
595
+ - React-Fabric/dom (0.78.1):
584
596
  - DoubleConversion
585
- - fmt (= 9.1.0)
597
+ - fast_float (= 6.1.4)
598
+ - fmt (= 11.0.2)
586
599
  - glog
587
600
  - hermes-engine
588
- - RCT-Folly/Fabric (= 2024.01.01.00)
601
+ - RCT-Folly/Fabric (= 2024.11.18.00)
589
602
  - RCTRequired
590
603
  - RCTTypeSafety
591
604
  - React-Core
@@ -600,12 +613,13 @@ PODS:
600
613
  - React-runtimescheduler
601
614
  - React-utils
602
615
  - ReactCommon/turbomodule/core
603
- - React-Fabric/imagemanager (0.76.6):
616
+ - React-Fabric/imagemanager (0.78.1):
604
617
  - DoubleConversion
605
- - fmt (= 9.1.0)
618
+ - fast_float (= 6.1.4)
619
+ - fmt (= 11.0.2)
606
620
  - glog
607
621
  - hermes-engine
608
- - RCT-Folly/Fabric (= 2024.01.01.00)
622
+ - RCT-Folly/Fabric (= 2024.11.18.00)
609
623
  - RCTRequired
610
624
  - RCTTypeSafety
611
625
  - React-Core
@@ -620,12 +634,13 @@ PODS:
620
634
  - React-runtimescheduler
621
635
  - React-utils
622
636
  - ReactCommon/turbomodule/core
623
- - React-Fabric/leakchecker (0.76.6):
637
+ - React-Fabric/leakchecker (0.78.1):
624
638
  - DoubleConversion
625
- - fmt (= 9.1.0)
639
+ - fast_float (= 6.1.4)
640
+ - fmt (= 11.0.2)
626
641
  - glog
627
642
  - hermes-engine
628
- - RCT-Folly/Fabric (= 2024.01.01.00)
643
+ - RCT-Folly/Fabric (= 2024.11.18.00)
629
644
  - RCTRequired
630
645
  - RCTTypeSafety
631
646
  - React-Core
@@ -640,12 +655,13 @@ PODS:
640
655
  - React-runtimescheduler
641
656
  - React-utils
642
657
  - ReactCommon/turbomodule/core
643
- - React-Fabric/mounting (0.76.6):
658
+ - React-Fabric/mounting (0.78.1):
644
659
  - DoubleConversion
645
- - fmt (= 9.1.0)
660
+ - fast_float (= 6.1.4)
661
+ - fmt (= 11.0.2)
646
662
  - glog
647
663
  - hermes-engine
648
- - RCT-Folly/Fabric (= 2024.01.01.00)
664
+ - RCT-Folly/Fabric (= 2024.11.18.00)
649
665
  - RCTRequired
650
666
  - RCTTypeSafety
651
667
  - React-Core
@@ -660,18 +676,19 @@ PODS:
660
676
  - React-runtimescheduler
661
677
  - React-utils
662
678
  - ReactCommon/turbomodule/core
663
- - React-Fabric/observers (0.76.6):
679
+ - React-Fabric/observers (0.78.1):
664
680
  - DoubleConversion
665
- - fmt (= 9.1.0)
681
+ - fast_float (= 6.1.4)
682
+ - fmt (= 11.0.2)
666
683
  - glog
667
684
  - hermes-engine
668
- - RCT-Folly/Fabric (= 2024.01.01.00)
685
+ - RCT-Folly/Fabric (= 2024.11.18.00)
669
686
  - RCTRequired
670
687
  - RCTTypeSafety
671
688
  - React-Core
672
689
  - React-cxxreact
673
690
  - React-debug
674
- - React-Fabric/observers/events (= 0.76.6)
691
+ - React-Fabric/observers/events (= 0.78.1)
675
692
  - React-featureflags
676
693
  - React-graphics
677
694
  - React-jsi
@@ -681,12 +698,13 @@ PODS:
681
698
  - React-runtimescheduler
682
699
  - React-utils
683
700
  - ReactCommon/turbomodule/core
684
- - React-Fabric/observers/events (0.76.6):
701
+ - React-Fabric/observers/events (0.78.1):
685
702
  - DoubleConversion
686
- - fmt (= 9.1.0)
703
+ - fast_float (= 6.1.4)
704
+ - fmt (= 11.0.2)
687
705
  - glog
688
706
  - hermes-engine
689
- - RCT-Folly/Fabric (= 2024.01.01.00)
707
+ - RCT-Folly/Fabric (= 2024.11.18.00)
690
708
  - RCTRequired
691
709
  - RCTTypeSafety
692
710
  - React-Core
@@ -701,12 +719,13 @@ PODS:
701
719
  - React-runtimescheduler
702
720
  - React-utils
703
721
  - ReactCommon/turbomodule/core
704
- - React-Fabric/scheduler (0.76.6):
722
+ - React-Fabric/scheduler (0.78.1):
705
723
  - DoubleConversion
706
- - fmt (= 9.1.0)
724
+ - fast_float (= 6.1.4)
725
+ - fmt (= 11.0.2)
707
726
  - glog
708
727
  - hermes-engine
709
- - RCT-Folly/Fabric (= 2024.01.01.00)
728
+ - RCT-Folly/Fabric (= 2024.11.18.00)
710
729
  - RCTRequired
711
730
  - RCTTypeSafety
712
731
  - React-Core
@@ -723,12 +742,13 @@ PODS:
723
742
  - React-runtimescheduler
724
743
  - React-utils
725
744
  - ReactCommon/turbomodule/core
726
- - React-Fabric/telemetry (0.76.6):
745
+ - React-Fabric/telemetry (0.78.1):
727
746
  - DoubleConversion
728
- - fmt (= 9.1.0)
747
+ - fast_float (= 6.1.4)
748
+ - fmt (= 11.0.2)
729
749
  - glog
730
750
  - hermes-engine
731
- - RCT-Folly/Fabric (= 2024.01.01.00)
751
+ - RCT-Folly/Fabric (= 2024.11.18.00)
732
752
  - RCTRequired
733
753
  - RCTTypeSafety
734
754
  - React-Core
@@ -743,12 +763,13 @@ PODS:
743
763
  - React-runtimescheduler
744
764
  - React-utils
745
765
  - ReactCommon/turbomodule/core
746
- - React-Fabric/templateprocessor (0.76.6):
766
+ - React-Fabric/templateprocessor (0.78.1):
747
767
  - DoubleConversion
748
- - fmt (= 9.1.0)
768
+ - fast_float (= 6.1.4)
769
+ - fmt (= 11.0.2)
749
770
  - glog
750
771
  - hermes-engine
751
- - RCT-Folly/Fabric (= 2024.01.01.00)
772
+ - RCT-Folly/Fabric (= 2024.11.18.00)
752
773
  - RCTRequired
753
774
  - RCTTypeSafety
754
775
  - React-Core
@@ -763,18 +784,19 @@ PODS:
763
784
  - React-runtimescheduler
764
785
  - React-utils
765
786
  - ReactCommon/turbomodule/core
766
- - React-Fabric/uimanager (0.76.6):
787
+ - React-Fabric/uimanager (0.78.1):
767
788
  - DoubleConversion
768
- - fmt (= 9.1.0)
789
+ - fast_float (= 6.1.4)
790
+ - fmt (= 11.0.2)
769
791
  - glog
770
792
  - hermes-engine
771
- - RCT-Folly/Fabric (= 2024.01.01.00)
793
+ - RCT-Folly/Fabric (= 2024.11.18.00)
772
794
  - RCTRequired
773
795
  - RCTTypeSafety
774
796
  - React-Core
775
797
  - React-cxxreact
776
798
  - React-debug
777
- - React-Fabric/uimanager/consistency (= 0.76.6)
799
+ - React-Fabric/uimanager/consistency (= 0.78.1)
778
800
  - React-featureflags
779
801
  - React-graphics
780
802
  - React-jsi
@@ -785,12 +807,13 @@ PODS:
785
807
  - React-runtimescheduler
786
808
  - React-utils
787
809
  - ReactCommon/turbomodule/core
788
- - React-Fabric/uimanager/consistency (0.76.6):
810
+ - React-Fabric/uimanager/consistency (0.78.1):
789
811
  - DoubleConversion
790
- - fmt (= 9.1.0)
812
+ - fast_float (= 6.1.4)
813
+ - fmt (= 11.0.2)
791
814
  - glog
792
815
  - hermes-engine
793
- - RCT-Folly/Fabric (= 2024.01.01.00)
816
+ - RCT-Folly/Fabric (= 2024.11.18.00)
794
817
  - RCTRequired
795
818
  - RCTTypeSafety
796
819
  - React-Core
@@ -806,20 +829,21 @@ PODS:
806
829
  - React-runtimescheduler
807
830
  - React-utils
808
831
  - ReactCommon/turbomodule/core
809
- - React-FabricComponents (0.76.6):
832
+ - React-FabricComponents (0.78.1):
810
833
  - DoubleConversion
811
- - fmt (= 9.1.0)
834
+ - fast_float (= 6.1.4)
835
+ - fmt (= 11.0.2)
812
836
  - glog
813
837
  - hermes-engine
814
- - RCT-Folly/Fabric (= 2024.01.01.00)
838
+ - RCT-Folly/Fabric (= 2024.11.18.00)
815
839
  - RCTRequired
816
840
  - RCTTypeSafety
817
841
  - React-Core
818
842
  - React-cxxreact
819
843
  - React-debug
820
844
  - React-Fabric
821
- - React-FabricComponents/components (= 0.76.6)
822
- - React-FabricComponents/textlayoutmanager (= 0.76.6)
845
+ - React-FabricComponents/components (= 0.78.1)
846
+ - React-FabricComponents/textlayoutmanager (= 0.78.1)
823
847
  - React-featureflags
824
848
  - React-graphics
825
849
  - React-jsi
@@ -828,30 +852,30 @@ PODS:
828
852
  - React-rendererdebug
829
853
  - React-runtimescheduler
830
854
  - React-utils
831
- - ReactCodegen
832
855
  - ReactCommon/turbomodule/core
833
856
  - Yoga
834
- - React-FabricComponents/components (0.76.6):
857
+ - React-FabricComponents/components (0.78.1):
835
858
  - DoubleConversion
836
- - fmt (= 9.1.0)
859
+ - fast_float (= 6.1.4)
860
+ - fmt (= 11.0.2)
837
861
  - glog
838
862
  - hermes-engine
839
- - RCT-Folly/Fabric (= 2024.01.01.00)
863
+ - RCT-Folly/Fabric (= 2024.11.18.00)
840
864
  - RCTRequired
841
865
  - RCTTypeSafety
842
866
  - React-Core
843
867
  - React-cxxreact
844
868
  - React-debug
845
869
  - React-Fabric
846
- - React-FabricComponents/components/inputaccessory (= 0.76.6)
847
- - React-FabricComponents/components/iostextinput (= 0.76.6)
848
- - React-FabricComponents/components/modal (= 0.76.6)
849
- - React-FabricComponents/components/rncore (= 0.76.6)
850
- - React-FabricComponents/components/safeareaview (= 0.76.6)
851
- - React-FabricComponents/components/scrollview (= 0.76.6)
852
- - React-FabricComponents/components/text (= 0.76.6)
853
- - React-FabricComponents/components/textinput (= 0.76.6)
854
- - React-FabricComponents/components/unimplementedview (= 0.76.6)
870
+ - React-FabricComponents/components/inputaccessory (= 0.78.1)
871
+ - React-FabricComponents/components/iostextinput (= 0.78.1)
872
+ - React-FabricComponents/components/modal (= 0.78.1)
873
+ - React-FabricComponents/components/rncore (= 0.78.1)
874
+ - React-FabricComponents/components/safeareaview (= 0.78.1)
875
+ - React-FabricComponents/components/scrollview (= 0.78.1)
876
+ - React-FabricComponents/components/text (= 0.78.1)
877
+ - React-FabricComponents/components/textinput (= 0.78.1)
878
+ - React-FabricComponents/components/unimplementedview (= 0.78.1)
855
879
  - React-featureflags
856
880
  - React-graphics
857
881
  - React-jsi
@@ -860,15 +884,15 @@ PODS:
860
884
  - React-rendererdebug
861
885
  - React-runtimescheduler
862
886
  - React-utils
863
- - ReactCodegen
864
887
  - ReactCommon/turbomodule/core
865
888
  - Yoga
866
- - React-FabricComponents/components/inputaccessory (0.76.6):
889
+ - React-FabricComponents/components/inputaccessory (0.78.1):
867
890
  - DoubleConversion
868
- - fmt (= 9.1.0)
891
+ - fast_float (= 6.1.4)
892
+ - fmt (= 11.0.2)
869
893
  - glog
870
894
  - hermes-engine
871
- - RCT-Folly/Fabric (= 2024.01.01.00)
895
+ - RCT-Folly/Fabric (= 2024.11.18.00)
872
896
  - RCTRequired
873
897
  - RCTTypeSafety
874
898
  - React-Core
@@ -883,15 +907,15 @@ PODS:
883
907
  - React-rendererdebug
884
908
  - React-runtimescheduler
885
909
  - React-utils
886
- - ReactCodegen
887
910
  - ReactCommon/turbomodule/core
888
911
  - Yoga
889
- - React-FabricComponents/components/iostextinput (0.76.6):
912
+ - React-FabricComponents/components/iostextinput (0.78.1):
890
913
  - DoubleConversion
891
- - fmt (= 9.1.0)
914
+ - fast_float (= 6.1.4)
915
+ - fmt (= 11.0.2)
892
916
  - glog
893
917
  - hermes-engine
894
- - RCT-Folly/Fabric (= 2024.01.01.00)
918
+ - RCT-Folly/Fabric (= 2024.11.18.00)
895
919
  - RCTRequired
896
920
  - RCTTypeSafety
897
921
  - React-Core
@@ -906,15 +930,15 @@ PODS:
906
930
  - React-rendererdebug
907
931
  - React-runtimescheduler
908
932
  - React-utils
909
- - ReactCodegen
910
933
  - ReactCommon/turbomodule/core
911
934
  - Yoga
912
- - React-FabricComponents/components/modal (0.76.6):
935
+ - React-FabricComponents/components/modal (0.78.1):
913
936
  - DoubleConversion
914
- - fmt (= 9.1.0)
937
+ - fast_float (= 6.1.4)
938
+ - fmt (= 11.0.2)
915
939
  - glog
916
940
  - hermes-engine
917
- - RCT-Folly/Fabric (= 2024.01.01.00)
941
+ - RCT-Folly/Fabric (= 2024.11.18.00)
918
942
  - RCTRequired
919
943
  - RCTTypeSafety
920
944
  - React-Core
@@ -929,15 +953,15 @@ PODS:
929
953
  - React-rendererdebug
930
954
  - React-runtimescheduler
931
955
  - React-utils
932
- - ReactCodegen
933
956
  - ReactCommon/turbomodule/core
934
957
  - Yoga
935
- - React-FabricComponents/components/rncore (0.76.6):
958
+ - React-FabricComponents/components/rncore (0.78.1):
936
959
  - DoubleConversion
937
- - fmt (= 9.1.0)
960
+ - fast_float (= 6.1.4)
961
+ - fmt (= 11.0.2)
938
962
  - glog
939
963
  - hermes-engine
940
- - RCT-Folly/Fabric (= 2024.01.01.00)
964
+ - RCT-Folly/Fabric (= 2024.11.18.00)
941
965
  - RCTRequired
942
966
  - RCTTypeSafety
943
967
  - React-Core
@@ -952,15 +976,15 @@ PODS:
952
976
  - React-rendererdebug
953
977
  - React-runtimescheduler
954
978
  - React-utils
955
- - ReactCodegen
956
979
  - ReactCommon/turbomodule/core
957
980
  - Yoga
958
- - React-FabricComponents/components/safeareaview (0.76.6):
981
+ - React-FabricComponents/components/safeareaview (0.78.1):
959
982
  - DoubleConversion
960
- - fmt (= 9.1.0)
983
+ - fast_float (= 6.1.4)
984
+ - fmt (= 11.0.2)
961
985
  - glog
962
986
  - hermes-engine
963
- - RCT-Folly/Fabric (= 2024.01.01.00)
987
+ - RCT-Folly/Fabric (= 2024.11.18.00)
964
988
  - RCTRequired
965
989
  - RCTTypeSafety
966
990
  - React-Core
@@ -975,15 +999,15 @@ PODS:
975
999
  - React-rendererdebug
976
1000
  - React-runtimescheduler
977
1001
  - React-utils
978
- - ReactCodegen
979
1002
  - ReactCommon/turbomodule/core
980
1003
  - Yoga
981
- - React-FabricComponents/components/scrollview (0.76.6):
1004
+ - React-FabricComponents/components/scrollview (0.78.1):
982
1005
  - DoubleConversion
983
- - fmt (= 9.1.0)
1006
+ - fast_float (= 6.1.4)
1007
+ - fmt (= 11.0.2)
984
1008
  - glog
985
1009
  - hermes-engine
986
- - RCT-Folly/Fabric (= 2024.01.01.00)
1010
+ - RCT-Folly/Fabric (= 2024.11.18.00)
987
1011
  - RCTRequired
988
1012
  - RCTTypeSafety
989
1013
  - React-Core
@@ -998,15 +1022,15 @@ PODS:
998
1022
  - React-rendererdebug
999
1023
  - React-runtimescheduler
1000
1024
  - React-utils
1001
- - ReactCodegen
1002
1025
  - ReactCommon/turbomodule/core
1003
1026
  - Yoga
1004
- - React-FabricComponents/components/text (0.76.6):
1027
+ - React-FabricComponents/components/text (0.78.1):
1005
1028
  - DoubleConversion
1006
- - fmt (= 9.1.0)
1029
+ - fast_float (= 6.1.4)
1030
+ - fmt (= 11.0.2)
1007
1031
  - glog
1008
1032
  - hermes-engine
1009
- - RCT-Folly/Fabric (= 2024.01.01.00)
1033
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1010
1034
  - RCTRequired
1011
1035
  - RCTTypeSafety
1012
1036
  - React-Core
@@ -1021,15 +1045,15 @@ PODS:
1021
1045
  - React-rendererdebug
1022
1046
  - React-runtimescheduler
1023
1047
  - React-utils
1024
- - ReactCodegen
1025
1048
  - ReactCommon/turbomodule/core
1026
1049
  - Yoga
1027
- - React-FabricComponents/components/textinput (0.76.6):
1050
+ - React-FabricComponents/components/textinput (0.78.1):
1028
1051
  - DoubleConversion
1029
- - fmt (= 9.1.0)
1052
+ - fast_float (= 6.1.4)
1053
+ - fmt (= 11.0.2)
1030
1054
  - glog
1031
1055
  - hermes-engine
1032
- - RCT-Folly/Fabric (= 2024.01.01.00)
1056
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1033
1057
  - RCTRequired
1034
1058
  - RCTTypeSafety
1035
1059
  - React-Core
@@ -1044,15 +1068,15 @@ PODS:
1044
1068
  - React-rendererdebug
1045
1069
  - React-runtimescheduler
1046
1070
  - React-utils
1047
- - ReactCodegen
1048
1071
  - ReactCommon/turbomodule/core
1049
1072
  - Yoga
1050
- - React-FabricComponents/components/unimplementedview (0.76.6):
1073
+ - React-FabricComponents/components/unimplementedview (0.78.1):
1051
1074
  - DoubleConversion
1052
- - fmt (= 9.1.0)
1075
+ - fast_float (= 6.1.4)
1076
+ - fmt (= 11.0.2)
1053
1077
  - glog
1054
1078
  - hermes-engine
1055
- - RCT-Folly/Fabric (= 2024.01.01.00)
1079
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1056
1080
  - RCTRequired
1057
1081
  - RCTTypeSafety
1058
1082
  - React-Core
@@ -1067,15 +1091,15 @@ PODS:
1067
1091
  - React-rendererdebug
1068
1092
  - React-runtimescheduler
1069
1093
  - React-utils
1070
- - ReactCodegen
1071
1094
  - ReactCommon/turbomodule/core
1072
1095
  - Yoga
1073
- - React-FabricComponents/textlayoutmanager (0.76.6):
1096
+ - React-FabricComponents/textlayoutmanager (0.78.1):
1074
1097
  - DoubleConversion
1075
- - fmt (= 9.1.0)
1098
+ - fast_float (= 6.1.4)
1099
+ - fmt (= 11.0.2)
1076
1100
  - glog
1077
1101
  - hermes-engine
1078
- - RCT-Folly/Fabric (= 2024.01.01.00)
1102
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1079
1103
  - RCTRequired
1080
1104
  - RCTTypeSafety
1081
1105
  - React-Core
@@ -1090,92 +1114,71 @@ PODS:
1090
1114
  - React-rendererdebug
1091
1115
  - React-runtimescheduler
1092
1116
  - React-utils
1093
- - ReactCodegen
1094
1117
  - ReactCommon/turbomodule/core
1095
1118
  - Yoga
1096
- - React-FabricImage (0.76.6):
1119
+ - React-FabricImage (0.78.1):
1097
1120
  - DoubleConversion
1098
- - fmt (= 9.1.0)
1121
+ - fast_float (= 6.1.4)
1122
+ - fmt (= 11.0.2)
1099
1123
  - glog
1100
1124
  - hermes-engine
1101
- - RCT-Folly/Fabric (= 2024.01.01.00)
1102
- - RCTRequired (= 0.76.6)
1103
- - RCTTypeSafety (= 0.76.6)
1125
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1126
+ - RCTRequired (= 0.78.1)
1127
+ - RCTTypeSafety (= 0.78.1)
1104
1128
  - React-Fabric
1129
+ - React-featureflags
1105
1130
  - React-graphics
1106
1131
  - React-ImageManager
1107
1132
  - React-jsi
1108
- - React-jsiexecutor (= 0.76.6)
1133
+ - React-jsiexecutor (= 0.78.1)
1109
1134
  - React-logger
1110
1135
  - React-rendererdebug
1111
1136
  - React-utils
1112
1137
  - ReactCommon
1113
1138
  - Yoga
1114
- - React-featureflags (0.76.6)
1115
- - React-featureflagsnativemodule (0.76.6):
1116
- - DoubleConversion
1117
- - glog
1139
+ - React-featureflags (0.78.1):
1140
+ - RCT-Folly (= 2024.11.18.00)
1141
+ - React-featureflagsnativemodule (0.78.1):
1118
1142
  - hermes-engine
1119
- - RCT-Folly (= 2024.01.01.00)
1120
- - RCTRequired
1121
- - RCTTypeSafety
1122
- - React-Core
1123
- - React-debug
1124
- - React-Fabric
1143
+ - RCT-Folly
1125
1144
  - React-featureflags
1126
- - React-graphics
1127
- - React-ImageManager
1128
- - React-NativeModulesApple
1129
- - React-RCTFabric
1130
- - React-rendererdebug
1131
- - React-utils
1132
- - ReactCodegen
1133
- - ReactCommon/turbomodule/bridging
1145
+ - React-jsi
1146
+ - React-jsiexecutor
1147
+ - React-RCTFBReactNativeSpec
1134
1148
  - ReactCommon/turbomodule/core
1135
- - Yoga
1136
- - React-graphics (0.76.6):
1149
+ - React-graphics (0.78.1):
1137
1150
  - DoubleConversion
1138
- - fmt (= 9.1.0)
1151
+ - fast_float (= 6.1.4)
1152
+ - fmt (= 11.0.2)
1139
1153
  - glog
1140
- - RCT-Folly/Fabric (= 2024.01.01.00)
1154
+ - hermes-engine
1155
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1141
1156
  - React-jsi
1142
1157
  - React-jsiexecutor
1143
1158
  - React-utils
1144
- - React-hermes (0.76.6):
1159
+ - React-hermes (0.78.1):
1145
1160
  - DoubleConversion
1146
- - fmt (= 9.1.0)
1161
+ - fast_float (= 6.1.4)
1162
+ - fmt (= 11.0.2)
1147
1163
  - glog
1148
1164
  - hermes-engine
1149
- - RCT-Folly (= 2024.01.01.00)
1150
- - React-cxxreact (= 0.76.6)
1165
+ - RCT-Folly (= 2024.11.18.00)
1166
+ - React-cxxreact (= 0.78.1)
1151
1167
  - React-jsi
1152
- - React-jsiexecutor (= 0.76.6)
1168
+ - React-jsiexecutor (= 0.78.1)
1153
1169
  - React-jsinspector
1154
- - React-perflogger (= 0.76.6)
1170
+ - React-perflogger (= 0.78.1)
1155
1171
  - React-runtimeexecutor
1156
- - React-idlecallbacksnativemodule (0.76.6):
1157
- - DoubleConversion
1172
+ - React-idlecallbacksnativemodule (0.78.1):
1158
1173
  - glog
1159
1174
  - hermes-engine
1160
- - RCT-Folly (= 2024.01.01.00)
1161
- - RCTRequired
1162
- - RCTTypeSafety
1163
- - React-Core
1164
- - React-debug
1165
- - React-Fabric
1166
- - React-featureflags
1167
- - React-graphics
1168
- - React-ImageManager
1169
- - React-NativeModulesApple
1170
- - React-RCTFabric
1171
- - React-rendererdebug
1175
+ - RCT-Folly
1176
+ - React-jsi
1177
+ - React-jsiexecutor
1178
+ - React-RCTFBReactNativeSpec
1172
1179
  - React-runtimescheduler
1173
- - React-utils
1174
- - ReactCodegen
1175
- - ReactCommon/turbomodule/bridging
1176
1180
  - ReactCommon/turbomodule/core
1177
- - Yoga
1178
- - React-ImageManager (0.76.6):
1181
+ - React-ImageManager (0.78.1):
1179
1182
  - glog
1180
1183
  - RCT-Folly/Fabric
1181
1184
  - React-Core/Default
@@ -1184,51 +1187,65 @@ PODS:
1184
1187
  - React-graphics
1185
1188
  - React-rendererdebug
1186
1189
  - React-utils
1187
- - React-jserrorhandler (0.76.6):
1190
+ - React-jserrorhandler (0.78.1):
1188
1191
  - glog
1189
1192
  - hermes-engine
1190
- - RCT-Folly/Fabric (= 2024.01.01.00)
1193
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1191
1194
  - React-cxxreact
1192
1195
  - React-debug
1196
+ - React-featureflags
1193
1197
  - React-jsi
1194
- - React-jsi (0.76.6):
1198
+ - ReactCommon/turbomodule/bridging
1199
+ - React-jsi (0.78.1):
1195
1200
  - boost
1196
1201
  - DoubleConversion
1197
- - fmt (= 9.1.0)
1202
+ - fast_float (= 6.1.4)
1203
+ - fmt (= 11.0.2)
1198
1204
  - glog
1199
1205
  - hermes-engine
1200
- - RCT-Folly (= 2024.01.01.00)
1201
- - React-jsiexecutor (0.76.6):
1206
+ - RCT-Folly (= 2024.11.18.00)
1207
+ - React-jsiexecutor (0.78.1):
1202
1208
  - DoubleConversion
1203
- - fmt (= 9.1.0)
1209
+ - fast_float (= 6.1.4)
1210
+ - fmt (= 11.0.2)
1204
1211
  - glog
1205
1212
  - hermes-engine
1206
- - RCT-Folly (= 2024.01.01.00)
1207
- - React-cxxreact (= 0.76.6)
1208
- - React-jsi (= 0.76.6)
1213
+ - RCT-Folly (= 2024.11.18.00)
1214
+ - React-cxxreact (= 0.78.1)
1215
+ - React-jsi (= 0.78.1)
1209
1216
  - React-jsinspector
1210
- - React-perflogger (= 0.76.6)
1211
- - React-jsinspector (0.76.6):
1217
+ - React-perflogger (= 0.78.1)
1218
+ - React-jsinspector (0.78.1):
1212
1219
  - DoubleConversion
1213
1220
  - glog
1214
1221
  - hermes-engine
1215
- - RCT-Folly (= 2024.01.01.00)
1222
+ - RCT-Folly
1216
1223
  - React-featureflags
1217
1224
  - React-jsi
1218
- - React-perflogger (= 0.76.6)
1219
- - React-runtimeexecutor (= 0.76.6)
1220
- - React-jsitracing (0.76.6):
1225
+ - React-jsinspectortracing
1226
+ - React-perflogger (= 0.78.1)
1227
+ - React-runtimeexecutor (= 0.78.1)
1228
+ - React-jsinspectortracing (0.78.1):
1229
+ - RCT-Folly
1230
+ - React-jsitracing (0.78.1):
1221
1231
  - React-jsi
1222
- - React-logger (0.76.6):
1232
+ - React-logger (0.78.1):
1223
1233
  - glog
1224
- - React-Mapbuffer (0.76.6):
1234
+ - React-Mapbuffer (0.78.1):
1225
1235
  - glog
1226
1236
  - React-debug
1227
- - React-microtasksnativemodule (0.76.6):
1237
+ - React-microtasksnativemodule (0.78.1):
1238
+ - hermes-engine
1239
+ - RCT-Folly
1240
+ - React-jsi
1241
+ - React-jsiexecutor
1242
+ - React-RCTFBReactNativeSpec
1243
+ - ReactCommon/turbomodule/core
1244
+ - react-native-image-picker (8.2.0):
1228
1245
  - DoubleConversion
1229
1246
  - glog
1230
1247
  - hermes-engine
1231
- - RCT-Folly (= 2024.01.01.00)
1248
+ - RCT-Folly (= 2024.11.18.00)
1232
1249
  - RCTRequired
1233
1250
  - RCTTypeSafety
1234
1251
  - React-Core
@@ -1245,11 +1262,11 @@ PODS:
1245
1262
  - ReactCommon/turbomodule/bridging
1246
1263
  - ReactCommon/turbomodule/core
1247
1264
  - Yoga
1248
- - react-native-image-picker (7.2.3):
1265
+ - react-native-webview (13.13.5):
1249
1266
  - DoubleConversion
1250
1267
  - glog
1251
1268
  - hermes-engine
1252
- - RCT-Folly (= 2024.01.01.00)
1269
+ - RCT-Folly (= 2024.11.18.00)
1253
1270
  - RCTRequired
1254
1271
  - RCTTypeSafety
1255
1272
  - React-Core
@@ -1266,8 +1283,7 @@ PODS:
1266
1283
  - ReactCommon/turbomodule/bridging
1267
1284
  - ReactCommon/turbomodule/core
1268
1285
  - Yoga
1269
- - React-nativeconfig (0.76.6)
1270
- - React-NativeModulesApple (0.76.6):
1286
+ - React-NativeModulesApple (0.78.1):
1271
1287
  - glog
1272
1288
  - hermes-engine
1273
1289
  - React-callinvoker
@@ -1278,25 +1294,27 @@ PODS:
1278
1294
  - React-runtimeexecutor
1279
1295
  - ReactCommon/turbomodule/bridging
1280
1296
  - ReactCommon/turbomodule/core
1281
- - React-perflogger (0.76.6):
1297
+ - React-perflogger (0.78.1):
1282
1298
  - DoubleConversion
1283
- - RCT-Folly (= 2024.01.01.00)
1284
- - React-performancetimeline (0.76.6):
1285
- - RCT-Folly (= 2024.01.01.00)
1299
+ - RCT-Folly (= 2024.11.18.00)
1300
+ - React-performancetimeline (0.78.1):
1301
+ - RCT-Folly (= 2024.11.18.00)
1286
1302
  - React-cxxreact
1303
+ - React-featureflags
1304
+ - React-jsinspectortracing
1287
1305
  - React-timing
1288
- - React-RCTActionSheet (0.76.6):
1289
- - React-Core/RCTActionSheetHeaders (= 0.76.6)
1290
- - React-RCTAnimation (0.76.6):
1291
- - RCT-Folly (= 2024.01.01.00)
1306
+ - React-RCTActionSheet (0.78.1):
1307
+ - React-Core/RCTActionSheetHeaders (= 0.78.1)
1308
+ - React-RCTAnimation (0.78.1):
1309
+ - RCT-Folly (= 2024.11.18.00)
1292
1310
  - RCTTypeSafety
1293
1311
  - React-Core/RCTAnimationHeaders
1294
1312
  - React-jsi
1295
1313
  - React-NativeModulesApple
1296
- - ReactCodegen
1314
+ - React-RCTFBReactNativeSpec
1297
1315
  - ReactCommon
1298
- - React-RCTAppDelegate (0.76.6):
1299
- - RCT-Folly (= 2024.01.01.00)
1316
+ - React-RCTAppDelegate (0.78.1):
1317
+ - RCT-Folly (= 2024.11.18.00)
1300
1318
  - RCTRequired
1301
1319
  - RCTTypeSafety
1302
1320
  - React-Core
@@ -1307,9 +1325,9 @@ PODS:
1307
1325
  - React-featureflags
1308
1326
  - React-graphics
1309
1327
  - React-hermes
1310
- - React-nativeconfig
1311
1328
  - React-NativeModulesApple
1312
1329
  - React-RCTFabric
1330
+ - React-RCTFBReactNativeSpec
1313
1331
  - React-RCTImage
1314
1332
  - React-RCTNetwork
1315
1333
  - React-rendererdebug
@@ -1318,25 +1336,25 @@ PODS:
1318
1336
  - React-RuntimeHermes
1319
1337
  - React-runtimescheduler
1320
1338
  - React-utils
1321
- - ReactCodegen
1322
1339
  - ReactCommon
1323
- - React-RCTBlob (0.76.6):
1340
+ - React-RCTBlob (0.78.1):
1324
1341
  - DoubleConversion
1325
- - fmt (= 9.1.0)
1342
+ - fast_float (= 6.1.4)
1343
+ - fmt (= 11.0.2)
1326
1344
  - hermes-engine
1327
- - RCT-Folly (= 2024.01.01.00)
1345
+ - RCT-Folly (= 2024.11.18.00)
1328
1346
  - React-Core/RCTBlobHeaders
1329
1347
  - React-Core/RCTWebSocket
1330
1348
  - React-jsi
1331
1349
  - React-jsinspector
1332
1350
  - React-NativeModulesApple
1351
+ - React-RCTFBReactNativeSpec
1333
1352
  - React-RCTNetwork
1334
- - ReactCodegen
1335
1353
  - ReactCommon
1336
- - React-RCTFabric (0.76.6):
1354
+ - React-RCTFabric (0.78.1):
1337
1355
  - glog
1338
1356
  - hermes-engine
1339
- - RCT-Folly/Fabric (= 2024.01.01.00)
1357
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1340
1358
  - React-Core
1341
1359
  - React-debug
1342
1360
  - React-Fabric
@@ -1347,7 +1365,7 @@ PODS:
1347
1365
  - React-ImageManager
1348
1366
  - React-jsi
1349
1367
  - React-jsinspector
1350
- - React-nativeconfig
1368
+ - React-jsinspectortracing
1351
1369
  - React-performancetimeline
1352
1370
  - React-RCTImage
1353
1371
  - React-RCTText
@@ -1356,62 +1374,74 @@ PODS:
1356
1374
  - React-runtimescheduler
1357
1375
  - React-utils
1358
1376
  - Yoga
1359
- - React-RCTImage (0.76.6):
1360
- - RCT-Folly (= 2024.01.01.00)
1377
+ - React-RCTFBReactNativeSpec (0.78.1):
1378
+ - hermes-engine
1379
+ - RCT-Folly
1380
+ - RCTRequired
1381
+ - RCTTypeSafety
1382
+ - React-Core
1383
+ - React-jsi
1384
+ - React-jsiexecutor
1385
+ - React-NativeModulesApple
1386
+ - ReactCommon
1387
+ - React-RCTImage (0.78.1):
1388
+ - RCT-Folly (= 2024.11.18.00)
1361
1389
  - RCTTypeSafety
1362
1390
  - React-Core/RCTImageHeaders
1363
1391
  - React-jsi
1364
1392
  - React-NativeModulesApple
1393
+ - React-RCTFBReactNativeSpec
1365
1394
  - React-RCTNetwork
1366
- - ReactCodegen
1367
1395
  - ReactCommon
1368
- - React-RCTLinking (0.76.6):
1369
- - React-Core/RCTLinkingHeaders (= 0.76.6)
1370
- - React-jsi (= 0.76.6)
1396
+ - React-RCTLinking (0.78.1):
1397
+ - React-Core/RCTLinkingHeaders (= 0.78.1)
1398
+ - React-jsi (= 0.78.1)
1371
1399
  - React-NativeModulesApple
1372
- - ReactCodegen
1400
+ - React-RCTFBReactNativeSpec
1373
1401
  - ReactCommon
1374
- - ReactCommon/turbomodule/core (= 0.76.6)
1375
- - React-RCTNetwork (0.76.6):
1376
- - RCT-Folly (= 2024.01.01.00)
1402
+ - ReactCommon/turbomodule/core (= 0.78.1)
1403
+ - React-RCTNetwork (0.78.1):
1404
+ - RCT-Folly (= 2024.11.18.00)
1377
1405
  - RCTTypeSafety
1378
1406
  - React-Core/RCTNetworkHeaders
1379
1407
  - React-jsi
1380
1408
  - React-NativeModulesApple
1381
- - ReactCodegen
1409
+ - React-RCTFBReactNativeSpec
1382
1410
  - ReactCommon
1383
- - React-RCTSettings (0.76.6):
1384
- - RCT-Folly (= 2024.01.01.00)
1411
+ - React-RCTSettings (0.78.1):
1412
+ - RCT-Folly (= 2024.11.18.00)
1385
1413
  - RCTTypeSafety
1386
1414
  - React-Core/RCTSettingsHeaders
1387
1415
  - React-jsi
1388
1416
  - React-NativeModulesApple
1389
- - ReactCodegen
1417
+ - React-RCTFBReactNativeSpec
1390
1418
  - ReactCommon
1391
- - React-RCTText (0.76.6):
1392
- - React-Core/RCTTextHeaders (= 0.76.6)
1419
+ - React-RCTText (0.78.1):
1420
+ - React-Core/RCTTextHeaders (= 0.78.1)
1393
1421
  - Yoga
1394
- - React-RCTVibration (0.76.6):
1395
- - RCT-Folly (= 2024.01.01.00)
1422
+ - React-RCTVibration (0.78.1):
1423
+ - RCT-Folly (= 2024.11.18.00)
1396
1424
  - React-Core/RCTVibrationHeaders
1397
1425
  - React-jsi
1398
1426
  - React-NativeModulesApple
1399
- - ReactCodegen
1427
+ - React-RCTFBReactNativeSpec
1400
1428
  - ReactCommon
1401
- - React-rendererconsistency (0.76.6)
1402
- - React-rendererdebug (0.76.6):
1429
+ - React-rendererconsistency (0.78.1)
1430
+ - React-rendererdebug (0.78.1):
1403
1431
  - DoubleConversion
1404
- - fmt (= 9.1.0)
1405
- - RCT-Folly (= 2024.01.01.00)
1432
+ - fast_float (= 6.1.4)
1433
+ - fmt (= 11.0.2)
1434
+ - RCT-Folly (= 2024.11.18.00)
1406
1435
  - React-debug
1407
- - React-rncore (0.76.6)
1408
- - React-RuntimeApple (0.76.6):
1436
+ - React-rncore (0.78.1)
1437
+ - React-RuntimeApple (0.78.1):
1409
1438
  - hermes-engine
1410
- - RCT-Folly/Fabric (= 2024.01.01.00)
1439
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1411
1440
  - React-callinvoker
1412
1441
  - React-Core/Default
1413
1442
  - React-CoreModules
1414
1443
  - React-cxxreact
1444
+ - React-featureflags
1415
1445
  - React-jserrorhandler
1416
1446
  - React-jsi
1417
1447
  - React-jsiexecutor
@@ -1419,16 +1449,18 @@ PODS:
1419
1449
  - React-Mapbuffer
1420
1450
  - React-NativeModulesApple
1421
1451
  - React-RCTFabric
1452
+ - React-RCTFBReactNativeSpec
1422
1453
  - React-RuntimeCore
1423
1454
  - React-runtimeexecutor
1424
1455
  - React-RuntimeHermes
1425
1456
  - React-runtimescheduler
1426
1457
  - React-utils
1427
- - React-RuntimeCore (0.76.6):
1458
+ - React-RuntimeCore (0.78.1):
1428
1459
  - glog
1429
1460
  - hermes-engine
1430
- - RCT-Folly/Fabric (= 2024.01.01.00)
1461
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1431
1462
  - React-cxxreact
1463
+ - React-Fabric
1432
1464
  - React-featureflags
1433
1465
  - React-jserrorhandler
1434
1466
  - React-jsi
@@ -1438,23 +1470,22 @@ PODS:
1438
1470
  - React-runtimeexecutor
1439
1471
  - React-runtimescheduler
1440
1472
  - React-utils
1441
- - React-runtimeexecutor (0.76.6):
1442
- - React-jsi (= 0.76.6)
1443
- - React-RuntimeHermes (0.76.6):
1473
+ - React-runtimeexecutor (0.78.1):
1474
+ - React-jsi (= 0.78.1)
1475
+ - React-RuntimeHermes (0.78.1):
1444
1476
  - hermes-engine
1445
- - RCT-Folly/Fabric (= 2024.01.01.00)
1477
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1446
1478
  - React-featureflags
1447
1479
  - React-hermes
1448
1480
  - React-jsi
1449
1481
  - React-jsinspector
1450
1482
  - React-jsitracing
1451
- - React-nativeconfig
1452
1483
  - React-RuntimeCore
1453
1484
  - React-utils
1454
- - React-runtimescheduler (0.76.6):
1485
+ - React-runtimescheduler (0.78.1):
1455
1486
  - glog
1456
1487
  - hermes-engine
1457
- - RCT-Folly (= 2024.01.01.00)
1488
+ - RCT-Folly (= 2024.11.18.00)
1458
1489
  - React-callinvoker
1459
1490
  - React-cxxreact
1460
1491
  - React-debug
@@ -1466,14 +1497,16 @@ PODS:
1466
1497
  - React-runtimeexecutor
1467
1498
  - React-timing
1468
1499
  - React-utils
1469
- - React-timing (0.76.6)
1470
- - React-utils (0.76.6):
1500
+ - React-timing (0.78.1)
1501
+ - React-utils (0.78.1):
1471
1502
  - glog
1472
1503
  - hermes-engine
1473
- - RCT-Folly (= 2024.01.01.00)
1504
+ - RCT-Folly (= 2024.11.18.00)
1474
1505
  - React-debug
1475
- - React-jsi (= 0.76.6)
1476
- - ReactCodegen (0.76.6):
1506
+ - React-jsi (= 0.78.1)
1507
+ - ReactAppDependencyProvider (0.78.1):
1508
+ - ReactCodegen
1509
+ - ReactCodegen (0.78.1):
1477
1510
  - DoubleConversion
1478
1511
  - glog
1479
1512
  - hermes-engine
@@ -1489,56 +1522,60 @@ PODS:
1489
1522
  - React-jsi
1490
1523
  - React-jsiexecutor
1491
1524
  - React-NativeModulesApple
1525
+ - React-RCTAppDelegate
1492
1526
  - React-rendererdebug
1493
1527
  - React-utils
1494
1528
  - ReactCommon/turbomodule/bridging
1495
1529
  - ReactCommon/turbomodule/core
1496
- - ReactCommon (0.76.6):
1497
- - ReactCommon/turbomodule (= 0.76.6)
1498
- - ReactCommon/turbomodule (0.76.6):
1530
+ - ReactCommon (0.78.1):
1531
+ - ReactCommon/turbomodule (= 0.78.1)
1532
+ - ReactCommon/turbomodule (0.78.1):
1499
1533
  - DoubleConversion
1500
- - fmt (= 9.1.0)
1501
- - glog
1502
- - hermes-engine
1503
- - RCT-Folly (= 2024.01.01.00)
1504
- - React-callinvoker (= 0.76.6)
1505
- - React-cxxreact (= 0.76.6)
1506
- - React-jsi (= 0.76.6)
1507
- - React-logger (= 0.76.6)
1508
- - React-perflogger (= 0.76.6)
1509
- - ReactCommon/turbomodule/bridging (= 0.76.6)
1510
- - ReactCommon/turbomodule/core (= 0.76.6)
1511
- - ReactCommon/turbomodule/bridging (0.76.6):
1534
+ - fast_float (= 6.1.4)
1535
+ - fmt (= 11.0.2)
1536
+ - glog
1537
+ - hermes-engine
1538
+ - RCT-Folly (= 2024.11.18.00)
1539
+ - React-callinvoker (= 0.78.1)
1540
+ - React-cxxreact (= 0.78.1)
1541
+ - React-jsi (= 0.78.1)
1542
+ - React-logger (= 0.78.1)
1543
+ - React-perflogger (= 0.78.1)
1544
+ - ReactCommon/turbomodule/bridging (= 0.78.1)
1545
+ - ReactCommon/turbomodule/core (= 0.78.1)
1546
+ - ReactCommon/turbomodule/bridging (0.78.1):
1512
1547
  - DoubleConversion
1513
- - fmt (= 9.1.0)
1548
+ - fast_float (= 6.1.4)
1549
+ - fmt (= 11.0.2)
1514
1550
  - glog
1515
1551
  - hermes-engine
1516
- - RCT-Folly (= 2024.01.01.00)
1517
- - React-callinvoker (= 0.76.6)
1518
- - React-cxxreact (= 0.76.6)
1519
- - React-jsi (= 0.76.6)
1520
- - React-logger (= 0.76.6)
1521
- - React-perflogger (= 0.76.6)
1522
- - ReactCommon/turbomodule/core (0.76.6):
1552
+ - RCT-Folly (= 2024.11.18.00)
1553
+ - React-callinvoker (= 0.78.1)
1554
+ - React-cxxreact (= 0.78.1)
1555
+ - React-jsi (= 0.78.1)
1556
+ - React-logger (= 0.78.1)
1557
+ - React-perflogger (= 0.78.1)
1558
+ - ReactCommon/turbomodule/core (0.78.1):
1523
1559
  - DoubleConversion
1524
- - fmt (= 9.1.0)
1525
- - glog
1526
- - hermes-engine
1527
- - RCT-Folly (= 2024.01.01.00)
1528
- - React-callinvoker (= 0.76.6)
1529
- - React-cxxreact (= 0.76.6)
1530
- - React-debug (= 0.76.6)
1531
- - React-featureflags (= 0.76.6)
1532
- - React-jsi (= 0.76.6)
1533
- - React-logger (= 0.76.6)
1534
- - React-perflogger (= 0.76.6)
1535
- - React-utils (= 0.76.6)
1536
- - RegulaCommon (7.5.935)
1537
- - RNFaceCore (6.3.12-beta):
1538
- - FaceCoreBasic (= 6.3.982)
1560
+ - fast_float (= 6.1.4)
1561
+ - fmt (= 11.0.2)
1562
+ - glog
1563
+ - hermes-engine
1564
+ - RCT-Folly (= 2024.11.18.00)
1565
+ - React-callinvoker (= 0.78.1)
1566
+ - React-cxxreact (= 0.78.1)
1567
+ - React-debug (= 0.78.1)
1568
+ - React-featureflags (= 0.78.1)
1569
+ - React-jsi (= 0.78.1)
1570
+ - React-logger (= 0.78.1)
1571
+ - React-perflogger (= 0.78.1)
1572
+ - React-utils (= 0.78.1)
1573
+ - RegulaCommon
1574
+ - RNFaceCore:
1575
+ - FaceCoreBasic
1539
1576
  - React
1540
- - RNFaceSDK (6.5.63-beta):
1541
- - FaceSDK (= 6.4.2321)
1577
+ - RNFaceSDK:
1578
+ - FaceSDK
1542
1579
  - React
1543
1580
  - RNFS (2.20.0):
1544
1581
  - React-Core
@@ -1548,6 +1585,7 @@ PODS:
1548
1585
  DEPENDENCIES:
1549
1586
  - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1550
1587
  - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1588
+ - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
1551
1589
  - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1552
1590
  - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
1553
1591
  - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
@@ -1579,12 +1617,13 @@ DEPENDENCIES:
1579
1617
  - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1580
1618
  - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1581
1619
  - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1620
+ - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
1582
1621
  - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
1583
1622
  - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1584
1623
  - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1585
1624
  - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
1586
1625
  - react-native-image-picker (from `../node_modules/react-native-image-picker`)
1587
- - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
1626
+ - react-native-webview (from `../node_modules/react-native-webview`)
1588
1627
  - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1589
1628
  - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1590
1629
  - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
@@ -1593,6 +1632,7 @@ DEPENDENCIES:
1593
1632
  - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1594
1633
  - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1595
1634
  - React-RCTFabric (from `../node_modules/react-native/React`)
1635
+ - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`)
1596
1636
  - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1597
1637
  - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1598
1638
  - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
@@ -1609,6 +1649,7 @@ DEPENDENCIES:
1609
1649
  - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1610
1650
  - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
1611
1651
  - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1652
+ - ReactAppDependencyProvider (from `build/generated/ios`)
1612
1653
  - ReactCodegen (from `build/generated/ios`)
1613
1654
  - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1614
1655
  - "RNFaceCore (from `../node_modules/@regulaforensics/face-core-basic`)"
@@ -1617,7 +1658,7 @@ DEPENDENCIES:
1617
1658
  - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1618
1659
 
1619
1660
  SPEC REPOS:
1620
- trunk:
1661
+ https://github.com/CocoaPods/Specs.git:
1621
1662
  - FaceCoreBasic
1622
1663
  - FaceSDK
1623
1664
  - RegulaCommon
@@ -1628,6 +1669,8 @@ EXTERNAL SOURCES:
1628
1669
  :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1629
1670
  DoubleConversion:
1630
1671
  :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1672
+ fast_float:
1673
+ :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"
1631
1674
  FBLazyVector:
1632
1675
  :path: "../node_modules/react-native/Libraries/FBLazyVector"
1633
1676
  fmt:
@@ -1636,7 +1679,7 @@ EXTERNAL SOURCES:
1636
1679
  :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1637
1680
  hermes-engine:
1638
1681
  :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1639
- :tag: hermes-2024-11-12-RNv0.76.2-5b4aa20c719830dcf5684832b89a6edb95ac3d64
1682
+ :tag: hermes-2025-01-13-RNv0.78.0-a942ef374897d85da38e9c8904574f8376555388
1640
1683
  RCT-Folly:
1641
1684
  :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1642
1685
  RCTDeprecation:
@@ -1687,6 +1730,8 @@ EXTERNAL SOURCES:
1687
1730
  :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1688
1731
  React-jsinspector:
1689
1732
  :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1733
+ React-jsinspectortracing:
1734
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
1690
1735
  React-jsitracing:
1691
1736
  :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
1692
1737
  React-logger:
@@ -1697,8 +1742,8 @@ EXTERNAL SOURCES:
1697
1742
  :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
1698
1743
  react-native-image-picker:
1699
1744
  :path: "../node_modules/react-native-image-picker"
1700
- React-nativeconfig:
1701
- :path: "../node_modules/react-native/ReactCommon"
1745
+ react-native-webview:
1746
+ :path: "../node_modules/react-native-webview"
1702
1747
  React-NativeModulesApple:
1703
1748
  :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1704
1749
  React-perflogger:
@@ -1715,6 +1760,8 @@ EXTERNAL SOURCES:
1715
1760
  :path: "../node_modules/react-native/Libraries/Blob"
1716
1761
  React-RCTFabric:
1717
1762
  :path: "../node_modules/react-native/React"
1763
+ React-RCTFBReactNativeSpec:
1764
+ :path: "../node_modules/react-native/React"
1718
1765
  React-RCTImage:
1719
1766
  :path: "../node_modules/react-native/Libraries/Image"
1720
1767
  React-RCTLinking:
@@ -1747,6 +1794,8 @@ EXTERNAL SOURCES:
1747
1794
  :path: "../node_modules/react-native/ReactCommon/react/timing"
1748
1795
  React-utils:
1749
1796
  :path: "../node_modules/react-native/ReactCommon/react/utils"
1797
+ ReactAppDependencyProvider:
1798
+ :path: build/generated/ios
1750
1799
  ReactCodegen:
1751
1800
  :path: build/generated/ios
1752
1801
  ReactCommon:
@@ -1761,78 +1810,82 @@ EXTERNAL SOURCES:
1761
1810
  :path: "../node_modules/react-native/ReactCommon/yoga"
1762
1811
 
1763
1812
  SPEC CHECKSUMS:
1764
- boost: 1dca942403ed9342f98334bf4c3621f011aa7946
1765
- DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385
1766
- FaceCoreBasic: fdbb6488170f759654c0d84aa1536705ffa4823e
1767
- FaceSDK: e96016e36d5507ad9d9ee3b011d735f5fe51829f
1768
- FBLazyVector: be509404b5de73a64a74284edcaf73a5d1e128b1
1769
- fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be
1770
- glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a
1771
- hermes-engine: 1949ca944b195a8bde7cbf6316b9068e19cf53c6
1772
- RCT-Folly: 84578c8756030547307e4572ab1947de1685c599
1773
- RCTDeprecation: 063fc281b30b7dc944c98fe53a7e266dab1a8706
1774
- RCTRequired: 8eda2a5a745f6081157a4f34baac40b65fe02b31
1775
- RCTTypeSafety: 0f96bf6c99efc33eb43352212703854933f22930
1776
- React: 1d3d5bada479030961d513fb11e42659b30e97ff
1777
- React-callinvoker: 682c610b9e9d3b93bd8d0075eacb2e6aa304d3e0
1778
- React-Core: 9f33c0fc7776a5796d4dae09c363bd58e6a27efe
1779
- React-CoreModules: 91afb654834f0a1f48fb26dd1f4d1a1460c44def
1780
- React-cxxreact: c7491114266a70f8215306f1d0c4b54a811e77cf
1781
- React-debug: 4ae2e95c2d392cca29939a3a2f2b4320ddff3e59
1782
- React-defaultsnativemodule: 43d27f1844b4c18fc03fa4fa35ea2f1c48d64237
1783
- React-domnativemodule: bca178dd0ce1532f75be783f6f2923f675a778ae
1784
- React-Fabric: d6bc0222335270eb76c28dd5036c03a010c04d51
1785
- React-FabricComponents: 05eec9e2cf998be793daaee8fa8a8ea6d1187785
1786
- React-FabricImage: 3a12374b0aedda71c7ef6bd64b59479b8bb3fe05
1787
- React-featureflags: 5670e0dcdc17ba2515963d117dacc13d5b69c431
1788
- React-featureflagsnativemodule: bb13129d1427327b2eb8cc13d3879363a4cd8326
1789
- React-graphics: 659968f797257c0071ddff28a2d094c8e5c5899c
1790
- React-hermes: 6eb81c6f72c25d9058b6030227d0fcc1f741a807
1791
- React-idlecallbacksnativemodule: 551b7a89b46041c746640fe13eacf39c1b169709
1792
- React-ImageManager: e3d0270c82bf39432da2aff2fcd60dd16b308689
1793
- React-jserrorhandler: f60c9b68b4d4ac1449bddc2553610708e939ddee
1794
- React-jsi: 47528a2928f38fe15e3d06a96de886e1a779ffc7
1795
- React-jsiexecutor: 88a141c4dc821e1b2aa7ecc7d6af7b186e8455a2
1796
- React-jsinspector: c26cf4118ea7c1aae721d2cde5acf3b2cdceb814
1797
- React-jsitracing: 810d0465c3455e352a71147c18332b1cba1d1410
1798
- React-logger: d42a53754a7252cc7a851315f0da2e46b450ea92
1799
- React-Mapbuffer: 89885d1518433a462fe64b68bf5e097997380090
1800
- React-microtasksnativemodule: 36341e09dcd1df535503e6ed2ddf88f10da56d52
1801
- react-native-image-picker: 91f4e8dd458db2acdb278479e960bc224cbf0217
1802
- React-nativeconfig: 539ff4de6ce3b694e8e751080568c281c84903ce
1803
- React-NativeModulesApple: 702246817c286d057e23fe4b1302019796e62521
1804
- React-perflogger: f260e2de95f9dbd002035251559c13bf1f0643d4
1805
- React-performancetimeline: 957075cead70fe9536a327eb4f842b3d8982f2ec
1806
- React-RCTActionSheet: ed5a845eae98fe455b9a1d71f057d626e2f3f1c5
1807
- React-RCTAnimation: a49bd2c28c3f32b1d01ff1163603aee3d420ce42
1808
- React-RCTAppDelegate: f7aa2f938a6673cfd2a76e76fea8c4b38a4a5bec
1809
- React-RCTBlob: 8ddf30f97222f4d8227f64428349fd8252292cb5
1810
- React-RCTFabric: 51fb64f7ca7ca2fa334433ba6d4f12750a481cf1
1811
- React-RCTImage: 077a25f3a9a6b79938a01c2cfae05ea5f07fc584
1812
- React-RCTLinking: 0c8415c600942454d663c4c4dc0d3b00aa7ba5e5
1813
- React-RCTNetwork: 42a3c6fb5318dcc9f8796f43de081799fb905021
1814
- React-RCTSettings: 1028522e45192515bd8c5308752d3270ee95fd66
1815
- React-RCTText: 29ef786d78f69ec5b571634ef2ddd6ec177c958a
1816
- React-RCTVibration: 97859ed50816369f4830f623dfac8dc9877f3c5c
1817
- React-rendererconsistency: ccd50d5ee6544b26cd11fff5ad1112c5058a0064
1818
- React-rendererdebug: 2092a1207a0023ac30877f4f730b403bfaf5ccbe
1819
- React-rncore: bfe554cb773978e8b94898866964c9579cb0c70c
1820
- React-RuntimeApple: 80949ebe7e6a94296e0168a940832d2029b66982
1821
- React-RuntimeCore: f04b5d1eb0534a4f4f46bc76a938a9360ad91024
1822
- React-runtimeexecutor: 26a9d14619ec1359470df391be9abb7c80a21b2b
1823
- React-RuntimeHermes: 91c2a67a99f316f11a08d3d9280ab4c9fae59b56
1824
- React-runtimescheduler: 76bb85f5ba01e800b4970fbc84eeaf10756c50c4
1825
- React-timing: c9c7c0fe2fdfc433ef208889b6191dfb45457d68
1826
- React-utils: 1b14c41c3edf4d96db1247a78e0ad96e7ceea011
1827
- ReactCodegen: 0a0eef9c8cd84c932ae1868832086c6441811e84
1828
- ReactCommon: 3c1c8c6d777103c0e60e37c6c5f08e828e2a77c9
1829
- RegulaCommon: 2a6406d2d3ebbd720b66a9cfa5b9631701d343eb
1830
- RNFaceCore: af32c46494f2d49d6e12a69c76961781028b0218
1831
- RNFaceSDK: 649ab8a1bfba06dced002d106dd63aec46ac45a5
1813
+ boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
1814
+ DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
1815
+ FaceCoreBasicBeta: eeebd165bd8d59bd551191e4a18059b66e38623b
1816
+ FaceSDKStage: 92b402274d930f06c2912341304acaf67330f7b9
1817
+ fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
1818
+ FBLazyVector: bba368dacede4c9dec7a58c9be5a2d3e9ea30cc7
1819
+ fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
1820
+ glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8
1821
+ hermes-engine: f493b0a600aed5dc06532141603688a30a5b2f61
1822
+ RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82
1823
+ RCTDeprecation: 082fbc90409015eac1366795a0b90f8b5cb28efe
1824
+ RCTRequired: ca966f4da75b62ce3ea8c538d82cb5ecbb06f12a
1825
+ RCTTypeSafety: 2f0bc11f9584fde4c7e6d8b26577c97681051c00
1826
+ React: e6035d3a639f6668a18429aaf2fdc0c12b1e7a81
1827
+ React-callinvoker: 3740fb1716428dabd205486c818ce6a5999e7f11
1828
+ React-Core: d12b31b149ff71e5054dec137d651a9955569321
1829
+ React-CoreModules: e392c711449f260d9ba7556a264ef5cfacdab3f9
1830
+ React-cxxreact: dcb3c48b13b298a270edefb24d2a9211809ff147
1831
+ React-debug: d8d938ee3aecd7ab9c92198324ed33cac3d42566
1832
+ React-defaultsnativemodule: 599c11bfe99a3b88cd1fa2dc478be1b6b0e57be9
1833
+ React-domnativemodule: 4f278903cad707415026dacbb96768704a705569
1834
+ React-Fabric: 9e83424b66a00da675c6684568dc026399746236
1835
+ React-FabricComponents: 26da28dd7115005866fdf2f8d4e294e07dd6e3df
1836
+ React-FabricImage: b60fb253651746de12418e1308b4da2c54b8fde6
1837
+ React-featureflags: 04a42c3099a4a12fdf34c42b84512b96caaf9d41
1838
+ React-featureflagsnativemodule: 32a69405f053b25640cac519dbb24c5e79185e1b
1839
+ React-graphics: 49bacefc908533e59e1b65ac479bd00c43dad2d0
1840
+ React-hermes: 809429058aa7610601c552556a132df2f446fe0c
1841
+ React-idlecallbacksnativemodule: d6c574b38b6497189dcdb1c4953c049ed93a67d1
1842
+ React-ImageManager: 9cb4d8d83f0d43591f06bd07b1d845144cb9bc72
1843
+ React-jserrorhandler: 5d010f2c65066e682b5973ea0e39bfc7bfdf46fe
1844
+ React-jsi: 0be2628a04b7ab6b60565ccc0e11069c6a3e5a91
1845
+ React-jsiexecutor: cb431019ea945006b0ad62ba34dba8475926eda9
1846
+ React-jsinspector: 094b9197c4aa166c565273b5b80604c3c25f262a
1847
+ React-jsinspectortracing: 5498aaae966956939808ecd72635a6937c7e724d
1848
+ React-jsitracing: 9d28564942b168004da194785024ddc730caf0dc
1849
+ React-logger: 74ddb793d36b48bba176328c7af75e5e656fd405
1850
+ React-Mapbuffer: 39e87693178fd6483bb5ca8b851fae362d49409a
1851
+ React-microtasksnativemodule: b740ebae7fad70aa78bc24cc0dfc15ac9637b6eb
1852
+ react-native-image-picker: df2b20cdfa981f7288f4019774d9baa26a4772c1
1853
+ react-native-webview: 5095dd03fc98a529e44a6bb81aed21062b5f879e
1854
+ React-NativeModulesApple: af0571ac115d09c9a669ed45ce6a4ca960598a2d
1855
+ React-perflogger: 26d07766b033f84559bd520e949453dba8bf1cd8
1856
+ React-performancetimeline: 0f3e0b6e2152951257bd8c90f95d527cf4316fa8
1857
+ React-RCTActionSheet: 9488eac05a056a124f500beaecf0a5bd722b2916
1858
+ React-RCTAnimation: d4fe0beca00060dc3628d81ea65410180974a18a
1859
+ React-RCTAppDelegate: 6c81adc5689b4276368c9dc61eec211b18ca82c0
1860
+ React-RCTBlob: 1b89799400af7ca0ee598fa7d3bcd9d84ab1794d
1861
+ React-RCTFabric: 7dd42c2d2339184896aaa5cf1974d00c6b97875b
1862
+ React-RCTFBReactNativeSpec: 9487cf2e72e2b0da766afe2a71e1afca12e73325
1863
+ React-RCTImage: 7042262e823fe7849f1263f054c24ef2f4394e9d
1864
+ React-RCTLinking: 7cb75b965f19399f67e75f771f7bd6f097c263d1
1865
+ React-RCTNetwork: b9a7eab793a36b3a74d4d184b917e59842a30a58
1866
+ React-RCTSettings: 7866a50ecc34b202d736d1f4b9164bb711a68a9c
1867
+ React-RCTText: ce131e974c81c0ea4a187f24db12b262a1beab01
1868
+ React-RCTVibration: 16c24efa3a7fb96f6147ec129d554cc43b1ab707
1869
+ React-rendererconsistency: 4171665056d2a6039523e5aa8c9f5fbbe9553ad6
1870
+ React-rendererdebug: 9751d74346f583800af42b1fbb0b3561f66b5ff2
1871
+ React-rncore: 3e1894f8ebb4759f2d56b450645677547b9e3c52
1872
+ React-RuntimeApple: 0937e0055990b4dd81b2dbb8acc39f209aa6369b
1873
+ React-RuntimeCore: dec19daf6dbb5dad077c8bd2ceb5f612cdd34917
1874
+ React-runtimeexecutor: f2fc17f0bbfa5a697d94d2f18d7d5f74c8d41c48
1875
+ React-RuntimeHermes: 0e01cd1fbf82f1fabc66d6f8316c7ee35d8dc871
1876
+ React-runtimescheduler: 3f02922ff1cf0d4fdf5c60b868bed4da3b15a504
1877
+ React-timing: 34f46e46507ab2e215d801223f898a1f3d95a7a3
1878
+ React-utils: 6330b3336d328a09ccc89a45d68d1f2588021318
1879
+ ReactAppDependencyProvider: 5da0393968ce2767e79f9fda7caa108592b9b63e
1880
+ ReactCodegen: 82d5bc3e3ad2c8496848554cb2d3b64b03b53420
1881
+ ReactCommon: 269d0d36423fad044eaea49900e88684ac670a16
1882
+ RegulaCommon: c1afd830de032b9b8c0ee1a5c7a05ebe5478a114
1883
+ RNFaceCore: da06223aab6d5c5d8a2d2ab492f12db2f2624355
1884
+ RNFaceSDK: 7d762d6a67ecd8d7e898805794961590b610af0a
1832
1885
  RNFS: 89de7d7f4c0f6bafa05343c578f61118c8282ed8
1833
1886
  SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
1834
- Yoga: be6f55a028e86c83ae066f018e9b5d24ffc45436
1887
+ Yoga: b94ff2d7559cb66837c97a3f394ddb817faad4d6
1835
1888
 
1836
- PODFILE CHECKSUM: debc3fbc850867426e5bf275156612e81cb47aa1
1889
+ PODFILE CHECKSUM: 1586412057fbc80de1ac843264b1d0679614f3ff
1837
1890
 
1838
1891
  COCOAPODS: 1.15.2