@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.
- package/README.md +1 -1
- package/RNFaceSDK.podspec +3 -3
- package/android/CVDFaceSDK.kt +22 -8
- package/android/build.gradle +1 -1
- package/android/cordova.gradle +1 -1
- package/android/src/main/java/com/regula/plugin/facesdk/Config.kt +9 -1
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +2 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +15 -9
- package/android/src/main/java/com/regula/plugin/facesdk/RNFaceApiModule.kt +16 -6
- package/android/src/main/java/com/regula/plugin/facesdk/Utils.kt +32 -2
- package/examples/capacitor/README.md +3 -8
- package/examples/capacitor/android/app/build.gradle +2 -6
- package/examples/capacitor/android/app/capacitor.build.gradle +4 -4
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +3 -16
- package/examples/capacitor/android/app/src/main/java/com/regula/{faceapi → documentreader}/MainActivity.java +1 -1
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +2 -2
- package/examples/capacitor/android/build.gradle +1 -1
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/examples/capacitor/android/gradlew +21 -13
- package/examples/capacitor/android/gradlew.bat +12 -10
- package/examples/capacitor/android/variables.gradle +11 -11
- package/examples/capacitor/index.html +8 -104
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +4 -4
- package/examples/capacitor/ios/App/Podfile +2 -3
- package/examples/capacitor/ios/App/Podfile.lock +57 -0
- package/examples/capacitor/package-lock.json +3536 -0
- package/examples/capacitor/package.json +19 -56
- package/examples/capacitor/public/images/portrait.png +0 -0
- package/examples/capacitor/scripts/setup.sh +2 -0
- package/examples/capacitor/src/main.css +77 -0
- package/examples/capacitor/src/main.html +22 -0
- package/examples/capacitor/src/main.tsx +152 -11
- package/examples/capacitor/tsconfig.json +1 -17
- package/examples/capacitor/vite.config.ts +10 -9
- package/examples/cordova/README.md +4 -6
- package/examples/cordova/config.xml +4 -15
- package/examples/cordova/package-lock.json +1333 -0
- package/examples/cordova/package.json +8 -12
- package/examples/cordova/scripts/setup.sh +4 -1
- package/examples/cordova/www/images/portrait.png +0 -0
- package/examples/cordova/www/index.html +19 -92
- package/examples/cordova/www/src/main.css +77 -0
- package/examples/cordova/www/src/main.html +22 -0
- package/examples/cordova/www/{js/index.js → src/main.js} +41 -43
- package/examples/ionic/README.md +3 -6
- package/examples/ionic/angular.json +6 -154
- package/examples/ionic/config.xml +4 -93
- package/examples/ionic/index.html +19 -0
- package/examples/ionic/index.ts +17 -0
- package/examples/ionic/package-lock.json +13777 -0
- package/examples/ionic/package.json +24 -75
- package/examples/ionic/scripts/setup.sh +4 -1
- package/examples/ionic/src/images/portrait.png +0 -0
- package/examples/ionic/src/main.css +77 -0
- package/examples/ionic/src/main.html +22 -0
- package/examples/ionic/src/main.ts +157 -8
- package/examples/ionic/tsconfig.json +6 -20
- package/examples/react-native/Gemfile +7 -0
- package/examples/react-native/Gemfile.lock +28 -21
- package/examples/react-native/README.md +4 -10
- package/examples/react-native/android/app/build.gradle +2 -70
- package/examples/react-native/android/app/src/main/AndroidManifest.xml +21 -21
- package/examples/react-native/android/app/src/main/java/com/regula/{face/api → documentreader}/MainActivity.kt +2 -2
- package/examples/react-native/android/app/src/main/java/com/regula/{face/api → documentreader}/MainApplication.kt +1 -1
- package/examples/react-native/android/build.gradle +3 -3
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/examples/react-native/android/gradle.properties +0 -34
- package/examples/react-native/android/gradlew +1 -2
- package/examples/react-native/android/settings.gradle +1 -1
- package/examples/react-native/images/portrait.png +0 -0
- package/examples/react-native/index.html +11 -0
- package/examples/react-native/index.tsx +51 -0
- package/examples/react-native/ios/{FaceSDK → App}/AppDelegate.mm +1 -1
- package/examples/react-native/ios/{FaceSDK.xcodeproj → App.xcodeproj}/project.pbxproj +52 -269
- package/examples/react-native/ios/{FaceSDK.xcodeproj/xcshareddata/xcschemes/FaceSDK.xcscheme → App.xcodeproj/xcshareddata/xcschemes/App.xcscheme} +9 -27
- package/examples/react-native/ios/{FaceSDK.xcworkspace → App.xcworkspace}/contents.xcworkspacedata +1 -1
- package/examples/react-native/ios/Podfile +3 -6
- package/examples/react-native/ios/Podfile.lock +565 -512
- package/examples/react-native/metro.config.js +16 -11
- package/examples/react-native/package-lock.json +2121 -6901
- package/examples/react-native/package.json +12 -34
- package/examples/react-native/patches/react-native-webview+13.13.5.patch +36 -0
- package/examples/react-native/scripts/android.sh +5 -0
- package/examples/react-native/scripts/ios.sh +5 -1
- package/examples/react-native/src/main.css +77 -0
- package/examples/react-native/src/main.html +22 -0
- package/examples/react-native/{App.tsx → src/main.tsx} +19 -86
- package/ios/RFSWConfig.m +7 -1
- package/ios/RFSWJSONConstructor.h +2 -0
- package/ios/RFSWJSONConstructor.m +32 -15
- package/ios/RFSWMain.m +1 -1
- package/package.json +1 -1
- package/plugin.xml +4 -4
- package/www/capacitor/detect_faces/detect_faces_request.js +2 -0
- package/www/capacitor/face_capture/face_capture_config.js +6 -2
- package/www/capacitor/image_quality/image_quality_characteristic.js +2 -0
- package/www/capacitor/image_quality/image_quality_group.js +1 -0
- package/www/capacitor/init/init_config.js +8 -0
- package/www/capacitor/internal/bridge.js +8 -7
- package/www/capacitor/liveness/liveness_backend_exception.js +8 -0
- package/www/capacitor/liveness/liveness_config.js +3 -3
- package/www/capacitor/person_database/person_database.js +1 -1
- package/www/cordova.js +109 -80
- package/www/react-native/detect_faces/detect_faces_request.js +2 -0
- package/www/react-native/face_capture/face_capture_config.js +6 -2
- package/www/react-native/image_quality/image_quality_characteristic.js +2 -0
- package/www/react-native/image_quality/image_quality_group.js +1 -0
- package/www/react-native/init/init_config.js +8 -0
- package/www/react-native/internal/bridge.js +8 -7
- package/www/react-native/liveness/liveness_backend_exception.js +8 -0
- package/www/react-native/liveness/liveness_config.js +3 -3
- package/www/react-native/person_database/person_database.js +1 -1
- package/www/types/face_capture/face_capture_config.d.ts +6 -1
- package/www/types/init/init_config.d.ts +7 -1
- package/www/types/liveness/liveness_backend_exception.d.ts +9 -1
- package/www/types/liveness/liveness_config.d.ts +1 -1
- package/www/types/person_database/person_database.d.ts +1 -1
- package/.gitlab/report.yaml +0 -75
- package/.gitlab-ci.yml +0 -49
- package/examples/capacitor/.browserslistrc +0 -6
- package/examples/capacitor/.eslintrc.js +0 -17
- package/examples/capacitor/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java +0 -26
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_background.xml +0 -170
- package/examples/capacitor/android/app/src/main/res/drawable-land-hdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-mdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-xhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-xxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-xxxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-hdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-mdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-xhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-xxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-xxxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +0 -34
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +0 -5
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +0 -5
- package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/values/ic_launcher_background.xml +0 -4
- package/examples/capacitor/android/app/src/main/res/xml/file_paths.xml +0 -5
- package/examples/capacitor/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java +0 -18
- package/examples/capacitor/capacitor.config.ts +0 -12
- package/examples/capacitor/cypress/e2e/test.cy.ts +0 -6
- package/examples/capacitor/cypress/fixtures/example.json +0 -5
- package/examples/capacitor/cypress/support/commands.ts +0 -37
- package/examples/capacitor/cypress/support/e2e.ts +0 -20
- package/examples/capacitor/cypress.config.ts +0 -10
- package/examples/capacitor/public/assets/img/id.png +0 -0
- package/examples/capacitor/public/assets/img/portrait.png +0 -0
- package/examples/capacitor/public/favicon.png +0 -0
- package/examples/capacitor/public/manifest.json +0 -21
- package/examples/capacitor/src/App.test.tsx +0 -8
- package/examples/capacitor/src/App.tsx +0 -42
- package/examples/capacitor/src/components/ExploreContainer.css +0 -24
- package/examples/capacitor/src/components/ExploreContainer.tsx +0 -14
- package/examples/capacitor/src/pages/Home.tsx +0 -159
- package/examples/capacitor/src/setupTests.ts +0 -14
- package/examples/capacitor/src/theme/variables.css +0 -242
- package/examples/capacitor/src/vite-env.d.ts +0 -1
- package/examples/capacitor/tsconfig.node.json +0 -9
- package/examples/cordova/jsconfig.json +0 -1
- package/examples/cordova/www/css/index.css +0 -107
- package/examples/cordova/www/img/id.png +0 -0
- package/examples/cordova/www/img/portrait.png +0 -0
- package/examples/ionic/browserslist +0 -12
- package/examples/ionic/e2e/protractor.conf.js +0 -28
- package/examples/ionic/e2e/src/app.e2e-spec.ts +0 -14
- package/examples/ionic/e2e/src/app.po.ts +0 -11
- package/examples/ionic/e2e/tsconfig.json +0 -13
- package/examples/ionic/karma.conf.js +0 -31
- package/examples/ionic/resources/README.md +0 -8
- package/examples/ionic/resources/android/icon/drawable-hdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-ldpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-mdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-xhdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-xxhdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-xxxhdpi-icon.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/xml/network_security_config.xml +0 -6
- package/examples/ionic/resources/ios/icon/icon-1024.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-20.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-20@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-20@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-24@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-27.5@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-29.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-29@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-29@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-40.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-40@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-40@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-44@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-50.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-50@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-60.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-60@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-60@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-72.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-72@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-76.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-76@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-83.5@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-86@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-98@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-small.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-small@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-small@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon.png +0 -0
- package/examples/ionic/resources/ios/icon/icon@2x.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-2436h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-667h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-736h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape-2436h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape-736h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Portrait~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default@2x~iphone.png +0 -0
- package/examples/ionic/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
- package/examples/ionic/resources/ios/splash/Default~iphone.png +0 -0
- package/examples/ionic/resources/splash.png +0 -0
- package/examples/ionic/src/app/app-routing.module.ts +0 -15
- package/examples/ionic/src/app/app.component.html +0 -3
- package/examples/ionic/src/app/app.component.spec.ts +0 -47
- package/examples/ionic/src/app/app.component.ts +0 -27
- package/examples/ionic/src/app/app.module.ts +0 -23
- package/examples/ionic/src/app/home/home.module.ts +0 -29
- package/examples/ionic/src/app/home/home.page.html +0 -75
- package/examples/ionic/src/app/home/home.page.scss +0 -1
- package/examples/ionic/src/app/home/home.page.spec.ts +0 -24
- package/examples/ionic/src/app/home/home.page.ts +0 -166
- package/examples/ionic/src/assets/icon/favicon.png +0 -0
- package/examples/ionic/src/assets/img/portrait.png +0 -0
- package/examples/ionic/src/assets/shapes.svg +0 -1
- package/examples/ionic/src/environments/environment.prod.ts +0 -3
- package/examples/ionic/src/environments/environment.ts +0 -16
- package/examples/ionic/src/global.scss +0 -31
- package/examples/ionic/src/index.html +0 -25
- package/examples/ionic/src/polyfills.ts +0 -66
- package/examples/ionic/src/test.ts +0 -20
- package/examples/ionic/src/theme/variables.scss +0 -77
- package/examples/ionic/src/zone-flags.ts +0 -5
- package/examples/ionic/tsconfig.app.json +0 -14
- package/examples/ionic/tsconfig.spec.json +0 -19
- package/examples/ionic/tslint.json +0 -88
- package/examples/react-native/.watchmanconfig +0 -1
- package/examples/react-native/android/app/proguard-rules.pro +0 -10
- package/examples/react-native/android/app/src/debug/AndroidManifest.xml +0 -9
- package/examples/react-native/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -37
- package/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/values/strings.xml +0 -3
- package/examples/react-native/android/app/src/main/res/values/styles.xml +0 -9
- package/examples/react-native/app.json +0 -5
- package/examples/react-native/index.js +0 -5
- package/examples/react-native/ios/FaceSDKTests/FaceSDKTests.m +0 -66
- package/examples/react-native/ios/FaceSDKTests/Info.plist +0 -24
- /package/examples/capacitor/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher.png +0 -0
- /package/examples/cordova/www/{img → images}/logo.png +0 -0
- /package/examples/ionic/src/{app/app.component.scss → assets/.gitkeep} +0 -0
- /package/examples/ionic/{resources → src/images}/icon.png +0 -0
- /package/examples/react-native/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher.png +0 -0
- /package/examples/react-native/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher_round.png +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/AppDelegate.h +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/Images.xcassets/Contents.json +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/Info.plist +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/LaunchScreen.storyboard +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/PrivacyInfo.xcprivacy +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/main.m +0 -0
- /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
|
|
5
|
-
- FaceSDK
|
|
6
|
-
- RegulaCommon
|
|
7
|
-
-
|
|
8
|
-
-
|
|
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.
|
|
11
|
-
- hermes-engine/Pre-built (= 0.
|
|
12
|
-
- hermes-engine/Pre-built (0.
|
|
13
|
-
- RCT-Folly (2024.
|
|
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
|
-
-
|
|
17
|
+
- fast_float (= 6.1.4)
|
|
18
|
+
- fmt (= 11.0.2)
|
|
17
19
|
- glog
|
|
18
|
-
- RCT-Folly/Default (= 2024.
|
|
19
|
-
- RCT-Folly/Default (2024.
|
|
20
|
+
- RCT-Folly/Default (= 2024.11.18.00)
|
|
21
|
+
- RCT-Folly/Default (2024.11.18.00):
|
|
20
22
|
- boost
|
|
21
23
|
- DoubleConversion
|
|
22
|
-
-
|
|
24
|
+
- fast_float (= 6.1.4)
|
|
25
|
+
- fmt (= 11.0.2)
|
|
23
26
|
- glog
|
|
24
|
-
- RCT-Folly/Fabric (2024.
|
|
27
|
+
- RCT-Folly/Fabric (2024.11.18.00):
|
|
25
28
|
- boost
|
|
26
29
|
- DoubleConversion
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
- React-Core
|
|
38
|
-
- React-Core/
|
|
39
|
-
- React-
|
|
40
|
-
- React-
|
|
41
|
-
- React-
|
|
42
|
-
- React-
|
|
43
|
-
- React-
|
|
44
|
-
- React-
|
|
45
|
-
- React-
|
|
46
|
-
- React-
|
|
47
|
-
- React-
|
|
48
|
-
|
|
49
|
-
- React-
|
|
50
|
-
|
|
51
|
-
-
|
|
52
|
-
-
|
|
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.
|
|
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.
|
|
70
|
+
- React-Core/CoreModulesHeaders (0.78.1):
|
|
67
71
|
- glog
|
|
68
72
|
- hermes-engine
|
|
69
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
87
|
+
- React-Core/Default (0.78.1):
|
|
84
88
|
- glog
|
|
85
89
|
- hermes-engine
|
|
86
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
103
|
+
- React-Core/DevSupport (0.78.1):
|
|
100
104
|
- glog
|
|
101
105
|
- hermes-engine
|
|
102
|
-
- RCT-Folly (= 2024.
|
|
106
|
+
- RCT-Folly (= 2024.11.18.00)
|
|
103
107
|
- RCTDeprecation
|
|
104
|
-
- React-Core/Default (= 0.
|
|
105
|
-
- React-Core/RCTWebSocket (= 0.
|
|
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.
|
|
121
|
+
- React-Core/RCTActionSheetHeaders (0.78.1):
|
|
118
122
|
- glog
|
|
119
123
|
- hermes-engine
|
|
120
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
138
|
+
- React-Core/RCTAnimationHeaders (0.78.1):
|
|
135
139
|
- glog
|
|
136
140
|
- hermes-engine
|
|
137
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
155
|
+
- React-Core/RCTBlobHeaders (0.78.1):
|
|
152
156
|
- glog
|
|
153
157
|
- hermes-engine
|
|
154
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
172
|
+
- React-Core/RCTImageHeaders (0.78.1):
|
|
169
173
|
- glog
|
|
170
174
|
- hermes-engine
|
|
171
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
189
|
+
- React-Core/RCTLinkingHeaders (0.78.1):
|
|
186
190
|
- glog
|
|
187
191
|
- hermes-engine
|
|
188
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
206
|
+
- React-Core/RCTNetworkHeaders (0.78.1):
|
|
203
207
|
- glog
|
|
204
208
|
- hermes-engine
|
|
205
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
223
|
+
- React-Core/RCTSettingsHeaders (0.78.1):
|
|
220
224
|
- glog
|
|
221
225
|
- hermes-engine
|
|
222
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
240
|
+
- React-Core/RCTTextHeaders (0.78.1):
|
|
237
241
|
- glog
|
|
238
242
|
- hermes-engine
|
|
239
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
257
|
+
- React-Core/RCTVibrationHeaders (0.78.1):
|
|
254
258
|
- glog
|
|
255
259
|
- hermes-engine
|
|
256
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
274
|
+
- React-Core/RCTWebSocket (0.78.1):
|
|
271
275
|
- glog
|
|
272
276
|
- hermes-engine
|
|
273
|
-
- RCT-Folly (= 2024.
|
|
277
|
+
- RCT-Folly (= 2024.11.18.00)
|
|
274
278
|
- RCTDeprecation
|
|
275
|
-
- React-Core/Default (= 0.
|
|
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.
|
|
291
|
+
- React-CoreModules (0.78.1):
|
|
288
292
|
- DoubleConversion
|
|
289
|
-
-
|
|
290
|
-
-
|
|
291
|
-
-
|
|
292
|
-
-
|
|
293
|
-
- React-
|
|
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-
|
|
298
|
-
-
|
|
302
|
+
- React-RCTFBReactNativeSpec
|
|
303
|
+
- React-RCTImage (= 0.78.1)
|
|
299
304
|
- ReactCommon
|
|
300
305
|
- SocketRocket (= 0.7.1)
|
|
301
|
-
- React-cxxreact (0.
|
|
306
|
+
- React-cxxreact (0.78.1):
|
|
302
307
|
- boost
|
|
303
308
|
- DoubleConversion
|
|
304
|
-
-
|
|
309
|
+
- fast_float (= 6.1.4)
|
|
310
|
+
- fmt (= 11.0.2)
|
|
305
311
|
- glog
|
|
306
312
|
- hermes-engine
|
|
307
|
-
- RCT-Folly (= 2024.
|
|
308
|
-
- React-callinvoker (= 0.
|
|
309
|
-
- React-debug (= 0.
|
|
310
|
-
- React-jsi (= 0.
|
|
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.
|
|
313
|
-
- React-perflogger (= 0.
|
|
314
|
-
- React-runtimeexecutor (= 0.
|
|
315
|
-
- React-timing (= 0.
|
|
316
|
-
- React-debug (0.
|
|
317
|
-
- React-defaultsnativemodule (0.
|
|
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
|
|
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-
|
|
329
|
+
- React-jsi
|
|
330
|
+
- React-jsiexecutor
|
|
333
331
|
- React-microtasksnativemodule
|
|
334
|
-
- React-
|
|
335
|
-
|
|
336
|
-
-
|
|
337
|
-
-
|
|
338
|
-
-
|
|
339
|
-
-
|
|
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-
|
|
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.
|
|
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-
|
|
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-
|
|
356
|
-
- React-
|
|
357
|
-
- React-
|
|
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
|
-
|
|
364
|
-
- React-Fabric (0.76.6):
|
|
381
|
+
- React-Fabric/animations (0.78.1):
|
|
365
382
|
- DoubleConversion
|
|
366
|
-
-
|
|
383
|
+
- fast_float (= 6.1.4)
|
|
384
|
+
- fmt (= 11.0.2)
|
|
367
385
|
- glog
|
|
368
386
|
- hermes-engine
|
|
369
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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/
|
|
402
|
+
- React-Fabric/attributedstring (0.78.1):
|
|
400
403
|
- DoubleConversion
|
|
401
|
-
-
|
|
404
|
+
- fast_float (= 6.1.4)
|
|
405
|
+
- fmt (= 11.0.2)
|
|
402
406
|
- glog
|
|
403
407
|
- hermes-engine
|
|
404
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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/
|
|
423
|
+
- React-Fabric/componentregistry (0.78.1):
|
|
420
424
|
- DoubleConversion
|
|
421
|
-
-
|
|
425
|
+
- fast_float (= 6.1.4)
|
|
426
|
+
- fmt (= 11.0.2)
|
|
422
427
|
- glog
|
|
423
428
|
- hermes-engine
|
|
424
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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/
|
|
444
|
+
- React-Fabric/componentregistrynative (0.78.1):
|
|
440
445
|
- DoubleConversion
|
|
441
|
-
-
|
|
446
|
+
- fast_float (= 6.1.4)
|
|
447
|
+
- fmt (= 11.0.2)
|
|
442
448
|
- glog
|
|
443
449
|
- hermes-engine
|
|
444
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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/
|
|
465
|
+
- React-Fabric/components (0.78.1):
|
|
460
466
|
- DoubleConversion
|
|
461
|
-
-
|
|
467
|
+
- fast_float (= 6.1.4)
|
|
468
|
+
- fmt (= 11.0.2)
|
|
462
469
|
- glog
|
|
463
470
|
- hermes-engine
|
|
464
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
489
|
+
- React-Fabric/components/legacyviewmanagerinterop (0.78.1):
|
|
480
490
|
- DoubleConversion
|
|
481
|
-
-
|
|
491
|
+
- fast_float (= 6.1.4)
|
|
492
|
+
- fmt (= 11.0.2)
|
|
482
493
|
- glog
|
|
483
494
|
- hermes-engine
|
|
484
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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/
|
|
510
|
+
- React-Fabric/components/root (0.78.1):
|
|
503
511
|
- DoubleConversion
|
|
504
|
-
-
|
|
512
|
+
- fast_float (= 6.1.4)
|
|
513
|
+
- fmt (= 11.0.2)
|
|
505
514
|
- glog
|
|
506
515
|
- hermes-engine
|
|
507
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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/
|
|
531
|
+
- React-Fabric/components/view (0.78.1):
|
|
523
532
|
- DoubleConversion
|
|
524
|
-
-
|
|
533
|
+
- fast_float (= 6.1.4)
|
|
534
|
+
- fmt (= 11.0.2)
|
|
525
535
|
- glog
|
|
526
536
|
- hermes-engine
|
|
527
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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
|
-
|
|
552
|
+
- Yoga
|
|
553
|
+
- React-Fabric/consistency (0.78.1):
|
|
543
554
|
- DoubleConversion
|
|
544
|
-
-
|
|
555
|
+
- fast_float (= 6.1.4)
|
|
556
|
+
- fmt (= 11.0.2)
|
|
545
557
|
- glog
|
|
546
558
|
- hermes-engine
|
|
547
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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
|
-
|
|
563
|
-
- React-Fabric/core (0.76.6):
|
|
574
|
+
- React-Fabric/core (0.78.1):
|
|
564
575
|
- DoubleConversion
|
|
565
|
-
-
|
|
576
|
+
- fast_float (= 6.1.4)
|
|
577
|
+
- fmt (= 11.0.2)
|
|
566
578
|
- glog
|
|
567
579
|
- hermes-engine
|
|
568
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
595
|
+
- React-Fabric/dom (0.78.1):
|
|
584
596
|
- DoubleConversion
|
|
585
|
-
-
|
|
597
|
+
- fast_float (= 6.1.4)
|
|
598
|
+
- fmt (= 11.0.2)
|
|
586
599
|
- glog
|
|
587
600
|
- hermes-engine
|
|
588
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
616
|
+
- React-Fabric/imagemanager (0.78.1):
|
|
604
617
|
- DoubleConversion
|
|
605
|
-
-
|
|
618
|
+
- fast_float (= 6.1.4)
|
|
619
|
+
- fmt (= 11.0.2)
|
|
606
620
|
- glog
|
|
607
621
|
- hermes-engine
|
|
608
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
637
|
+
- React-Fabric/leakchecker (0.78.1):
|
|
624
638
|
- DoubleConversion
|
|
625
|
-
-
|
|
639
|
+
- fast_float (= 6.1.4)
|
|
640
|
+
- fmt (= 11.0.2)
|
|
626
641
|
- glog
|
|
627
642
|
- hermes-engine
|
|
628
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
658
|
+
- React-Fabric/mounting (0.78.1):
|
|
644
659
|
- DoubleConversion
|
|
645
|
-
-
|
|
660
|
+
- fast_float (= 6.1.4)
|
|
661
|
+
- fmt (= 11.0.2)
|
|
646
662
|
- glog
|
|
647
663
|
- hermes-engine
|
|
648
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
679
|
+
- React-Fabric/observers (0.78.1):
|
|
664
680
|
- DoubleConversion
|
|
665
|
-
-
|
|
681
|
+
- fast_float (= 6.1.4)
|
|
682
|
+
- fmt (= 11.0.2)
|
|
666
683
|
- glog
|
|
667
684
|
- hermes-engine
|
|
668
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
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.
|
|
701
|
+
- React-Fabric/observers/events (0.78.1):
|
|
685
702
|
- DoubleConversion
|
|
686
|
-
-
|
|
703
|
+
- fast_float (= 6.1.4)
|
|
704
|
+
- fmt (= 11.0.2)
|
|
687
705
|
- glog
|
|
688
706
|
- hermes-engine
|
|
689
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
722
|
+
- React-Fabric/scheduler (0.78.1):
|
|
705
723
|
- DoubleConversion
|
|
706
|
-
-
|
|
724
|
+
- fast_float (= 6.1.4)
|
|
725
|
+
- fmt (= 11.0.2)
|
|
707
726
|
- glog
|
|
708
727
|
- hermes-engine
|
|
709
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
745
|
+
- React-Fabric/telemetry (0.78.1):
|
|
727
746
|
- DoubleConversion
|
|
728
|
-
-
|
|
747
|
+
- fast_float (= 6.1.4)
|
|
748
|
+
- fmt (= 11.0.2)
|
|
729
749
|
- glog
|
|
730
750
|
- hermes-engine
|
|
731
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
766
|
+
- React-Fabric/templateprocessor (0.78.1):
|
|
747
767
|
- DoubleConversion
|
|
748
|
-
-
|
|
768
|
+
- fast_float (= 6.1.4)
|
|
769
|
+
- fmt (= 11.0.2)
|
|
749
770
|
- glog
|
|
750
771
|
- hermes-engine
|
|
751
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
787
|
+
- React-Fabric/uimanager (0.78.1):
|
|
767
788
|
- DoubleConversion
|
|
768
|
-
-
|
|
789
|
+
- fast_float (= 6.1.4)
|
|
790
|
+
- fmt (= 11.0.2)
|
|
769
791
|
- glog
|
|
770
792
|
- hermes-engine
|
|
771
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
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.
|
|
810
|
+
- React-Fabric/uimanager/consistency (0.78.1):
|
|
789
811
|
- DoubleConversion
|
|
790
|
-
-
|
|
812
|
+
- fast_float (= 6.1.4)
|
|
813
|
+
- fmt (= 11.0.2)
|
|
791
814
|
- glog
|
|
792
815
|
- hermes-engine
|
|
793
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
832
|
+
- React-FabricComponents (0.78.1):
|
|
810
833
|
- DoubleConversion
|
|
811
|
-
-
|
|
834
|
+
- fast_float (= 6.1.4)
|
|
835
|
+
- fmt (= 11.0.2)
|
|
812
836
|
- glog
|
|
813
837
|
- hermes-engine
|
|
814
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
822
|
-
- React-FabricComponents/textlayoutmanager (= 0.
|
|
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.
|
|
857
|
+
- React-FabricComponents/components (0.78.1):
|
|
835
858
|
- DoubleConversion
|
|
836
|
-
-
|
|
859
|
+
- fast_float (= 6.1.4)
|
|
860
|
+
- fmt (= 11.0.2)
|
|
837
861
|
- glog
|
|
838
862
|
- hermes-engine
|
|
839
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
847
|
-
- React-FabricComponents/components/iostextinput (= 0.
|
|
848
|
-
- React-FabricComponents/components/modal (= 0.
|
|
849
|
-
- React-FabricComponents/components/rncore (= 0.
|
|
850
|
-
- React-FabricComponents/components/safeareaview (= 0.
|
|
851
|
-
- React-FabricComponents/components/scrollview (= 0.
|
|
852
|
-
- React-FabricComponents/components/text (= 0.
|
|
853
|
-
- React-FabricComponents/components/textinput (= 0.
|
|
854
|
-
- React-FabricComponents/components/unimplementedview (= 0.
|
|
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.
|
|
889
|
+
- React-FabricComponents/components/inputaccessory (0.78.1):
|
|
867
890
|
- DoubleConversion
|
|
868
|
-
-
|
|
891
|
+
- fast_float (= 6.1.4)
|
|
892
|
+
- fmt (= 11.0.2)
|
|
869
893
|
- glog
|
|
870
894
|
- hermes-engine
|
|
871
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
912
|
+
- React-FabricComponents/components/iostextinput (0.78.1):
|
|
890
913
|
- DoubleConversion
|
|
891
|
-
-
|
|
914
|
+
- fast_float (= 6.1.4)
|
|
915
|
+
- fmt (= 11.0.2)
|
|
892
916
|
- glog
|
|
893
917
|
- hermes-engine
|
|
894
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
935
|
+
- React-FabricComponents/components/modal (0.78.1):
|
|
913
936
|
- DoubleConversion
|
|
914
|
-
-
|
|
937
|
+
- fast_float (= 6.1.4)
|
|
938
|
+
- fmt (= 11.0.2)
|
|
915
939
|
- glog
|
|
916
940
|
- hermes-engine
|
|
917
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
958
|
+
- React-FabricComponents/components/rncore (0.78.1):
|
|
936
959
|
- DoubleConversion
|
|
937
|
-
-
|
|
960
|
+
- fast_float (= 6.1.4)
|
|
961
|
+
- fmt (= 11.0.2)
|
|
938
962
|
- glog
|
|
939
963
|
- hermes-engine
|
|
940
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
981
|
+
- React-FabricComponents/components/safeareaview (0.78.1):
|
|
959
982
|
- DoubleConversion
|
|
960
|
-
-
|
|
983
|
+
- fast_float (= 6.1.4)
|
|
984
|
+
- fmt (= 11.0.2)
|
|
961
985
|
- glog
|
|
962
986
|
- hermes-engine
|
|
963
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
1004
|
+
- React-FabricComponents/components/scrollview (0.78.1):
|
|
982
1005
|
- DoubleConversion
|
|
983
|
-
-
|
|
1006
|
+
- fast_float (= 6.1.4)
|
|
1007
|
+
- fmt (= 11.0.2)
|
|
984
1008
|
- glog
|
|
985
1009
|
- hermes-engine
|
|
986
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
1027
|
+
- React-FabricComponents/components/text (0.78.1):
|
|
1005
1028
|
- DoubleConversion
|
|
1006
|
-
-
|
|
1029
|
+
- fast_float (= 6.1.4)
|
|
1030
|
+
- fmt (= 11.0.2)
|
|
1007
1031
|
- glog
|
|
1008
1032
|
- hermes-engine
|
|
1009
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
1050
|
+
- React-FabricComponents/components/textinput (0.78.1):
|
|
1028
1051
|
- DoubleConversion
|
|
1029
|
-
-
|
|
1052
|
+
- fast_float (= 6.1.4)
|
|
1053
|
+
- fmt (= 11.0.2)
|
|
1030
1054
|
- glog
|
|
1031
1055
|
- hermes-engine
|
|
1032
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
1073
|
+
- React-FabricComponents/components/unimplementedview (0.78.1):
|
|
1051
1074
|
- DoubleConversion
|
|
1052
|
-
-
|
|
1075
|
+
- fast_float (= 6.1.4)
|
|
1076
|
+
- fmt (= 11.0.2)
|
|
1053
1077
|
- glog
|
|
1054
1078
|
- hermes-engine
|
|
1055
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
1096
|
+
- React-FabricComponents/textlayoutmanager (0.78.1):
|
|
1074
1097
|
- DoubleConversion
|
|
1075
|
-
-
|
|
1098
|
+
- fast_float (= 6.1.4)
|
|
1099
|
+
- fmt (= 11.0.2)
|
|
1076
1100
|
- glog
|
|
1077
1101
|
- hermes-engine
|
|
1078
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
1119
|
+
- React-FabricImage (0.78.1):
|
|
1097
1120
|
- DoubleConversion
|
|
1098
|
-
-
|
|
1121
|
+
- fast_float (= 6.1.4)
|
|
1122
|
+
- fmt (= 11.0.2)
|
|
1099
1123
|
- glog
|
|
1100
1124
|
- hermes-engine
|
|
1101
|
-
- RCT-Folly/Fabric (= 2024.
|
|
1102
|
-
- RCTRequired (= 0.
|
|
1103
|
-
- RCTTypeSafety (= 0.
|
|
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.
|
|
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.
|
|
1115
|
-
|
|
1116
|
-
|
|
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
|
|
1120
|
-
- RCTRequired
|
|
1121
|
-
- RCTTypeSafety
|
|
1122
|
-
- React-Core
|
|
1123
|
-
- React-debug
|
|
1124
|
-
- React-Fabric
|
|
1143
|
+
- RCT-Folly
|
|
1125
1144
|
- React-featureflags
|
|
1126
|
-
- React-
|
|
1127
|
-
- React-
|
|
1128
|
-
- React-
|
|
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
|
-
|
|
1136
|
-
- React-graphics (0.76.6):
|
|
1149
|
+
- React-graphics (0.78.1):
|
|
1137
1150
|
- DoubleConversion
|
|
1138
|
-
-
|
|
1151
|
+
- fast_float (= 6.1.4)
|
|
1152
|
+
- fmt (= 11.0.2)
|
|
1139
1153
|
- glog
|
|
1140
|
-
-
|
|
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.
|
|
1159
|
+
- React-hermes (0.78.1):
|
|
1145
1160
|
- DoubleConversion
|
|
1146
|
-
-
|
|
1161
|
+
- fast_float (= 6.1.4)
|
|
1162
|
+
- fmt (= 11.0.2)
|
|
1147
1163
|
- glog
|
|
1148
1164
|
- hermes-engine
|
|
1149
|
-
- RCT-Folly (= 2024.
|
|
1150
|
-
- React-cxxreact (= 0.
|
|
1165
|
+
- RCT-Folly (= 2024.11.18.00)
|
|
1166
|
+
- React-cxxreact (= 0.78.1)
|
|
1151
1167
|
- React-jsi
|
|
1152
|
-
- React-jsiexecutor (= 0.
|
|
1168
|
+
- React-jsiexecutor (= 0.78.1)
|
|
1153
1169
|
- React-jsinspector
|
|
1154
|
-
- React-perflogger (= 0.
|
|
1170
|
+
- React-perflogger (= 0.78.1)
|
|
1155
1171
|
- React-runtimeexecutor
|
|
1156
|
-
- React-idlecallbacksnativemodule (0.
|
|
1157
|
-
- DoubleConversion
|
|
1172
|
+
- React-idlecallbacksnativemodule (0.78.1):
|
|
1158
1173
|
- glog
|
|
1159
1174
|
- hermes-engine
|
|
1160
|
-
- RCT-Folly
|
|
1161
|
-
-
|
|
1162
|
-
-
|
|
1163
|
-
- React-
|
|
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
|
-
|
|
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.
|
|
1190
|
+
- React-jserrorhandler (0.78.1):
|
|
1188
1191
|
- glog
|
|
1189
1192
|
- hermes-engine
|
|
1190
|
-
- RCT-Folly/Fabric (= 2024.
|
|
1193
|
+
- RCT-Folly/Fabric (= 2024.11.18.00)
|
|
1191
1194
|
- React-cxxreact
|
|
1192
1195
|
- React-debug
|
|
1196
|
+
- React-featureflags
|
|
1193
1197
|
- React-jsi
|
|
1194
|
-
|
|
1198
|
+
- ReactCommon/turbomodule/bridging
|
|
1199
|
+
- React-jsi (0.78.1):
|
|
1195
1200
|
- boost
|
|
1196
1201
|
- DoubleConversion
|
|
1197
|
-
-
|
|
1202
|
+
- fast_float (= 6.1.4)
|
|
1203
|
+
- fmt (= 11.0.2)
|
|
1198
1204
|
- glog
|
|
1199
1205
|
- hermes-engine
|
|
1200
|
-
- RCT-Folly (= 2024.
|
|
1201
|
-
- React-jsiexecutor (0.
|
|
1206
|
+
- RCT-Folly (= 2024.11.18.00)
|
|
1207
|
+
- React-jsiexecutor (0.78.1):
|
|
1202
1208
|
- DoubleConversion
|
|
1203
|
-
-
|
|
1209
|
+
- fast_float (= 6.1.4)
|
|
1210
|
+
- fmt (= 11.0.2)
|
|
1204
1211
|
- glog
|
|
1205
1212
|
- hermes-engine
|
|
1206
|
-
- RCT-Folly (= 2024.
|
|
1207
|
-
- React-cxxreact (= 0.
|
|
1208
|
-
- React-jsi (= 0.
|
|
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.
|
|
1211
|
-
- React-jsinspector (0.
|
|
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
|
|
1222
|
+
- RCT-Folly
|
|
1216
1223
|
- React-featureflags
|
|
1217
1224
|
- React-jsi
|
|
1218
|
-
- React-
|
|
1219
|
-
- React-
|
|
1220
|
-
|
|
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.
|
|
1232
|
+
- React-logger (0.78.1):
|
|
1223
1233
|
- glog
|
|
1224
|
-
- React-Mapbuffer (0.
|
|
1234
|
+
- React-Mapbuffer (0.78.1):
|
|
1225
1235
|
- glog
|
|
1226
1236
|
- React-debug
|
|
1227
|
-
- React-microtasksnativemodule (0.
|
|
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.
|
|
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-
|
|
1265
|
+
- react-native-webview (13.13.5):
|
|
1249
1266
|
- DoubleConversion
|
|
1250
1267
|
- glog
|
|
1251
1268
|
- hermes-engine
|
|
1252
|
-
- RCT-Folly (= 2024.
|
|
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-
|
|
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.
|
|
1297
|
+
- React-perflogger (0.78.1):
|
|
1282
1298
|
- DoubleConversion
|
|
1283
|
-
- RCT-Folly (= 2024.
|
|
1284
|
-
- React-performancetimeline (0.
|
|
1285
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
1289
|
-
- React-Core/RCTActionSheetHeaders (= 0.
|
|
1290
|
-
- React-RCTAnimation (0.
|
|
1291
|
-
- RCT-Folly (= 2024.
|
|
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
|
-
-
|
|
1314
|
+
- React-RCTFBReactNativeSpec
|
|
1297
1315
|
- ReactCommon
|
|
1298
|
-
- React-RCTAppDelegate (0.
|
|
1299
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
1340
|
+
- React-RCTBlob (0.78.1):
|
|
1324
1341
|
- DoubleConversion
|
|
1325
|
-
-
|
|
1342
|
+
- fast_float (= 6.1.4)
|
|
1343
|
+
- fmt (= 11.0.2)
|
|
1326
1344
|
- hermes-engine
|
|
1327
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
1354
|
+
- React-RCTFabric (0.78.1):
|
|
1337
1355
|
- glog
|
|
1338
1356
|
- hermes-engine
|
|
1339
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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-
|
|
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-
|
|
1360
|
-
-
|
|
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.
|
|
1369
|
-
- React-Core/RCTLinkingHeaders (= 0.
|
|
1370
|
-
- React-jsi (= 0.
|
|
1396
|
+
- React-RCTLinking (0.78.1):
|
|
1397
|
+
- React-Core/RCTLinkingHeaders (= 0.78.1)
|
|
1398
|
+
- React-jsi (= 0.78.1)
|
|
1371
1399
|
- React-NativeModulesApple
|
|
1372
|
-
-
|
|
1400
|
+
- React-RCTFBReactNativeSpec
|
|
1373
1401
|
- ReactCommon
|
|
1374
|
-
- ReactCommon/turbomodule/core (= 0.
|
|
1375
|
-
- React-RCTNetwork (0.
|
|
1376
|
-
- RCT-Folly (= 2024.
|
|
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
|
-
-
|
|
1409
|
+
- React-RCTFBReactNativeSpec
|
|
1382
1410
|
- ReactCommon
|
|
1383
|
-
- React-RCTSettings (0.
|
|
1384
|
-
- RCT-Folly (= 2024.
|
|
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
|
-
-
|
|
1417
|
+
- React-RCTFBReactNativeSpec
|
|
1390
1418
|
- ReactCommon
|
|
1391
|
-
- React-RCTText (0.
|
|
1392
|
-
- React-Core/RCTTextHeaders (= 0.
|
|
1419
|
+
- React-RCTText (0.78.1):
|
|
1420
|
+
- React-Core/RCTTextHeaders (= 0.78.1)
|
|
1393
1421
|
- Yoga
|
|
1394
|
-
- React-RCTVibration (0.
|
|
1395
|
-
- RCT-Folly (= 2024.
|
|
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
|
-
-
|
|
1427
|
+
- React-RCTFBReactNativeSpec
|
|
1400
1428
|
- ReactCommon
|
|
1401
|
-
- React-rendererconsistency (0.
|
|
1402
|
-
- React-rendererdebug (0.
|
|
1429
|
+
- React-rendererconsistency (0.78.1)
|
|
1430
|
+
- React-rendererdebug (0.78.1):
|
|
1403
1431
|
- DoubleConversion
|
|
1404
|
-
-
|
|
1405
|
-
-
|
|
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.
|
|
1408
|
-
- React-RuntimeApple (0.
|
|
1436
|
+
- React-rncore (0.78.1)
|
|
1437
|
+
- React-RuntimeApple (0.78.1):
|
|
1409
1438
|
- hermes-engine
|
|
1410
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
1458
|
+
- React-RuntimeCore (0.78.1):
|
|
1428
1459
|
- glog
|
|
1429
1460
|
- hermes-engine
|
|
1430
|
-
- RCT-Folly/Fabric (= 2024.
|
|
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.
|
|
1442
|
-
- React-jsi (= 0.
|
|
1443
|
-
- React-RuntimeHermes (0.
|
|
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.
|
|
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.
|
|
1485
|
+
- React-runtimescheduler (0.78.1):
|
|
1455
1486
|
- glog
|
|
1456
1487
|
- hermes-engine
|
|
1457
|
-
- RCT-Folly (= 2024.
|
|
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.
|
|
1470
|
-
- React-utils (0.
|
|
1500
|
+
- React-timing (0.78.1)
|
|
1501
|
+
- React-utils (0.78.1):
|
|
1471
1502
|
- glog
|
|
1472
1503
|
- hermes-engine
|
|
1473
|
-
- RCT-Folly (= 2024.
|
|
1504
|
+
- RCT-Folly (= 2024.11.18.00)
|
|
1474
1505
|
- React-debug
|
|
1475
|
-
- React-jsi (= 0.
|
|
1476
|
-
-
|
|
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.
|
|
1497
|
-
- ReactCommon/turbomodule (= 0.
|
|
1498
|
-
- ReactCommon/turbomodule (0.
|
|
1530
|
+
- ReactCommon (0.78.1):
|
|
1531
|
+
- ReactCommon/turbomodule (= 0.78.1)
|
|
1532
|
+
- ReactCommon/turbomodule (0.78.1):
|
|
1499
1533
|
- DoubleConversion
|
|
1500
|
-
-
|
|
1501
|
-
-
|
|
1502
|
-
-
|
|
1503
|
-
-
|
|
1504
|
-
-
|
|
1505
|
-
- React-
|
|
1506
|
-
- React-
|
|
1507
|
-
- React-
|
|
1508
|
-
- React-
|
|
1509
|
-
-
|
|
1510
|
-
- ReactCommon/turbomodule/
|
|
1511
|
-
|
|
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
|
-
-
|
|
1548
|
+
- fast_float (= 6.1.4)
|
|
1549
|
+
- fmt (= 11.0.2)
|
|
1514
1550
|
- glog
|
|
1515
1551
|
- hermes-engine
|
|
1516
|
-
- RCT-Folly (= 2024.
|
|
1517
|
-
- React-callinvoker (= 0.
|
|
1518
|
-
- React-cxxreact (= 0.
|
|
1519
|
-
- React-jsi (= 0.
|
|
1520
|
-
- React-logger (= 0.
|
|
1521
|
-
- React-perflogger (= 0.
|
|
1522
|
-
- ReactCommon/turbomodule/core (0.
|
|
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
|
-
-
|
|
1525
|
-
-
|
|
1526
|
-
-
|
|
1527
|
-
-
|
|
1528
|
-
-
|
|
1529
|
-
- React-
|
|
1530
|
-
- React-
|
|
1531
|
-
- React-
|
|
1532
|
-
- React-
|
|
1533
|
-
- React-
|
|
1534
|
-
- React-
|
|
1535
|
-
- React-
|
|
1536
|
-
|
|
1537
|
-
-
|
|
1538
|
-
|
|
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
|
|
1541
|
-
- FaceSDK
|
|
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
|
-
-
|
|
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
|
-
|
|
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-
|
|
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
|
-
|
|
1701
|
-
:path: "../node_modules/react-native
|
|
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:
|
|
1765
|
-
DoubleConversion:
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
React
|
|
1778
|
-
React-
|
|
1779
|
-
React-
|
|
1780
|
-
React-
|
|
1781
|
-
React-
|
|
1782
|
-
React-
|
|
1783
|
-
React-
|
|
1784
|
-
React-
|
|
1785
|
-
React-
|
|
1786
|
-
React-
|
|
1787
|
-
React-
|
|
1788
|
-
React-
|
|
1789
|
-
React-
|
|
1790
|
-
React-
|
|
1791
|
-
React-
|
|
1792
|
-
React-
|
|
1793
|
-
React-
|
|
1794
|
-
React-
|
|
1795
|
-
React-
|
|
1796
|
-
React-
|
|
1797
|
-
React-
|
|
1798
|
-
React-
|
|
1799
|
-
React-
|
|
1800
|
-
React-
|
|
1801
|
-
|
|
1802
|
-
React-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
React-
|
|
1806
|
-
React-
|
|
1807
|
-
React-
|
|
1808
|
-
React-
|
|
1809
|
-
React-
|
|
1810
|
-
React-
|
|
1811
|
-
React-
|
|
1812
|
-
React-
|
|
1813
|
-
React-
|
|
1814
|
-
React-
|
|
1815
|
-
React-
|
|
1816
|
-
React-
|
|
1817
|
-
React-
|
|
1818
|
-
React-
|
|
1819
|
-
React-
|
|
1820
|
-
React-
|
|
1821
|
-
React-
|
|
1822
|
-
React-
|
|
1823
|
-
React-
|
|
1824
|
-
React-
|
|
1825
|
-
React-
|
|
1826
|
-
React-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
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:
|
|
1887
|
+
Yoga: b94ff2d7559cb66837c97a3f394ddb817faad4d6
|
|
1835
1888
|
|
|
1836
|
-
PODFILE CHECKSUM:
|
|
1889
|
+
PODFILE CHECKSUM: 1586412057fbc80de1ac843264b1d0679614f3ff
|
|
1837
1890
|
|
|
1838
1891
|
COCOAPODS: 1.15.2
|