@regulaforensics/face-sdk 6.3.3-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 +23 -0
- package/RNFaceSDK.podspec +21 -0
- package/android/CVDFaceSDK.kt +34 -0
- package/android/build.gradle +48 -0
- package/android/cordova.gradle +18 -0
- package/android/src/main/AndroidManifest.xml +1 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Config.kt +165 -0
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +904 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +370 -0
- package/android/src/main/java/com/regula/plugin/facesdk/RNFaceApiModule.kt +54 -0
- package/android/src/main/java/com/regula/plugin/facesdk/RNFaceApiPackage.kt +11 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Utils.kt +287 -0
- package/examples/capacitor/.browserslistrc +6 -0
- package/examples/capacitor/.eslintrc.js +17 -0
- package/examples/capacitor/README.md +27 -0
- package/examples/capacitor/android/app/build.gradle +54 -0
- package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
- package/examples/capacitor/android/app/proguard-rules.pro +21 -0
- package/examples/capacitor/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java +26 -0
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +43 -0
- package/examples/capacitor/android/app/src/main/java/com/regula/faceapi/MainActivity.java +5 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
- package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
- 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 +34 -0
- package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- 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.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 +4 -0
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
- package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
- package/examples/capacitor/android/app/src/main/res/xml/file_paths.xml +5 -0
- package/examples/capacitor/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java +18 -0
- package/examples/capacitor/android/build.gradle +30 -0
- package/examples/capacitor/android/capacitor.settings.gradle +15 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/examples/capacitor/android/gradle.properties +22 -0
- package/examples/capacitor/android/gradlew +244 -0
- package/examples/capacitor/android/gradlew.bat +92 -0
- package/examples/capacitor/android/settings.gradle +5 -0
- package/examples/capacitor/android/variables.gradle +16 -0
- package/examples/capacitor/capacitor.config.ts +12 -0
- package/examples/capacitor/cypress/e2e/test.cy.ts +6 -0
- package/examples/capacitor/cypress/fixtures/example.json +5 -0
- package/examples/capacitor/cypress/support/commands.ts +37 -0
- package/examples/capacitor/cypress/support/e2e.ts +20 -0
- package/examples/capacitor/cypress.config.ts +10 -0
- package/examples/capacitor/index.html +106 -0
- package/examples/capacitor/ionic.config.json +7 -0
- package/examples/capacitor/ios/App/App/App.entitlements +5 -0
- package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
- package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
- package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
- package/examples/capacitor/ios/App/App/Info.plist +53 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +410 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/capacitor/ios/App/Podfile +27 -0
- package/examples/capacitor/package.json +64 -0
- package/examples/capacitor/public/assets/.gitkeep +0 -0
- 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 +21 -0
- package/examples/capacitor/src/App.test.tsx +8 -0
- package/examples/capacitor/src/App.tsx +42 -0
- package/examples/capacitor/src/components/ExploreContainer.css +24 -0
- package/examples/capacitor/src/components/ExploreContainer.tsx +14 -0
- package/examples/capacitor/src/main.tsx +11 -0
- package/examples/capacitor/src/pages/Home.tsx +159 -0
- package/examples/capacitor/src/setupTests.ts +14 -0
- package/examples/capacitor/src/theme/variables.css +242 -0
- package/examples/capacitor/src/vite-env.d.ts +1 -0
- package/examples/capacitor/tsconfig.json +21 -0
- package/examples/capacitor/tsconfig.node.json +9 -0
- package/examples/capacitor/vite.config.ts +16 -0
- package/examples/cordova/.vscode/launch.json +28 -0
- package/examples/cordova/config.xml +37 -0
- package/examples/cordova/jsconfig.json +1 -0
- package/examples/cordova/package.json +40 -0
- package/examples/cordova/www/css/index.css +107 -0
- package/examples/cordova/www/img/id.png +0 -0
- package/examples/cordova/www/img/logo.png +0 -0
- package/examples/cordova/www/img/portrait.png +0 -0
- package/examples/cordova/www/index.html +94 -0
- package/examples/cordova/www/js/index.js +154 -0
- package/examples/ionic/angular.json +187 -0
- package/examples/ionic/browserslist +12 -0
- package/examples/ionic/config.xml +114 -0
- package/examples/ionic/e2e/protractor.conf.js +28 -0
- package/examples/ionic/e2e/src/app.e2e-spec.ts +14 -0
- package/examples/ionic/e2e/src/app.po.ts +11 -0
- package/examples/ionic/e2e/tsconfig.json +13 -0
- package/examples/ionic/ionic.config.json +7 -0
- package/examples/ionic/karma.conf.js +31 -0
- package/examples/ionic/package.json +97 -0
- package/examples/ionic/resources/README.md +8 -0
- 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 +6 -0
- package/examples/ionic/resources/icon.png +0 -0
- 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 +15 -0
- package/examples/ionic/src/app/app.component.html +3 -0
- package/examples/ionic/src/app/app.component.scss +0 -0
- package/examples/ionic/src/app/app.component.spec.ts +47 -0
- package/examples/ionic/src/app/app.component.ts +27 -0
- package/examples/ionic/src/app/app.module.ts +23 -0
- package/examples/ionic/src/app/home/home.module.ts +29 -0
- package/examples/ionic/src/app/home/home.page.html +75 -0
- package/examples/ionic/src/app/home/home.page.scss +1 -0
- package/examples/ionic/src/app/home/home.page.spec.ts +24 -0
- package/examples/ionic/src/app/home/home.page.ts +166 -0
- 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 +1 -0
- package/examples/ionic/src/environments/environment.prod.ts +3 -0
- package/examples/ionic/src/environments/environment.ts +16 -0
- package/examples/ionic/src/global.scss +31 -0
- package/examples/ionic/src/index.html +25 -0
- package/examples/ionic/src/main.ts +12 -0
- package/examples/ionic/src/polyfills.ts +66 -0
- package/examples/ionic/src/test.ts +20 -0
- package/examples/ionic/src/theme/variables.scss +77 -0
- package/examples/ionic/src/zone-flags.ts +5 -0
- package/examples/ionic/tsconfig.app.json +14 -0
- package/examples/ionic/tsconfig.json +26 -0
- package/examples/ionic/tsconfig.spec.json +19 -0
- package/examples/ionic/tslint.json +88 -0
- package/examples/react-native/.vscode/launch.json +26 -0
- package/examples/react-native/.watchmanconfig +1 -0
- package/examples/react-native/App.tsx +206 -0
- package/examples/react-native/Gemfile +8 -0
- package/examples/react-native/Gemfile.lock +134 -0
- package/examples/react-native/android/app/build.gradle +123 -0
- package/examples/react-native/android/app/debug.keystore +0 -0
- package/examples/react-native/android/app/proguard-rules.pro +10 -0
- package/examples/react-native/android/app/src/debug/AndroidManifest.xml +9 -0
- package/examples/react-native/android/app/src/main/AndroidManifest.xml +27 -0
- package/examples/react-native/android/app/src/main/assets/.gitkeep +0 -0
- package/examples/react-native/android/app/src/main/java/com/regula/face/api/MainActivity.kt +22 -0
- package/examples/react-native/android/app/src/main/java/com/regula/face/api/MainApplication.kt +43 -0
- package/examples/react-native/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- 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/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/values/strings.xml +3 -0
- package/examples/react-native/android/app/src/main/res/values/styles.xml +9 -0
- package/examples/react-native/android/build.gradle +21 -0
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/react-native/android/gradle.properties +39 -0
- package/examples/react-native/android/gradlew +249 -0
- package/examples/react-native/android/gradlew.bat +92 -0
- package/examples/react-native/android/settings.gradle +6 -0
- package/examples/react-native/images/portrait.png +0 -0
- package/examples/react-native/index.js +4 -0
- package/examples/react-native/ios/.xcode.env +11 -0
- package/examples/react-native/ios/FaceSDK/AppDelegate.h +6 -0
- package/examples/react-native/ios/FaceSDK/AppDelegate.mm +31 -0
- package/examples/react-native/ios/FaceSDK/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/examples/react-native/ios/FaceSDK/Images.xcassets/Contents.json +6 -0
- package/examples/react-native/ios/FaceSDK/Info.plist +51 -0
- package/examples/react-native/ios/FaceSDK/LaunchScreen.storyboard +47 -0
- package/examples/react-native/ios/FaceSDK/PrivacyInfo.xcprivacy +38 -0
- package/examples/react-native/ios/FaceSDK/main.m +10 -0
- package/examples/react-native/ios/FaceSDK.xcodeproj/project.pbxproj +719 -0
- package/examples/react-native/ios/FaceSDK.xcodeproj/xcshareddata/xcschemes/FaceSDK.xcscheme +88 -0
- package/examples/react-native/ios/FaceSDK.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/react-native/ios/FaceSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/react-native/ios/FaceSDKTests/FaceSDKTests.m +66 -0
- package/examples/react-native/ios/FaceSDKTests/Info.plist +24 -0
- package/examples/react-native/ios/Podfile +40 -0
- package/examples/react-native/ios/Podfile.lock +1822 -0
- package/examples/react-native/ios/license/.gitkeep +0 -0
- package/examples/react-native/metro.config.js +15 -0
- package/examples/react-native/package-lock.json +13098 -0
- package/examples/react-native/package.json +42 -0
- package/ios/CVDFaceSDK.h +7 -0
- package/ios/CVDFaceSDK.m +34 -0
- package/ios/RFSWConfig.h +27 -0
- package/ios/RFSWConfig.m +189 -0
- package/ios/RFSWJSONConstructor.h +134 -0
- package/ios/RFSWJSONConstructor.m +977 -0
- package/ios/RFSWMain.h +23 -0
- package/ios/RFSWMain.m +352 -0
- package/ios/RNFaceSDK.h +8 -0
- package/ios/RNFaceSDK.m +42 -0
- package/ios-ci/.gitlab-ci.yml +41 -0
- package/ios-ci/.sample-env +22 -0
- package/ios-ci/README.md +97 -0
- package/ios-ci/RegulaDanger/Package.swift +34 -0
- package/ios-ci/RegulaDanger/Sources/RegulaDanger/RegulaDanger.swift +44 -0
- package/ios-ci/RegulaDanger/Tests/LinuxMain.swift +7 -0
- package/ios-ci/RegulaDanger/Tests/RegulaDangerTests/RegulaDangerTests.swift +15 -0
- package/ios-ci/RegulaDanger/Tests/RegulaDangerTests/XCTestManifests.swift +9 -0
- package/ios-ci/install.sh +9 -0
- package/ios-ci/ios_ci/__init__.py +8 -0
- package/ios-ci/ios_ci/cli.py +408 -0
- package/ios-ci/ios_ci/common/__init__.py +0 -0
- package/ios-ci/ios_ci/common/build_index.py +70 -0
- package/ios-ci/ios_ci/common/clean_cocoapod.sh +13 -0
- package/ios-ci/ios_ci/common/dependency.py +466 -0
- package/ios-ci/ios_ci/common/ftp.py +314 -0
- package/ios-ci/ios_ci/common/searchpod.sh +6 -0
- package/ios-ci/ios_ci/common/wait_for_cocopod.sh +21 -0
- package/ios-ci/ios_ci/inject.py +145 -0
- package/ios-ci/ios_ci/podspec/__init__.py +0 -0
- package/ios-ci/ios_ci/podspec/podspec.py +88 -0
- package/ios-ci/ios_ci/podspec/templates/BTDevice.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/Core.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/DocumentReader.podspec +19 -0
- package/ios-ci/ios_ci/podspec/templates/FaceCore.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/FaceSDK.podspec +18 -0
- package/ios-ci/ios_ci/podspec/templates/IRS.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/RegulaCommon.podspec +17 -0
- package/ios-ci/ios_ci/resolve_podfile_common.py +76 -0
- package/ios-ci/ios_ci/spm/AppleRootCA-G3.cer +0 -0
- package/ios-ci/ios_ci/spm/AppleWWDRCAG3.cer +0 -0
- package/ios-ci/ios_ci/spm/SwiftPackageGenerator+Common.sh +48 -0
- package/ios-ci/ios_ci/spm/SwiftPackageGenerator.sh +33 -0
- package/ios-ci/ios_ci/spm/XcodeSPMCollection.json +29 -0
- package/ios-ci/ios_ci/spm/__init__.py +0 -0
- package/ios-ci/ios_ci/spm/askpass.py +19 -0
- package/ios-ci/ios_ci/spm/spm.py +227 -0
- package/ios-ci/ios_ci/upload_build.py +158 -0
- package/ios-ci/ios_ci/version.py +14 -0
- package/ios-ci/poetry.lock +342 -0
- package/ios-ci/pyproject.toml +26 -0
- package/ios-ci/scripts.py +9 -0
- package/ios-ci/tests/__init__.py +0 -0
- package/ios-ci/tests/podspec/fixtures/BTDevice.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/BTDeviceBeta.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderBeta_RegulaCommon_Beta.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderBeta_RegulaCommon_Release.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderFullRFID.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderFullRFIDBeta.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReader_RegulaCommon_Beta.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReader_RegulaCommon_Release.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/FaceSDK.podspec +18 -0
- package/ios-ci/tests/podspec/fixtures/FaceSDKBeta.podspec +18 -0
- package/ios-ci/tests/podspec/fixtures/IRS.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/IRSBeta.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/RegulaCommon.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/RegulaCommonBeta.podspec +17 -0
- package/ios-ci/tests/podspec/test_podspec.py +188 -0
- package/ios-ci/tests/test_build_index.py +117 -0
- package/ios-ci/tests/test_dependency.py +139 -0
- package/ios-ci/tests/test_ios_ci.py +5 -0
- package/package.json +36 -0
- package/plugin.xml +48 -0
- package/www/capacitor/customization/camera_position.js +4 -0
- package/www/capacitor/customization/customization.js +66 -0
- package/www/capacitor/customization/customization_colors.js +233 -0
- package/www/capacitor/customization/customization_fonts.js +106 -0
- package/www/capacitor/customization/customization_images.js +129 -0
- package/www/capacitor/customization/font.js +23 -0
- package/www/capacitor/customization/screen_orientation.js +4 -0
- package/www/capacitor/detect_faces/detect_face_result.js +38 -0
- package/www/capacitor/detect_faces/detect_faces_attribute.js +15 -0
- package/www/capacitor/detect_faces/detect_faces_attribute_result.js +20 -0
- package/www/capacitor/detect_faces/detect_faces_backend_exception.js +23 -0
- package/www/capacitor/detect_faces/detect_faces_config.js +14 -0
- package/www/capacitor/detect_faces/detect_faces_exception.js +30 -0
- package/www/capacitor/detect_faces/detect_faces_request.js +67 -0
- package/www/capacitor/detect_faces/detect_faces_response.js +24 -0
- package/www/capacitor/detect_faces/detect_faces_scenario.js +10 -0
- package/www/capacitor/face_capture/face_capture_config.js +28 -0
- package/www/capacitor/face_capture/face_capture_exception.js +25 -0
- package/www/capacitor/face_capture/face_capture_image.js +26 -0
- package/www/capacitor/face_capture/face_capture_response.js +17 -0
- package/www/capacitor/image_params/output_image_crop.js +21 -0
- package/www/capacitor/image_params/output_image_params.js +9 -0
- package/www/capacitor/image_params/point.js +14 -0
- package/www/capacitor/image_params/rect.js +18 -0
- package/www/capacitor/image_params/size.js +9 -0
- package/www/capacitor/image_quality/image_quality_characteristic.js +24 -0
- package/www/capacitor/image_quality/image_quality_characteristic_name.js +58 -0
- package/www/capacitor/image_quality/image_quality_group.js +332 -0
- package/www/capacitor/image_quality/image_quality_range.js +26 -0
- package/www/capacitor/image_quality/image_quality_result.js +40 -0
- package/www/capacitor/index.js +219 -0
- package/www/capacitor/init/face_sdk_version.js +16 -0
- package/www/capacitor/init/init_config.js +9 -0
- package/www/capacitor/init/init_exception.js +29 -0
- package/www/capacitor/init/license_exception.js +29 -0
- package/www/capacitor/internal/bridge.js +39 -0
- package/www/capacitor/internal/cordova.js +17 -0
- package/www/capacitor/internal/webpack.config.js +11 -0
- package/www/capacitor/liveness/liveness_backend_exception.js +38 -0
- package/www/capacitor/liveness/liveness_config.js +54 -0
- package/www/capacitor/liveness/liveness_exception.js +35 -0
- package/www/capacitor/liveness/liveness_notification.js +34 -0
- package/www/capacitor/liveness/liveness_response.js +30 -0
- package/www/capacitor/match_faces/compared_face.js +21 -0
- package/www/capacitor/match_faces/compared_faces_pair.js +23 -0
- package/www/capacitor/match_faces/compared_faces_split.js +22 -0
- package/www/capacitor/match_faces/match_faces_backend_exception.js +14 -0
- package/www/capacitor/match_faces/match_faces_config.js +12 -0
- package/www/capacitor/match_faces/match_faces_detection.js +25 -0
- package/www/capacitor/match_faces/match_faces_detection_face.js +28 -0
- package/www/capacitor/match_faces/match_faces_exception.js +30 -0
- package/www/capacitor/match_faces/match_faces_image.js +25 -0
- package/www/capacitor/match_faces/match_faces_request.js +13 -0
- package/www/capacitor/match_faces/match_faces_response.js +28 -0
- package/www/capacitor/person_database/edit_group_persons_request.js +9 -0
- package/www/capacitor/person_database/image_upload.js +16 -0
- package/www/capacitor/person_database/pageable_item_list.js +22 -0
- package/www/capacitor/person_database/person.js +22 -0
- package/www/capacitor/person_database/person_database.js +145 -0
- package/www/capacitor/person_database/person_group.js +18 -0
- package/www/capacitor/person_database/person_image.js +22 -0
- package/www/capacitor/person_database/search_person.js +31 -0
- package/www/capacitor/person_database/search_person_detection.js +22 -0
- package/www/capacitor/person_database/search_person_image.js +26 -0
- package/www/capacitor/person_database/search_person_request.js +17 -0
- package/www/cordova.js +3738 -0
- package/www/react-native/customization/camera_position.js +4 -0
- package/www/react-native/customization/customization.js +66 -0
- package/www/react-native/customization/customization_colors.js +233 -0
- package/www/react-native/customization/customization_fonts.js +106 -0
- package/www/react-native/customization/customization_images.js +129 -0
- package/www/react-native/customization/font.js +23 -0
- package/www/react-native/customization/screen_orientation.js +4 -0
- package/www/react-native/detect_faces/detect_face_result.js +38 -0
- package/www/react-native/detect_faces/detect_faces_attribute.js +15 -0
- package/www/react-native/detect_faces/detect_faces_attribute_result.js +20 -0
- package/www/react-native/detect_faces/detect_faces_backend_exception.js +23 -0
- package/www/react-native/detect_faces/detect_faces_config.js +14 -0
- package/www/react-native/detect_faces/detect_faces_exception.js +30 -0
- package/www/react-native/detect_faces/detect_faces_request.js +67 -0
- package/www/react-native/detect_faces/detect_faces_response.js +24 -0
- package/www/react-native/detect_faces/detect_faces_scenario.js +10 -0
- package/www/react-native/face_capture/face_capture_config.js +28 -0
- package/www/react-native/face_capture/face_capture_exception.js +25 -0
- package/www/react-native/face_capture/face_capture_image.js +26 -0
- package/www/react-native/face_capture/face_capture_response.js +17 -0
- package/www/react-native/image_params/output_image_crop.js +21 -0
- package/www/react-native/image_params/output_image_params.js +9 -0
- package/www/react-native/image_params/point.js +14 -0
- package/www/react-native/image_params/rect.js +18 -0
- package/www/react-native/image_params/size.js +9 -0
- package/www/react-native/image_quality/image_quality_characteristic.js +24 -0
- package/www/react-native/image_quality/image_quality_characteristic_name.js +58 -0
- package/www/react-native/image_quality/image_quality_group.js +332 -0
- package/www/react-native/image_quality/image_quality_range.js +26 -0
- package/www/react-native/image_quality/image_quality_result.js +40 -0
- package/www/react-native/index.js +219 -0
- package/www/react-native/init/face_sdk_version.js +16 -0
- package/www/react-native/init/init_config.js +9 -0
- package/www/react-native/init/init_exception.js +29 -0
- package/www/react-native/init/license_exception.js +29 -0
- package/www/react-native/internal/bridge.js +39 -0
- package/www/react-native/liveness/liveness_backend_exception.js +38 -0
- package/www/react-native/liveness/liveness_config.js +54 -0
- package/www/react-native/liveness/liveness_exception.js +35 -0
- package/www/react-native/liveness/liveness_notification.js +34 -0
- package/www/react-native/liveness/liveness_response.js +30 -0
- package/www/react-native/match_faces/compared_face.js +21 -0
- package/www/react-native/match_faces/compared_faces_pair.js +23 -0
- package/www/react-native/match_faces/compared_faces_split.js +22 -0
- package/www/react-native/match_faces/match_faces_backend_exception.js +14 -0
- package/www/react-native/match_faces/match_faces_config.js +12 -0
- package/www/react-native/match_faces/match_faces_detection.js +25 -0
- package/www/react-native/match_faces/match_faces_detection_face.js +28 -0
- package/www/react-native/match_faces/match_faces_exception.js +30 -0
- package/www/react-native/match_faces/match_faces_image.js +25 -0
- package/www/react-native/match_faces/match_faces_request.js +13 -0
- package/www/react-native/match_faces/match_faces_response.js +28 -0
- package/www/react-native/person_database/edit_group_persons_request.js +9 -0
- package/www/react-native/person_database/image_upload.js +16 -0
- package/www/react-native/person_database/pageable_item_list.js +22 -0
- package/www/react-native/person_database/person.js +22 -0
- package/www/react-native/person_database/person_database.js +145 -0
- package/www/react-native/person_database/person_group.js +18 -0
- package/www/react-native/person_database/person_image.js +22 -0
- package/www/react-native/person_database/search_person.js +31 -0
- package/www/react-native/person_database/search_person_detection.js +22 -0
- package/www/react-native/person_database/search_person_image.js +26 -0
- package/www/react-native/person_database/search_person_request.js +17 -0
- package/www/types/customization/camera_position.d.ts +4 -0
- package/www/types/customization/customization.d.ts +24 -0
- package/www/types/customization/customization_colors.d.ts +31 -0
- package/www/types/customization/customization_fonts.d.ts +17 -0
- package/www/types/customization/customization_images.d.ts +18 -0
- package/www/types/customization/font.d.ts +14 -0
- package/www/types/customization/screen_orientation.d.ts +4 -0
- package/www/types/detect_faces/detect_face_result.d.ts +16 -0
- package/www/types/detect_faces/detect_faces_attribute.d.ts +15 -0
- package/www/types/detect_faces/detect_faces_attribute_result.d.ts +11 -0
- package/www/types/detect_faces/detect_faces_backend_exception.d.ts +15 -0
- package/www/types/detect_faces/detect_faces_config.d.ts +19 -0
- package/www/types/detect_faces/detect_faces_exception.d.ts +21 -0
- package/www/types/detect_faces/detect_faces_request.d.ts +27 -0
- package/www/types/detect_faces/detect_faces_response.d.ts +12 -0
- package/www/types/detect_faces/detect_faces_scenario.d.ts +10 -0
- package/www/types/face_capture/face_capture_config.d.ts +30 -0
- package/www/types/face_capture/face_capture_exception.d.ts +17 -0
- package/www/types/face_capture/face_capture_image.d.ts +15 -0
- package/www/types/face_capture/face_capture_response.d.ts +9 -0
- package/www/types/image_params/output_image_crop.d.ts +25 -0
- package/www/types/image_params/output_image_params.d.ts +13 -0
- package/www/types/image_params/point.d.ts +6 -0
- package/www/types/image_params/rect.d.ts +8 -0
- package/www/types/image_params/size.d.ts +6 -0
- package/www/types/image_quality/image_quality_characteristic.d.ts +4 -0
- package/www/types/image_quality/image_quality_characteristic_name.d.ts +58 -0
- package/www/types/image_quality/image_quality_group.d.ts +155 -0
- package/www/types/image_quality/image_quality_range.d.ts +8 -0
- package/www/types/image_quality/image_quality_result.d.ts +30 -0
- package/www/types/index.d.ts +159 -0
- package/www/types/init/face_sdk_version.d.ts +7 -0
- package/www/types/init/init_config.d.ts +7 -0
- package/www/types/init/init_exception.d.ts +20 -0
- package/www/types/init/license_exception.d.ts +21 -0
- package/www/types/liveness/liveness_backend_exception.d.ts +30 -0
- package/www/types/liveness/liveness_config.d.ts +56 -0
- package/www/types/liveness/liveness_exception.d.ts +26 -0
- package/www/types/liveness/liveness_notification.d.ts +28 -0
- package/www/types/liveness/liveness_response.d.ts +18 -0
- package/www/types/match_faces/compared_face.d.ts +11 -0
- package/www/types/match_faces/compared_faces_pair.d.ts +12 -0
- package/www/types/match_faces/compared_faces_split.d.ts +8 -0
- package/www/types/match_faces/match_faces_backend_exception.d.ts +6 -0
- package/www/types/match_faces/match_faces_config.d.ts +14 -0
- package/www/types/match_faces/match_faces_detection.d.ts +12 -0
- package/www/types/match_faces/match_faces_detection_face.d.ts +13 -0
- package/www/types/match_faces/match_faces_exception.d.ts +21 -0
- package/www/types/match_faces/match_faces_image.d.ts +16 -0
- package/www/types/match_faces/match_faces_request.d.ts +18 -0
- package/www/types/match_faces/match_faces_response.d.ts +12 -0
- package/www/types/person_database/edit_group_persons_request.d.ts +8 -0
- package/www/types/person_database/image_upload.d.ts +6 -0
- package/www/types/person_database/pageable_item_list.d.ts +7 -0
- package/www/types/person_database/person.d.ts +10 -0
- package/www/types/person_database/person_database.d.ts +92 -0
- package/www/types/person_database/person_group.d.ts +8 -0
- package/www/types/person_database/person_image.d.ts +10 -0
- package/www/types/person_database/search_person.d.ts +15 -0
- package/www/types/person_database/search_person_detection.d.ts +11 -0
- package/www/types/person_database/search_person_image.d.ts +12 -0
- package/www/types/person_database/search_person_request.d.ts +15 -0
|
@@ -0,0 +1,1822 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- boost (1.84.0)
|
|
3
|
+
- DoubleConversion (1.1.6)
|
|
4
|
+
- FaceCoreBasic (6.2.783)
|
|
5
|
+
- FaceSDK (6.2.1999):
|
|
6
|
+
- RegulaCommon (= 7.3.683)
|
|
7
|
+
- FBLazyVector (0.75.2)
|
|
8
|
+
- fmt (9.1.0)
|
|
9
|
+
- glog (0.3.5)
|
|
10
|
+
- hermes-engine (0.75.2):
|
|
11
|
+
- hermes-engine/Pre-built (= 0.75.2)
|
|
12
|
+
- hermes-engine/Pre-built (0.75.2)
|
|
13
|
+
- RCT-Folly (2024.01.01.00):
|
|
14
|
+
- boost
|
|
15
|
+
- DoubleConversion
|
|
16
|
+
- fmt (= 9.1.0)
|
|
17
|
+
- glog
|
|
18
|
+
- RCT-Folly/Default (= 2024.01.01.00)
|
|
19
|
+
- RCT-Folly/Default (2024.01.01.00):
|
|
20
|
+
- boost
|
|
21
|
+
- DoubleConversion
|
|
22
|
+
- fmt (= 9.1.0)
|
|
23
|
+
- glog
|
|
24
|
+
- RCT-Folly/Fabric (2024.01.01.00):
|
|
25
|
+
- boost
|
|
26
|
+
- DoubleConversion
|
|
27
|
+
- fmt (= 9.1.0)
|
|
28
|
+
- glog
|
|
29
|
+
- RCTDeprecation (0.75.2)
|
|
30
|
+
- RCTRequired (0.75.2)
|
|
31
|
+
- RCTTypeSafety (0.75.2):
|
|
32
|
+
- FBLazyVector (= 0.75.2)
|
|
33
|
+
- RCTRequired (= 0.75.2)
|
|
34
|
+
- React-Core (= 0.75.2)
|
|
35
|
+
- React (0.75.2):
|
|
36
|
+
- React-Core (= 0.75.2)
|
|
37
|
+
- React-Core/DevSupport (= 0.75.2)
|
|
38
|
+
- React-Core/RCTWebSocket (= 0.75.2)
|
|
39
|
+
- React-RCTActionSheet (= 0.75.2)
|
|
40
|
+
- React-RCTAnimation (= 0.75.2)
|
|
41
|
+
- React-RCTBlob (= 0.75.2)
|
|
42
|
+
- React-RCTImage (= 0.75.2)
|
|
43
|
+
- React-RCTLinking (= 0.75.2)
|
|
44
|
+
- React-RCTNetwork (= 0.75.2)
|
|
45
|
+
- React-RCTSettings (= 0.75.2)
|
|
46
|
+
- React-RCTText (= 0.75.2)
|
|
47
|
+
- React-RCTVibration (= 0.75.2)
|
|
48
|
+
- React-callinvoker (0.75.2)
|
|
49
|
+
- React-Core (0.75.2):
|
|
50
|
+
- glog
|
|
51
|
+
- hermes-engine
|
|
52
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
53
|
+
- RCTDeprecation
|
|
54
|
+
- React-Core/Default (= 0.75.2)
|
|
55
|
+
- React-cxxreact
|
|
56
|
+
- React-featureflags
|
|
57
|
+
- React-hermes
|
|
58
|
+
- React-jsi
|
|
59
|
+
- React-jsiexecutor
|
|
60
|
+
- React-jsinspector
|
|
61
|
+
- React-perflogger
|
|
62
|
+
- React-runtimescheduler
|
|
63
|
+
- React-utils
|
|
64
|
+
- SocketRocket (= 0.7.0)
|
|
65
|
+
- Yoga
|
|
66
|
+
- React-Core/CoreModulesHeaders (0.75.2):
|
|
67
|
+
- glog
|
|
68
|
+
- hermes-engine
|
|
69
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
70
|
+
- RCTDeprecation
|
|
71
|
+
- React-Core/Default
|
|
72
|
+
- React-cxxreact
|
|
73
|
+
- React-featureflags
|
|
74
|
+
- React-hermes
|
|
75
|
+
- React-jsi
|
|
76
|
+
- React-jsiexecutor
|
|
77
|
+
- React-jsinspector
|
|
78
|
+
- React-perflogger
|
|
79
|
+
- React-runtimescheduler
|
|
80
|
+
- React-utils
|
|
81
|
+
- SocketRocket (= 0.7.0)
|
|
82
|
+
- Yoga
|
|
83
|
+
- React-Core/Default (0.75.2):
|
|
84
|
+
- glog
|
|
85
|
+
- hermes-engine
|
|
86
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
87
|
+
- RCTDeprecation
|
|
88
|
+
- React-cxxreact
|
|
89
|
+
- React-featureflags
|
|
90
|
+
- React-hermes
|
|
91
|
+
- React-jsi
|
|
92
|
+
- React-jsiexecutor
|
|
93
|
+
- React-jsinspector
|
|
94
|
+
- React-perflogger
|
|
95
|
+
- React-runtimescheduler
|
|
96
|
+
- React-utils
|
|
97
|
+
- SocketRocket (= 0.7.0)
|
|
98
|
+
- Yoga
|
|
99
|
+
- React-Core/DevSupport (0.75.2):
|
|
100
|
+
- glog
|
|
101
|
+
- hermes-engine
|
|
102
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
103
|
+
- RCTDeprecation
|
|
104
|
+
- React-Core/Default (= 0.75.2)
|
|
105
|
+
- React-Core/RCTWebSocket (= 0.75.2)
|
|
106
|
+
- React-cxxreact
|
|
107
|
+
- React-featureflags
|
|
108
|
+
- React-hermes
|
|
109
|
+
- React-jsi
|
|
110
|
+
- React-jsiexecutor
|
|
111
|
+
- React-jsinspector
|
|
112
|
+
- React-perflogger
|
|
113
|
+
- React-runtimescheduler
|
|
114
|
+
- React-utils
|
|
115
|
+
- SocketRocket (= 0.7.0)
|
|
116
|
+
- Yoga
|
|
117
|
+
- React-Core/RCTActionSheetHeaders (0.75.2):
|
|
118
|
+
- glog
|
|
119
|
+
- hermes-engine
|
|
120
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
121
|
+
- RCTDeprecation
|
|
122
|
+
- React-Core/Default
|
|
123
|
+
- React-cxxreact
|
|
124
|
+
- React-featureflags
|
|
125
|
+
- React-hermes
|
|
126
|
+
- React-jsi
|
|
127
|
+
- React-jsiexecutor
|
|
128
|
+
- React-jsinspector
|
|
129
|
+
- React-perflogger
|
|
130
|
+
- React-runtimescheduler
|
|
131
|
+
- React-utils
|
|
132
|
+
- SocketRocket (= 0.7.0)
|
|
133
|
+
- Yoga
|
|
134
|
+
- React-Core/RCTAnimationHeaders (0.75.2):
|
|
135
|
+
- glog
|
|
136
|
+
- hermes-engine
|
|
137
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
138
|
+
- RCTDeprecation
|
|
139
|
+
- React-Core/Default
|
|
140
|
+
- React-cxxreact
|
|
141
|
+
- React-featureflags
|
|
142
|
+
- React-hermes
|
|
143
|
+
- React-jsi
|
|
144
|
+
- React-jsiexecutor
|
|
145
|
+
- React-jsinspector
|
|
146
|
+
- React-perflogger
|
|
147
|
+
- React-runtimescheduler
|
|
148
|
+
- React-utils
|
|
149
|
+
- SocketRocket (= 0.7.0)
|
|
150
|
+
- Yoga
|
|
151
|
+
- React-Core/RCTBlobHeaders (0.75.2):
|
|
152
|
+
- glog
|
|
153
|
+
- hermes-engine
|
|
154
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
155
|
+
- RCTDeprecation
|
|
156
|
+
- React-Core/Default
|
|
157
|
+
- React-cxxreact
|
|
158
|
+
- React-featureflags
|
|
159
|
+
- React-hermes
|
|
160
|
+
- React-jsi
|
|
161
|
+
- React-jsiexecutor
|
|
162
|
+
- React-jsinspector
|
|
163
|
+
- React-perflogger
|
|
164
|
+
- React-runtimescheduler
|
|
165
|
+
- React-utils
|
|
166
|
+
- SocketRocket (= 0.7.0)
|
|
167
|
+
- Yoga
|
|
168
|
+
- React-Core/RCTImageHeaders (0.75.2):
|
|
169
|
+
- glog
|
|
170
|
+
- hermes-engine
|
|
171
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
172
|
+
- RCTDeprecation
|
|
173
|
+
- React-Core/Default
|
|
174
|
+
- React-cxxreact
|
|
175
|
+
- React-featureflags
|
|
176
|
+
- React-hermes
|
|
177
|
+
- React-jsi
|
|
178
|
+
- React-jsiexecutor
|
|
179
|
+
- React-jsinspector
|
|
180
|
+
- React-perflogger
|
|
181
|
+
- React-runtimescheduler
|
|
182
|
+
- React-utils
|
|
183
|
+
- SocketRocket (= 0.7.0)
|
|
184
|
+
- Yoga
|
|
185
|
+
- React-Core/RCTLinkingHeaders (0.75.2):
|
|
186
|
+
- glog
|
|
187
|
+
- hermes-engine
|
|
188
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
189
|
+
- RCTDeprecation
|
|
190
|
+
- React-Core/Default
|
|
191
|
+
- React-cxxreact
|
|
192
|
+
- React-featureflags
|
|
193
|
+
- React-hermes
|
|
194
|
+
- React-jsi
|
|
195
|
+
- React-jsiexecutor
|
|
196
|
+
- React-jsinspector
|
|
197
|
+
- React-perflogger
|
|
198
|
+
- React-runtimescheduler
|
|
199
|
+
- React-utils
|
|
200
|
+
- SocketRocket (= 0.7.0)
|
|
201
|
+
- Yoga
|
|
202
|
+
- React-Core/RCTNetworkHeaders (0.75.2):
|
|
203
|
+
- glog
|
|
204
|
+
- hermes-engine
|
|
205
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
206
|
+
- RCTDeprecation
|
|
207
|
+
- React-Core/Default
|
|
208
|
+
- React-cxxreact
|
|
209
|
+
- React-featureflags
|
|
210
|
+
- React-hermes
|
|
211
|
+
- React-jsi
|
|
212
|
+
- React-jsiexecutor
|
|
213
|
+
- React-jsinspector
|
|
214
|
+
- React-perflogger
|
|
215
|
+
- React-runtimescheduler
|
|
216
|
+
- React-utils
|
|
217
|
+
- SocketRocket (= 0.7.0)
|
|
218
|
+
- Yoga
|
|
219
|
+
- React-Core/RCTSettingsHeaders (0.75.2):
|
|
220
|
+
- glog
|
|
221
|
+
- hermes-engine
|
|
222
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
223
|
+
- RCTDeprecation
|
|
224
|
+
- React-Core/Default
|
|
225
|
+
- React-cxxreact
|
|
226
|
+
- React-featureflags
|
|
227
|
+
- React-hermes
|
|
228
|
+
- React-jsi
|
|
229
|
+
- React-jsiexecutor
|
|
230
|
+
- React-jsinspector
|
|
231
|
+
- React-perflogger
|
|
232
|
+
- React-runtimescheduler
|
|
233
|
+
- React-utils
|
|
234
|
+
- SocketRocket (= 0.7.0)
|
|
235
|
+
- Yoga
|
|
236
|
+
- React-Core/RCTTextHeaders (0.75.2):
|
|
237
|
+
- glog
|
|
238
|
+
- hermes-engine
|
|
239
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
240
|
+
- RCTDeprecation
|
|
241
|
+
- React-Core/Default
|
|
242
|
+
- React-cxxreact
|
|
243
|
+
- React-featureflags
|
|
244
|
+
- React-hermes
|
|
245
|
+
- React-jsi
|
|
246
|
+
- React-jsiexecutor
|
|
247
|
+
- React-jsinspector
|
|
248
|
+
- React-perflogger
|
|
249
|
+
- React-runtimescheduler
|
|
250
|
+
- React-utils
|
|
251
|
+
- SocketRocket (= 0.7.0)
|
|
252
|
+
- Yoga
|
|
253
|
+
- React-Core/RCTVibrationHeaders (0.75.2):
|
|
254
|
+
- glog
|
|
255
|
+
- hermes-engine
|
|
256
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
257
|
+
- RCTDeprecation
|
|
258
|
+
- React-Core/Default
|
|
259
|
+
- React-cxxreact
|
|
260
|
+
- React-featureflags
|
|
261
|
+
- React-hermes
|
|
262
|
+
- React-jsi
|
|
263
|
+
- React-jsiexecutor
|
|
264
|
+
- React-jsinspector
|
|
265
|
+
- React-perflogger
|
|
266
|
+
- React-runtimescheduler
|
|
267
|
+
- React-utils
|
|
268
|
+
- SocketRocket (= 0.7.0)
|
|
269
|
+
- Yoga
|
|
270
|
+
- React-Core/RCTWebSocket (0.75.2):
|
|
271
|
+
- glog
|
|
272
|
+
- hermes-engine
|
|
273
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
274
|
+
- RCTDeprecation
|
|
275
|
+
- React-Core/Default (= 0.75.2)
|
|
276
|
+
- React-cxxreact
|
|
277
|
+
- React-featureflags
|
|
278
|
+
- React-hermes
|
|
279
|
+
- React-jsi
|
|
280
|
+
- React-jsiexecutor
|
|
281
|
+
- React-jsinspector
|
|
282
|
+
- React-perflogger
|
|
283
|
+
- React-runtimescheduler
|
|
284
|
+
- React-utils
|
|
285
|
+
- SocketRocket (= 0.7.0)
|
|
286
|
+
- Yoga
|
|
287
|
+
- React-CoreModules (0.75.2):
|
|
288
|
+
- DoubleConversion
|
|
289
|
+
- fmt (= 9.1.0)
|
|
290
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
291
|
+
- RCTTypeSafety (= 0.75.2)
|
|
292
|
+
- React-Core/CoreModulesHeaders (= 0.75.2)
|
|
293
|
+
- React-jsi (= 0.75.2)
|
|
294
|
+
- React-jsinspector
|
|
295
|
+
- React-NativeModulesApple
|
|
296
|
+
- React-RCTBlob
|
|
297
|
+
- React-RCTImage (= 0.75.2)
|
|
298
|
+
- ReactCodegen
|
|
299
|
+
- ReactCommon
|
|
300
|
+
- SocketRocket (= 0.7.0)
|
|
301
|
+
- React-cxxreact (0.75.2):
|
|
302
|
+
- boost
|
|
303
|
+
- DoubleConversion
|
|
304
|
+
- fmt (= 9.1.0)
|
|
305
|
+
- glog
|
|
306
|
+
- hermes-engine
|
|
307
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
308
|
+
- React-callinvoker (= 0.75.2)
|
|
309
|
+
- React-debug (= 0.75.2)
|
|
310
|
+
- React-jsi (= 0.75.2)
|
|
311
|
+
- React-jsinspector
|
|
312
|
+
- React-logger (= 0.75.2)
|
|
313
|
+
- React-perflogger (= 0.75.2)
|
|
314
|
+
- React-runtimeexecutor (= 0.75.2)
|
|
315
|
+
- React-debug (0.75.2)
|
|
316
|
+
- React-defaultsnativemodule (0.75.2):
|
|
317
|
+
- DoubleConversion
|
|
318
|
+
- glog
|
|
319
|
+
- hermes-engine
|
|
320
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
321
|
+
- RCTRequired
|
|
322
|
+
- RCTTypeSafety
|
|
323
|
+
- React-Core
|
|
324
|
+
- React-debug
|
|
325
|
+
- React-domnativemodule
|
|
326
|
+
- React-Fabric
|
|
327
|
+
- React-featureflags
|
|
328
|
+
- React-featureflagsnativemodule
|
|
329
|
+
- React-graphics
|
|
330
|
+
- React-idlecallbacksnativemodule
|
|
331
|
+
- React-ImageManager
|
|
332
|
+
- React-microtasksnativemodule
|
|
333
|
+
- React-NativeModulesApple
|
|
334
|
+
- React-RCTFabric
|
|
335
|
+
- React-rendererdebug
|
|
336
|
+
- React-utils
|
|
337
|
+
- ReactCodegen
|
|
338
|
+
- ReactCommon/turbomodule/bridging
|
|
339
|
+
- ReactCommon/turbomodule/core
|
|
340
|
+
- Yoga
|
|
341
|
+
- React-domnativemodule (0.75.2):
|
|
342
|
+
- DoubleConversion
|
|
343
|
+
- glog
|
|
344
|
+
- hermes-engine
|
|
345
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
346
|
+
- RCTRequired
|
|
347
|
+
- RCTTypeSafety
|
|
348
|
+
- React-Core
|
|
349
|
+
- React-debug
|
|
350
|
+
- React-Fabric
|
|
351
|
+
- React-FabricComponents
|
|
352
|
+
- React-featureflags
|
|
353
|
+
- React-graphics
|
|
354
|
+
- React-ImageManager
|
|
355
|
+
- React-NativeModulesApple
|
|
356
|
+
- React-RCTFabric
|
|
357
|
+
- React-rendererdebug
|
|
358
|
+
- React-utils
|
|
359
|
+
- ReactCodegen
|
|
360
|
+
- ReactCommon/turbomodule/bridging
|
|
361
|
+
- ReactCommon/turbomodule/core
|
|
362
|
+
- Yoga
|
|
363
|
+
- React-Fabric (0.75.2):
|
|
364
|
+
- DoubleConversion
|
|
365
|
+
- fmt (= 9.1.0)
|
|
366
|
+
- glog
|
|
367
|
+
- hermes-engine
|
|
368
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
369
|
+
- RCTRequired
|
|
370
|
+
- RCTTypeSafety
|
|
371
|
+
- React-Core
|
|
372
|
+
- React-cxxreact
|
|
373
|
+
- React-debug
|
|
374
|
+
- React-Fabric/animations (= 0.75.2)
|
|
375
|
+
- React-Fabric/attributedstring (= 0.75.2)
|
|
376
|
+
- React-Fabric/componentregistry (= 0.75.2)
|
|
377
|
+
- React-Fabric/componentregistrynative (= 0.75.2)
|
|
378
|
+
- React-Fabric/components (= 0.75.2)
|
|
379
|
+
- React-Fabric/core (= 0.75.2)
|
|
380
|
+
- React-Fabric/dom (= 0.75.2)
|
|
381
|
+
- React-Fabric/imagemanager (= 0.75.2)
|
|
382
|
+
- React-Fabric/leakchecker (= 0.75.2)
|
|
383
|
+
- React-Fabric/mounting (= 0.75.2)
|
|
384
|
+
- React-Fabric/observers (= 0.75.2)
|
|
385
|
+
- React-Fabric/scheduler (= 0.75.2)
|
|
386
|
+
- React-Fabric/telemetry (= 0.75.2)
|
|
387
|
+
- React-Fabric/templateprocessor (= 0.75.2)
|
|
388
|
+
- React-Fabric/uimanager (= 0.75.2)
|
|
389
|
+
- React-featureflags
|
|
390
|
+
- React-graphics
|
|
391
|
+
- React-jsi
|
|
392
|
+
- React-jsiexecutor
|
|
393
|
+
- React-logger
|
|
394
|
+
- React-rendererdebug
|
|
395
|
+
- React-runtimescheduler
|
|
396
|
+
- React-utils
|
|
397
|
+
- ReactCommon/turbomodule/core
|
|
398
|
+
- React-Fabric/animations (0.75.2):
|
|
399
|
+
- DoubleConversion
|
|
400
|
+
- fmt (= 9.1.0)
|
|
401
|
+
- glog
|
|
402
|
+
- hermes-engine
|
|
403
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
404
|
+
- RCTRequired
|
|
405
|
+
- RCTTypeSafety
|
|
406
|
+
- React-Core
|
|
407
|
+
- React-cxxreact
|
|
408
|
+
- React-debug
|
|
409
|
+
- React-featureflags
|
|
410
|
+
- React-graphics
|
|
411
|
+
- React-jsi
|
|
412
|
+
- React-jsiexecutor
|
|
413
|
+
- React-logger
|
|
414
|
+
- React-rendererdebug
|
|
415
|
+
- React-runtimescheduler
|
|
416
|
+
- React-utils
|
|
417
|
+
- ReactCommon/turbomodule/core
|
|
418
|
+
- React-Fabric/attributedstring (0.75.2):
|
|
419
|
+
- DoubleConversion
|
|
420
|
+
- fmt (= 9.1.0)
|
|
421
|
+
- glog
|
|
422
|
+
- hermes-engine
|
|
423
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
424
|
+
- RCTRequired
|
|
425
|
+
- RCTTypeSafety
|
|
426
|
+
- React-Core
|
|
427
|
+
- React-cxxreact
|
|
428
|
+
- React-debug
|
|
429
|
+
- React-featureflags
|
|
430
|
+
- React-graphics
|
|
431
|
+
- React-jsi
|
|
432
|
+
- React-jsiexecutor
|
|
433
|
+
- React-logger
|
|
434
|
+
- React-rendererdebug
|
|
435
|
+
- React-runtimescheduler
|
|
436
|
+
- React-utils
|
|
437
|
+
- ReactCommon/turbomodule/core
|
|
438
|
+
- React-Fabric/componentregistry (0.75.2):
|
|
439
|
+
- DoubleConversion
|
|
440
|
+
- fmt (= 9.1.0)
|
|
441
|
+
- glog
|
|
442
|
+
- hermes-engine
|
|
443
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
444
|
+
- RCTRequired
|
|
445
|
+
- RCTTypeSafety
|
|
446
|
+
- React-Core
|
|
447
|
+
- React-cxxreact
|
|
448
|
+
- React-debug
|
|
449
|
+
- React-featureflags
|
|
450
|
+
- React-graphics
|
|
451
|
+
- React-jsi
|
|
452
|
+
- React-jsiexecutor
|
|
453
|
+
- React-logger
|
|
454
|
+
- React-rendererdebug
|
|
455
|
+
- React-runtimescheduler
|
|
456
|
+
- React-utils
|
|
457
|
+
- ReactCommon/turbomodule/core
|
|
458
|
+
- React-Fabric/componentregistrynative (0.75.2):
|
|
459
|
+
- DoubleConversion
|
|
460
|
+
- fmt (= 9.1.0)
|
|
461
|
+
- glog
|
|
462
|
+
- hermes-engine
|
|
463
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
464
|
+
- RCTRequired
|
|
465
|
+
- RCTTypeSafety
|
|
466
|
+
- React-Core
|
|
467
|
+
- React-cxxreact
|
|
468
|
+
- React-debug
|
|
469
|
+
- React-featureflags
|
|
470
|
+
- React-graphics
|
|
471
|
+
- React-jsi
|
|
472
|
+
- React-jsiexecutor
|
|
473
|
+
- React-logger
|
|
474
|
+
- React-rendererdebug
|
|
475
|
+
- React-runtimescheduler
|
|
476
|
+
- React-utils
|
|
477
|
+
- ReactCommon/turbomodule/core
|
|
478
|
+
- React-Fabric/components (0.75.2):
|
|
479
|
+
- DoubleConversion
|
|
480
|
+
- fmt (= 9.1.0)
|
|
481
|
+
- glog
|
|
482
|
+
- hermes-engine
|
|
483
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
484
|
+
- RCTRequired
|
|
485
|
+
- RCTTypeSafety
|
|
486
|
+
- React-Core
|
|
487
|
+
- React-cxxreact
|
|
488
|
+
- React-debug
|
|
489
|
+
- React-Fabric/components/legacyviewmanagerinterop (= 0.75.2)
|
|
490
|
+
- React-Fabric/components/root (= 0.75.2)
|
|
491
|
+
- React-Fabric/components/view (= 0.75.2)
|
|
492
|
+
- React-featureflags
|
|
493
|
+
- React-graphics
|
|
494
|
+
- React-jsi
|
|
495
|
+
- React-jsiexecutor
|
|
496
|
+
- React-logger
|
|
497
|
+
- React-rendererdebug
|
|
498
|
+
- React-runtimescheduler
|
|
499
|
+
- React-utils
|
|
500
|
+
- ReactCommon/turbomodule/core
|
|
501
|
+
- React-Fabric/components/legacyviewmanagerinterop (0.75.2):
|
|
502
|
+
- DoubleConversion
|
|
503
|
+
- fmt (= 9.1.0)
|
|
504
|
+
- glog
|
|
505
|
+
- hermes-engine
|
|
506
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
507
|
+
- RCTRequired
|
|
508
|
+
- RCTTypeSafety
|
|
509
|
+
- React-Core
|
|
510
|
+
- React-cxxreact
|
|
511
|
+
- React-debug
|
|
512
|
+
- React-featureflags
|
|
513
|
+
- React-graphics
|
|
514
|
+
- React-jsi
|
|
515
|
+
- React-jsiexecutor
|
|
516
|
+
- React-logger
|
|
517
|
+
- React-rendererdebug
|
|
518
|
+
- React-runtimescheduler
|
|
519
|
+
- React-utils
|
|
520
|
+
- ReactCommon/turbomodule/core
|
|
521
|
+
- React-Fabric/components/root (0.75.2):
|
|
522
|
+
- DoubleConversion
|
|
523
|
+
- fmt (= 9.1.0)
|
|
524
|
+
- glog
|
|
525
|
+
- hermes-engine
|
|
526
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
527
|
+
- RCTRequired
|
|
528
|
+
- RCTTypeSafety
|
|
529
|
+
- React-Core
|
|
530
|
+
- React-cxxreact
|
|
531
|
+
- React-debug
|
|
532
|
+
- React-featureflags
|
|
533
|
+
- React-graphics
|
|
534
|
+
- React-jsi
|
|
535
|
+
- React-jsiexecutor
|
|
536
|
+
- React-logger
|
|
537
|
+
- React-rendererdebug
|
|
538
|
+
- React-runtimescheduler
|
|
539
|
+
- React-utils
|
|
540
|
+
- ReactCommon/turbomodule/core
|
|
541
|
+
- React-Fabric/components/view (0.75.2):
|
|
542
|
+
- DoubleConversion
|
|
543
|
+
- fmt (= 9.1.0)
|
|
544
|
+
- glog
|
|
545
|
+
- hermes-engine
|
|
546
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
547
|
+
- RCTRequired
|
|
548
|
+
- RCTTypeSafety
|
|
549
|
+
- React-Core
|
|
550
|
+
- React-cxxreact
|
|
551
|
+
- React-debug
|
|
552
|
+
- React-featureflags
|
|
553
|
+
- React-graphics
|
|
554
|
+
- React-jsi
|
|
555
|
+
- React-jsiexecutor
|
|
556
|
+
- React-logger
|
|
557
|
+
- React-rendererdebug
|
|
558
|
+
- React-runtimescheduler
|
|
559
|
+
- React-utils
|
|
560
|
+
- ReactCommon/turbomodule/core
|
|
561
|
+
- Yoga
|
|
562
|
+
- React-Fabric/core (0.75.2):
|
|
563
|
+
- DoubleConversion
|
|
564
|
+
- fmt (= 9.1.0)
|
|
565
|
+
- glog
|
|
566
|
+
- hermes-engine
|
|
567
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
568
|
+
- RCTRequired
|
|
569
|
+
- RCTTypeSafety
|
|
570
|
+
- React-Core
|
|
571
|
+
- React-cxxreact
|
|
572
|
+
- React-debug
|
|
573
|
+
- React-featureflags
|
|
574
|
+
- React-graphics
|
|
575
|
+
- React-jsi
|
|
576
|
+
- React-jsiexecutor
|
|
577
|
+
- React-logger
|
|
578
|
+
- React-rendererdebug
|
|
579
|
+
- React-runtimescheduler
|
|
580
|
+
- React-utils
|
|
581
|
+
- ReactCommon/turbomodule/core
|
|
582
|
+
- React-Fabric/dom (0.75.2):
|
|
583
|
+
- DoubleConversion
|
|
584
|
+
- fmt (= 9.1.0)
|
|
585
|
+
- glog
|
|
586
|
+
- hermes-engine
|
|
587
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
588
|
+
- RCTRequired
|
|
589
|
+
- RCTTypeSafety
|
|
590
|
+
- React-Core
|
|
591
|
+
- React-cxxreact
|
|
592
|
+
- React-debug
|
|
593
|
+
- React-featureflags
|
|
594
|
+
- React-graphics
|
|
595
|
+
- React-jsi
|
|
596
|
+
- React-jsiexecutor
|
|
597
|
+
- React-logger
|
|
598
|
+
- React-rendererdebug
|
|
599
|
+
- React-runtimescheduler
|
|
600
|
+
- React-utils
|
|
601
|
+
- ReactCommon/turbomodule/core
|
|
602
|
+
- React-Fabric/imagemanager (0.75.2):
|
|
603
|
+
- DoubleConversion
|
|
604
|
+
- fmt (= 9.1.0)
|
|
605
|
+
- glog
|
|
606
|
+
- hermes-engine
|
|
607
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
608
|
+
- RCTRequired
|
|
609
|
+
- RCTTypeSafety
|
|
610
|
+
- React-Core
|
|
611
|
+
- React-cxxreact
|
|
612
|
+
- React-debug
|
|
613
|
+
- React-featureflags
|
|
614
|
+
- React-graphics
|
|
615
|
+
- React-jsi
|
|
616
|
+
- React-jsiexecutor
|
|
617
|
+
- React-logger
|
|
618
|
+
- React-rendererdebug
|
|
619
|
+
- React-runtimescheduler
|
|
620
|
+
- React-utils
|
|
621
|
+
- ReactCommon/turbomodule/core
|
|
622
|
+
- React-Fabric/leakchecker (0.75.2):
|
|
623
|
+
- DoubleConversion
|
|
624
|
+
- fmt (= 9.1.0)
|
|
625
|
+
- glog
|
|
626
|
+
- hermes-engine
|
|
627
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
628
|
+
- RCTRequired
|
|
629
|
+
- RCTTypeSafety
|
|
630
|
+
- React-Core
|
|
631
|
+
- React-cxxreact
|
|
632
|
+
- React-debug
|
|
633
|
+
- React-featureflags
|
|
634
|
+
- React-graphics
|
|
635
|
+
- React-jsi
|
|
636
|
+
- React-jsiexecutor
|
|
637
|
+
- React-logger
|
|
638
|
+
- React-rendererdebug
|
|
639
|
+
- React-runtimescheduler
|
|
640
|
+
- React-utils
|
|
641
|
+
- ReactCommon/turbomodule/core
|
|
642
|
+
- React-Fabric/mounting (0.75.2):
|
|
643
|
+
- DoubleConversion
|
|
644
|
+
- fmt (= 9.1.0)
|
|
645
|
+
- glog
|
|
646
|
+
- hermes-engine
|
|
647
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
648
|
+
- RCTRequired
|
|
649
|
+
- RCTTypeSafety
|
|
650
|
+
- React-Core
|
|
651
|
+
- React-cxxreact
|
|
652
|
+
- React-debug
|
|
653
|
+
- React-featureflags
|
|
654
|
+
- React-graphics
|
|
655
|
+
- React-jsi
|
|
656
|
+
- React-jsiexecutor
|
|
657
|
+
- React-logger
|
|
658
|
+
- React-rendererdebug
|
|
659
|
+
- React-runtimescheduler
|
|
660
|
+
- React-utils
|
|
661
|
+
- ReactCommon/turbomodule/core
|
|
662
|
+
- React-Fabric/observers (0.75.2):
|
|
663
|
+
- DoubleConversion
|
|
664
|
+
- fmt (= 9.1.0)
|
|
665
|
+
- glog
|
|
666
|
+
- hermes-engine
|
|
667
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
668
|
+
- RCTRequired
|
|
669
|
+
- RCTTypeSafety
|
|
670
|
+
- React-Core
|
|
671
|
+
- React-cxxreact
|
|
672
|
+
- React-debug
|
|
673
|
+
- React-Fabric/observers/events (= 0.75.2)
|
|
674
|
+
- React-featureflags
|
|
675
|
+
- React-graphics
|
|
676
|
+
- React-jsi
|
|
677
|
+
- React-jsiexecutor
|
|
678
|
+
- React-logger
|
|
679
|
+
- React-rendererdebug
|
|
680
|
+
- React-runtimescheduler
|
|
681
|
+
- React-utils
|
|
682
|
+
- ReactCommon/turbomodule/core
|
|
683
|
+
- React-Fabric/observers/events (0.75.2):
|
|
684
|
+
- DoubleConversion
|
|
685
|
+
- fmt (= 9.1.0)
|
|
686
|
+
- glog
|
|
687
|
+
- hermes-engine
|
|
688
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
689
|
+
- RCTRequired
|
|
690
|
+
- RCTTypeSafety
|
|
691
|
+
- React-Core
|
|
692
|
+
- React-cxxreact
|
|
693
|
+
- React-debug
|
|
694
|
+
- React-featureflags
|
|
695
|
+
- React-graphics
|
|
696
|
+
- React-jsi
|
|
697
|
+
- React-jsiexecutor
|
|
698
|
+
- React-logger
|
|
699
|
+
- React-rendererdebug
|
|
700
|
+
- React-runtimescheduler
|
|
701
|
+
- React-utils
|
|
702
|
+
- ReactCommon/turbomodule/core
|
|
703
|
+
- React-Fabric/scheduler (0.75.2):
|
|
704
|
+
- DoubleConversion
|
|
705
|
+
- fmt (= 9.1.0)
|
|
706
|
+
- glog
|
|
707
|
+
- hermes-engine
|
|
708
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
709
|
+
- RCTRequired
|
|
710
|
+
- RCTTypeSafety
|
|
711
|
+
- React-Core
|
|
712
|
+
- React-cxxreact
|
|
713
|
+
- React-debug
|
|
714
|
+
- React-Fabric/observers/events
|
|
715
|
+
- React-featureflags
|
|
716
|
+
- React-graphics
|
|
717
|
+
- React-jsi
|
|
718
|
+
- React-jsiexecutor
|
|
719
|
+
- React-logger
|
|
720
|
+
- React-performancetimeline
|
|
721
|
+
- React-rendererdebug
|
|
722
|
+
- React-runtimescheduler
|
|
723
|
+
- React-utils
|
|
724
|
+
- ReactCommon/turbomodule/core
|
|
725
|
+
- React-Fabric/telemetry (0.75.2):
|
|
726
|
+
- DoubleConversion
|
|
727
|
+
- fmt (= 9.1.0)
|
|
728
|
+
- glog
|
|
729
|
+
- hermes-engine
|
|
730
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
731
|
+
- RCTRequired
|
|
732
|
+
- RCTTypeSafety
|
|
733
|
+
- React-Core
|
|
734
|
+
- React-cxxreact
|
|
735
|
+
- React-debug
|
|
736
|
+
- React-featureflags
|
|
737
|
+
- React-graphics
|
|
738
|
+
- React-jsi
|
|
739
|
+
- React-jsiexecutor
|
|
740
|
+
- React-logger
|
|
741
|
+
- React-rendererdebug
|
|
742
|
+
- React-runtimescheduler
|
|
743
|
+
- React-utils
|
|
744
|
+
- ReactCommon/turbomodule/core
|
|
745
|
+
- React-Fabric/templateprocessor (0.75.2):
|
|
746
|
+
- DoubleConversion
|
|
747
|
+
- fmt (= 9.1.0)
|
|
748
|
+
- glog
|
|
749
|
+
- hermes-engine
|
|
750
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
751
|
+
- RCTRequired
|
|
752
|
+
- RCTTypeSafety
|
|
753
|
+
- React-Core
|
|
754
|
+
- React-cxxreact
|
|
755
|
+
- React-debug
|
|
756
|
+
- React-featureflags
|
|
757
|
+
- React-graphics
|
|
758
|
+
- React-jsi
|
|
759
|
+
- React-jsiexecutor
|
|
760
|
+
- React-logger
|
|
761
|
+
- React-rendererdebug
|
|
762
|
+
- React-runtimescheduler
|
|
763
|
+
- React-utils
|
|
764
|
+
- ReactCommon/turbomodule/core
|
|
765
|
+
- React-Fabric/uimanager (0.75.2):
|
|
766
|
+
- DoubleConversion
|
|
767
|
+
- fmt (= 9.1.0)
|
|
768
|
+
- glog
|
|
769
|
+
- hermes-engine
|
|
770
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
771
|
+
- RCTRequired
|
|
772
|
+
- RCTTypeSafety
|
|
773
|
+
- React-Core
|
|
774
|
+
- React-cxxreact
|
|
775
|
+
- React-debug
|
|
776
|
+
- React-Fabric/uimanager/consistency (= 0.75.2)
|
|
777
|
+
- React-featureflags
|
|
778
|
+
- React-graphics
|
|
779
|
+
- React-jsi
|
|
780
|
+
- React-jsiexecutor
|
|
781
|
+
- React-logger
|
|
782
|
+
- React-rendererconsistency
|
|
783
|
+
- React-rendererdebug
|
|
784
|
+
- React-runtimescheduler
|
|
785
|
+
- React-utils
|
|
786
|
+
- ReactCommon/turbomodule/core
|
|
787
|
+
- React-Fabric/uimanager/consistency (0.75.2):
|
|
788
|
+
- DoubleConversion
|
|
789
|
+
- fmt (= 9.1.0)
|
|
790
|
+
- glog
|
|
791
|
+
- hermes-engine
|
|
792
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
793
|
+
- RCTRequired
|
|
794
|
+
- RCTTypeSafety
|
|
795
|
+
- React-Core
|
|
796
|
+
- React-cxxreact
|
|
797
|
+
- React-debug
|
|
798
|
+
- React-featureflags
|
|
799
|
+
- React-graphics
|
|
800
|
+
- React-jsi
|
|
801
|
+
- React-jsiexecutor
|
|
802
|
+
- React-logger
|
|
803
|
+
- React-rendererconsistency
|
|
804
|
+
- React-rendererdebug
|
|
805
|
+
- React-runtimescheduler
|
|
806
|
+
- React-utils
|
|
807
|
+
- ReactCommon/turbomodule/core
|
|
808
|
+
- React-FabricComponents (0.75.2):
|
|
809
|
+
- DoubleConversion
|
|
810
|
+
- fmt (= 9.1.0)
|
|
811
|
+
- glog
|
|
812
|
+
- hermes-engine
|
|
813
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
814
|
+
- RCTRequired
|
|
815
|
+
- RCTTypeSafety
|
|
816
|
+
- React-Core
|
|
817
|
+
- React-cxxreact
|
|
818
|
+
- React-debug
|
|
819
|
+
- React-Fabric
|
|
820
|
+
- React-FabricComponents/components (= 0.75.2)
|
|
821
|
+
- React-FabricComponents/textlayoutmanager (= 0.75.2)
|
|
822
|
+
- React-featureflags
|
|
823
|
+
- React-graphics
|
|
824
|
+
- React-jsi
|
|
825
|
+
- React-jsiexecutor
|
|
826
|
+
- React-logger
|
|
827
|
+
- React-rendererdebug
|
|
828
|
+
- React-runtimescheduler
|
|
829
|
+
- React-utils
|
|
830
|
+
- ReactCodegen
|
|
831
|
+
- ReactCommon/turbomodule/core
|
|
832
|
+
- Yoga
|
|
833
|
+
- React-FabricComponents/components (0.75.2):
|
|
834
|
+
- DoubleConversion
|
|
835
|
+
- fmt (= 9.1.0)
|
|
836
|
+
- glog
|
|
837
|
+
- hermes-engine
|
|
838
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
839
|
+
- RCTRequired
|
|
840
|
+
- RCTTypeSafety
|
|
841
|
+
- React-Core
|
|
842
|
+
- React-cxxreact
|
|
843
|
+
- React-debug
|
|
844
|
+
- React-Fabric
|
|
845
|
+
- React-FabricComponents/components/inputaccessory (= 0.75.2)
|
|
846
|
+
- React-FabricComponents/components/iostextinput (= 0.75.2)
|
|
847
|
+
- React-FabricComponents/components/modal (= 0.75.2)
|
|
848
|
+
- React-FabricComponents/components/rncore (= 0.75.2)
|
|
849
|
+
- React-FabricComponents/components/safeareaview (= 0.75.2)
|
|
850
|
+
- React-FabricComponents/components/scrollview (= 0.75.2)
|
|
851
|
+
- React-FabricComponents/components/text (= 0.75.2)
|
|
852
|
+
- React-FabricComponents/components/textinput (= 0.75.2)
|
|
853
|
+
- React-FabricComponents/components/unimplementedview (= 0.75.2)
|
|
854
|
+
- React-featureflags
|
|
855
|
+
- React-graphics
|
|
856
|
+
- React-jsi
|
|
857
|
+
- React-jsiexecutor
|
|
858
|
+
- React-logger
|
|
859
|
+
- React-rendererdebug
|
|
860
|
+
- React-runtimescheduler
|
|
861
|
+
- React-utils
|
|
862
|
+
- ReactCodegen
|
|
863
|
+
- ReactCommon/turbomodule/core
|
|
864
|
+
- Yoga
|
|
865
|
+
- React-FabricComponents/components/inputaccessory (0.75.2):
|
|
866
|
+
- DoubleConversion
|
|
867
|
+
- fmt (= 9.1.0)
|
|
868
|
+
- glog
|
|
869
|
+
- hermes-engine
|
|
870
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
871
|
+
- RCTRequired
|
|
872
|
+
- RCTTypeSafety
|
|
873
|
+
- React-Core
|
|
874
|
+
- React-cxxreact
|
|
875
|
+
- React-debug
|
|
876
|
+
- React-Fabric
|
|
877
|
+
- React-featureflags
|
|
878
|
+
- React-graphics
|
|
879
|
+
- React-jsi
|
|
880
|
+
- React-jsiexecutor
|
|
881
|
+
- React-logger
|
|
882
|
+
- React-rendererdebug
|
|
883
|
+
- React-runtimescheduler
|
|
884
|
+
- React-utils
|
|
885
|
+
- ReactCodegen
|
|
886
|
+
- ReactCommon/turbomodule/core
|
|
887
|
+
- Yoga
|
|
888
|
+
- React-FabricComponents/components/iostextinput (0.75.2):
|
|
889
|
+
- DoubleConversion
|
|
890
|
+
- fmt (= 9.1.0)
|
|
891
|
+
- glog
|
|
892
|
+
- hermes-engine
|
|
893
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
894
|
+
- RCTRequired
|
|
895
|
+
- RCTTypeSafety
|
|
896
|
+
- React-Core
|
|
897
|
+
- React-cxxreact
|
|
898
|
+
- React-debug
|
|
899
|
+
- React-Fabric
|
|
900
|
+
- React-featureflags
|
|
901
|
+
- React-graphics
|
|
902
|
+
- React-jsi
|
|
903
|
+
- React-jsiexecutor
|
|
904
|
+
- React-logger
|
|
905
|
+
- React-rendererdebug
|
|
906
|
+
- React-runtimescheduler
|
|
907
|
+
- React-utils
|
|
908
|
+
- ReactCodegen
|
|
909
|
+
- ReactCommon/turbomodule/core
|
|
910
|
+
- Yoga
|
|
911
|
+
- React-FabricComponents/components/modal (0.75.2):
|
|
912
|
+
- DoubleConversion
|
|
913
|
+
- fmt (= 9.1.0)
|
|
914
|
+
- glog
|
|
915
|
+
- hermes-engine
|
|
916
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
917
|
+
- RCTRequired
|
|
918
|
+
- RCTTypeSafety
|
|
919
|
+
- React-Core
|
|
920
|
+
- React-cxxreact
|
|
921
|
+
- React-debug
|
|
922
|
+
- React-Fabric
|
|
923
|
+
- React-featureflags
|
|
924
|
+
- React-graphics
|
|
925
|
+
- React-jsi
|
|
926
|
+
- React-jsiexecutor
|
|
927
|
+
- React-logger
|
|
928
|
+
- React-rendererdebug
|
|
929
|
+
- React-runtimescheduler
|
|
930
|
+
- React-utils
|
|
931
|
+
- ReactCodegen
|
|
932
|
+
- ReactCommon/turbomodule/core
|
|
933
|
+
- Yoga
|
|
934
|
+
- React-FabricComponents/components/rncore (0.75.2):
|
|
935
|
+
- DoubleConversion
|
|
936
|
+
- fmt (= 9.1.0)
|
|
937
|
+
- glog
|
|
938
|
+
- hermes-engine
|
|
939
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
940
|
+
- RCTRequired
|
|
941
|
+
- RCTTypeSafety
|
|
942
|
+
- React-Core
|
|
943
|
+
- React-cxxreact
|
|
944
|
+
- React-debug
|
|
945
|
+
- React-Fabric
|
|
946
|
+
- React-featureflags
|
|
947
|
+
- React-graphics
|
|
948
|
+
- React-jsi
|
|
949
|
+
- React-jsiexecutor
|
|
950
|
+
- React-logger
|
|
951
|
+
- React-rendererdebug
|
|
952
|
+
- React-runtimescheduler
|
|
953
|
+
- React-utils
|
|
954
|
+
- ReactCodegen
|
|
955
|
+
- ReactCommon/turbomodule/core
|
|
956
|
+
- Yoga
|
|
957
|
+
- React-FabricComponents/components/safeareaview (0.75.2):
|
|
958
|
+
- DoubleConversion
|
|
959
|
+
- fmt (= 9.1.0)
|
|
960
|
+
- glog
|
|
961
|
+
- hermes-engine
|
|
962
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
963
|
+
- RCTRequired
|
|
964
|
+
- RCTTypeSafety
|
|
965
|
+
- React-Core
|
|
966
|
+
- React-cxxreact
|
|
967
|
+
- React-debug
|
|
968
|
+
- React-Fabric
|
|
969
|
+
- React-featureflags
|
|
970
|
+
- React-graphics
|
|
971
|
+
- React-jsi
|
|
972
|
+
- React-jsiexecutor
|
|
973
|
+
- React-logger
|
|
974
|
+
- React-rendererdebug
|
|
975
|
+
- React-runtimescheduler
|
|
976
|
+
- React-utils
|
|
977
|
+
- ReactCodegen
|
|
978
|
+
- ReactCommon/turbomodule/core
|
|
979
|
+
- Yoga
|
|
980
|
+
- React-FabricComponents/components/scrollview (0.75.2):
|
|
981
|
+
- DoubleConversion
|
|
982
|
+
- fmt (= 9.1.0)
|
|
983
|
+
- glog
|
|
984
|
+
- hermes-engine
|
|
985
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
986
|
+
- RCTRequired
|
|
987
|
+
- RCTTypeSafety
|
|
988
|
+
- React-Core
|
|
989
|
+
- React-cxxreact
|
|
990
|
+
- React-debug
|
|
991
|
+
- React-Fabric
|
|
992
|
+
- React-featureflags
|
|
993
|
+
- React-graphics
|
|
994
|
+
- React-jsi
|
|
995
|
+
- React-jsiexecutor
|
|
996
|
+
- React-logger
|
|
997
|
+
- React-rendererdebug
|
|
998
|
+
- React-runtimescheduler
|
|
999
|
+
- React-utils
|
|
1000
|
+
- ReactCodegen
|
|
1001
|
+
- ReactCommon/turbomodule/core
|
|
1002
|
+
- Yoga
|
|
1003
|
+
- React-FabricComponents/components/text (0.75.2):
|
|
1004
|
+
- DoubleConversion
|
|
1005
|
+
- fmt (= 9.1.0)
|
|
1006
|
+
- glog
|
|
1007
|
+
- hermes-engine
|
|
1008
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1009
|
+
- RCTRequired
|
|
1010
|
+
- RCTTypeSafety
|
|
1011
|
+
- React-Core
|
|
1012
|
+
- React-cxxreact
|
|
1013
|
+
- React-debug
|
|
1014
|
+
- React-Fabric
|
|
1015
|
+
- React-featureflags
|
|
1016
|
+
- React-graphics
|
|
1017
|
+
- React-jsi
|
|
1018
|
+
- React-jsiexecutor
|
|
1019
|
+
- React-logger
|
|
1020
|
+
- React-rendererdebug
|
|
1021
|
+
- React-runtimescheduler
|
|
1022
|
+
- React-utils
|
|
1023
|
+
- ReactCodegen
|
|
1024
|
+
- ReactCommon/turbomodule/core
|
|
1025
|
+
- Yoga
|
|
1026
|
+
- React-FabricComponents/components/textinput (0.75.2):
|
|
1027
|
+
- DoubleConversion
|
|
1028
|
+
- fmt (= 9.1.0)
|
|
1029
|
+
- glog
|
|
1030
|
+
- hermes-engine
|
|
1031
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1032
|
+
- RCTRequired
|
|
1033
|
+
- RCTTypeSafety
|
|
1034
|
+
- React-Core
|
|
1035
|
+
- React-cxxreact
|
|
1036
|
+
- React-debug
|
|
1037
|
+
- React-Fabric
|
|
1038
|
+
- React-featureflags
|
|
1039
|
+
- React-graphics
|
|
1040
|
+
- React-jsi
|
|
1041
|
+
- React-jsiexecutor
|
|
1042
|
+
- React-logger
|
|
1043
|
+
- React-rendererdebug
|
|
1044
|
+
- React-runtimescheduler
|
|
1045
|
+
- React-utils
|
|
1046
|
+
- ReactCodegen
|
|
1047
|
+
- ReactCommon/turbomodule/core
|
|
1048
|
+
- Yoga
|
|
1049
|
+
- React-FabricComponents/components/unimplementedview (0.75.2):
|
|
1050
|
+
- DoubleConversion
|
|
1051
|
+
- fmt (= 9.1.0)
|
|
1052
|
+
- glog
|
|
1053
|
+
- hermes-engine
|
|
1054
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1055
|
+
- RCTRequired
|
|
1056
|
+
- RCTTypeSafety
|
|
1057
|
+
- React-Core
|
|
1058
|
+
- React-cxxreact
|
|
1059
|
+
- React-debug
|
|
1060
|
+
- React-Fabric
|
|
1061
|
+
- React-featureflags
|
|
1062
|
+
- React-graphics
|
|
1063
|
+
- React-jsi
|
|
1064
|
+
- React-jsiexecutor
|
|
1065
|
+
- React-logger
|
|
1066
|
+
- React-rendererdebug
|
|
1067
|
+
- React-runtimescheduler
|
|
1068
|
+
- React-utils
|
|
1069
|
+
- ReactCodegen
|
|
1070
|
+
- ReactCommon/turbomodule/core
|
|
1071
|
+
- Yoga
|
|
1072
|
+
- React-FabricComponents/textlayoutmanager (0.75.2):
|
|
1073
|
+
- DoubleConversion
|
|
1074
|
+
- fmt (= 9.1.0)
|
|
1075
|
+
- glog
|
|
1076
|
+
- hermes-engine
|
|
1077
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1078
|
+
- RCTRequired
|
|
1079
|
+
- RCTTypeSafety
|
|
1080
|
+
- React-Core
|
|
1081
|
+
- React-cxxreact
|
|
1082
|
+
- React-debug
|
|
1083
|
+
- React-Fabric
|
|
1084
|
+
- React-featureflags
|
|
1085
|
+
- React-graphics
|
|
1086
|
+
- React-jsi
|
|
1087
|
+
- React-jsiexecutor
|
|
1088
|
+
- React-logger
|
|
1089
|
+
- React-rendererdebug
|
|
1090
|
+
- React-runtimescheduler
|
|
1091
|
+
- React-utils
|
|
1092
|
+
- ReactCodegen
|
|
1093
|
+
- ReactCommon/turbomodule/core
|
|
1094
|
+
- Yoga
|
|
1095
|
+
- React-FabricImage (0.75.2):
|
|
1096
|
+
- DoubleConversion
|
|
1097
|
+
- fmt (= 9.1.0)
|
|
1098
|
+
- glog
|
|
1099
|
+
- hermes-engine
|
|
1100
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1101
|
+
- RCTRequired (= 0.75.2)
|
|
1102
|
+
- RCTTypeSafety (= 0.75.2)
|
|
1103
|
+
- React-Fabric
|
|
1104
|
+
- React-graphics
|
|
1105
|
+
- React-ImageManager
|
|
1106
|
+
- React-jsi
|
|
1107
|
+
- React-jsiexecutor (= 0.75.2)
|
|
1108
|
+
- React-logger
|
|
1109
|
+
- React-rendererdebug
|
|
1110
|
+
- React-utils
|
|
1111
|
+
- ReactCommon
|
|
1112
|
+
- Yoga
|
|
1113
|
+
- React-featureflags (0.75.2)
|
|
1114
|
+
- React-featureflagsnativemodule (0.75.2):
|
|
1115
|
+
- DoubleConversion
|
|
1116
|
+
- glog
|
|
1117
|
+
- hermes-engine
|
|
1118
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1119
|
+
- RCTRequired
|
|
1120
|
+
- RCTTypeSafety
|
|
1121
|
+
- React-Core
|
|
1122
|
+
- React-debug
|
|
1123
|
+
- React-Fabric
|
|
1124
|
+
- React-featureflags
|
|
1125
|
+
- React-graphics
|
|
1126
|
+
- React-ImageManager
|
|
1127
|
+
- React-NativeModulesApple
|
|
1128
|
+
- React-RCTFabric
|
|
1129
|
+
- React-rendererdebug
|
|
1130
|
+
- React-utils
|
|
1131
|
+
- ReactCodegen
|
|
1132
|
+
- ReactCommon/turbomodule/bridging
|
|
1133
|
+
- ReactCommon/turbomodule/core
|
|
1134
|
+
- Yoga
|
|
1135
|
+
- React-graphics (0.75.2):
|
|
1136
|
+
- DoubleConversion
|
|
1137
|
+
- fmt (= 9.1.0)
|
|
1138
|
+
- glog
|
|
1139
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1140
|
+
- React-jsi
|
|
1141
|
+
- React-jsiexecutor
|
|
1142
|
+
- React-utils
|
|
1143
|
+
- React-hermes (0.75.2):
|
|
1144
|
+
- DoubleConversion
|
|
1145
|
+
- fmt (= 9.1.0)
|
|
1146
|
+
- glog
|
|
1147
|
+
- hermes-engine
|
|
1148
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1149
|
+
- React-cxxreact (= 0.75.2)
|
|
1150
|
+
- React-jsi
|
|
1151
|
+
- React-jsiexecutor (= 0.75.2)
|
|
1152
|
+
- React-jsinspector
|
|
1153
|
+
- React-perflogger (= 0.75.2)
|
|
1154
|
+
- React-runtimeexecutor
|
|
1155
|
+
- React-idlecallbacksnativemodule (0.75.2):
|
|
1156
|
+
- DoubleConversion
|
|
1157
|
+
- glog
|
|
1158
|
+
- hermes-engine
|
|
1159
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1160
|
+
- RCTRequired
|
|
1161
|
+
- RCTTypeSafety
|
|
1162
|
+
- React-Core
|
|
1163
|
+
- React-debug
|
|
1164
|
+
- React-Fabric
|
|
1165
|
+
- React-featureflags
|
|
1166
|
+
- React-graphics
|
|
1167
|
+
- React-ImageManager
|
|
1168
|
+
- React-NativeModulesApple
|
|
1169
|
+
- React-RCTFabric
|
|
1170
|
+
- React-rendererdebug
|
|
1171
|
+
- React-runtimescheduler
|
|
1172
|
+
- React-utils
|
|
1173
|
+
- ReactCodegen
|
|
1174
|
+
- ReactCommon/turbomodule/bridging
|
|
1175
|
+
- ReactCommon/turbomodule/core
|
|
1176
|
+
- Yoga
|
|
1177
|
+
- React-ImageManager (0.75.2):
|
|
1178
|
+
- glog
|
|
1179
|
+
- RCT-Folly/Fabric
|
|
1180
|
+
- React-Core/Default
|
|
1181
|
+
- React-debug
|
|
1182
|
+
- React-Fabric
|
|
1183
|
+
- React-graphics
|
|
1184
|
+
- React-rendererdebug
|
|
1185
|
+
- React-utils
|
|
1186
|
+
- React-jserrorhandler (0.75.2):
|
|
1187
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1188
|
+
- React-debug
|
|
1189
|
+
- React-jsi
|
|
1190
|
+
- React-jsi (0.75.2):
|
|
1191
|
+
- boost
|
|
1192
|
+
- DoubleConversion
|
|
1193
|
+
- fmt (= 9.1.0)
|
|
1194
|
+
- glog
|
|
1195
|
+
- hermes-engine
|
|
1196
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1197
|
+
- React-jsiexecutor (0.75.2):
|
|
1198
|
+
- DoubleConversion
|
|
1199
|
+
- fmt (= 9.1.0)
|
|
1200
|
+
- glog
|
|
1201
|
+
- hermes-engine
|
|
1202
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1203
|
+
- React-cxxreact (= 0.75.2)
|
|
1204
|
+
- React-jsi (= 0.75.2)
|
|
1205
|
+
- React-jsinspector
|
|
1206
|
+
- React-perflogger (= 0.75.2)
|
|
1207
|
+
- React-jsinspector (0.75.2):
|
|
1208
|
+
- DoubleConversion
|
|
1209
|
+
- glog
|
|
1210
|
+
- hermes-engine
|
|
1211
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1212
|
+
- React-featureflags
|
|
1213
|
+
- React-jsi
|
|
1214
|
+
- React-runtimeexecutor (= 0.75.2)
|
|
1215
|
+
- React-jsitracing (0.75.2):
|
|
1216
|
+
- React-jsi
|
|
1217
|
+
- React-logger (0.75.2):
|
|
1218
|
+
- glog
|
|
1219
|
+
- React-Mapbuffer (0.75.2):
|
|
1220
|
+
- glog
|
|
1221
|
+
- React-debug
|
|
1222
|
+
- React-microtasksnativemodule (0.75.2):
|
|
1223
|
+
- DoubleConversion
|
|
1224
|
+
- glog
|
|
1225
|
+
- hermes-engine
|
|
1226
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1227
|
+
- RCTRequired
|
|
1228
|
+
- RCTTypeSafety
|
|
1229
|
+
- React-Core
|
|
1230
|
+
- React-debug
|
|
1231
|
+
- React-Fabric
|
|
1232
|
+
- React-featureflags
|
|
1233
|
+
- React-graphics
|
|
1234
|
+
- React-ImageManager
|
|
1235
|
+
- React-NativeModulesApple
|
|
1236
|
+
- React-RCTFabric
|
|
1237
|
+
- React-rendererdebug
|
|
1238
|
+
- React-utils
|
|
1239
|
+
- ReactCodegen
|
|
1240
|
+
- ReactCommon/turbomodule/bridging
|
|
1241
|
+
- ReactCommon/turbomodule/core
|
|
1242
|
+
- Yoga
|
|
1243
|
+
- react-native-image-picker (7.1.2):
|
|
1244
|
+
- DoubleConversion
|
|
1245
|
+
- glog
|
|
1246
|
+
- hermes-engine
|
|
1247
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1248
|
+
- RCTRequired
|
|
1249
|
+
- RCTTypeSafety
|
|
1250
|
+
- React-Core
|
|
1251
|
+
- React-debug
|
|
1252
|
+
- React-Fabric
|
|
1253
|
+
- React-featureflags
|
|
1254
|
+
- React-graphics
|
|
1255
|
+
- React-ImageManager
|
|
1256
|
+
- React-NativeModulesApple
|
|
1257
|
+
- React-RCTFabric
|
|
1258
|
+
- React-rendererdebug
|
|
1259
|
+
- React-utils
|
|
1260
|
+
- ReactCodegen
|
|
1261
|
+
- ReactCommon/turbomodule/bridging
|
|
1262
|
+
- ReactCommon/turbomodule/core
|
|
1263
|
+
- Yoga
|
|
1264
|
+
- React-nativeconfig (0.75.2)
|
|
1265
|
+
- React-NativeModulesApple (0.75.2):
|
|
1266
|
+
- glog
|
|
1267
|
+
- hermes-engine
|
|
1268
|
+
- React-callinvoker
|
|
1269
|
+
- React-Core
|
|
1270
|
+
- React-cxxreact
|
|
1271
|
+
- React-jsi
|
|
1272
|
+
- React-jsinspector
|
|
1273
|
+
- React-runtimeexecutor
|
|
1274
|
+
- ReactCommon/turbomodule/bridging
|
|
1275
|
+
- ReactCommon/turbomodule/core
|
|
1276
|
+
- React-perflogger (0.75.2)
|
|
1277
|
+
- React-performancetimeline (0.75.2):
|
|
1278
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1279
|
+
- React-cxxreact
|
|
1280
|
+
- React-RCTActionSheet (0.75.2):
|
|
1281
|
+
- React-Core/RCTActionSheetHeaders (= 0.75.2)
|
|
1282
|
+
- React-RCTAnimation (0.75.2):
|
|
1283
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1284
|
+
- RCTTypeSafety
|
|
1285
|
+
- React-Core/RCTAnimationHeaders
|
|
1286
|
+
- React-jsi
|
|
1287
|
+
- React-NativeModulesApple
|
|
1288
|
+
- ReactCodegen
|
|
1289
|
+
- ReactCommon
|
|
1290
|
+
- React-RCTAppDelegate (0.75.2):
|
|
1291
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1292
|
+
- RCTRequired
|
|
1293
|
+
- RCTTypeSafety
|
|
1294
|
+
- React-Core
|
|
1295
|
+
- React-CoreModules
|
|
1296
|
+
- React-debug
|
|
1297
|
+
- React-defaultsnativemodule
|
|
1298
|
+
- React-Fabric
|
|
1299
|
+
- React-featureflags
|
|
1300
|
+
- React-graphics
|
|
1301
|
+
- React-hermes
|
|
1302
|
+
- React-nativeconfig
|
|
1303
|
+
- React-NativeModulesApple
|
|
1304
|
+
- React-RCTFabric
|
|
1305
|
+
- React-RCTImage
|
|
1306
|
+
- React-RCTNetwork
|
|
1307
|
+
- React-rendererdebug
|
|
1308
|
+
- React-RuntimeApple
|
|
1309
|
+
- React-RuntimeCore
|
|
1310
|
+
- React-RuntimeHermes
|
|
1311
|
+
- React-runtimescheduler
|
|
1312
|
+
- React-utils
|
|
1313
|
+
- ReactCodegen
|
|
1314
|
+
- ReactCommon
|
|
1315
|
+
- React-RCTBlob (0.75.2):
|
|
1316
|
+
- DoubleConversion
|
|
1317
|
+
- fmt (= 9.1.0)
|
|
1318
|
+
- hermes-engine
|
|
1319
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1320
|
+
- React-Core/RCTBlobHeaders
|
|
1321
|
+
- React-Core/RCTWebSocket
|
|
1322
|
+
- React-jsi
|
|
1323
|
+
- React-jsinspector
|
|
1324
|
+
- React-NativeModulesApple
|
|
1325
|
+
- React-RCTNetwork
|
|
1326
|
+
- ReactCodegen
|
|
1327
|
+
- ReactCommon
|
|
1328
|
+
- React-RCTFabric (0.75.2):
|
|
1329
|
+
- glog
|
|
1330
|
+
- hermes-engine
|
|
1331
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1332
|
+
- React-Core
|
|
1333
|
+
- React-debug
|
|
1334
|
+
- React-Fabric
|
|
1335
|
+
- React-FabricComponents
|
|
1336
|
+
- React-FabricImage
|
|
1337
|
+
- React-featureflags
|
|
1338
|
+
- React-graphics
|
|
1339
|
+
- React-ImageManager
|
|
1340
|
+
- React-jsi
|
|
1341
|
+
- React-jsinspector
|
|
1342
|
+
- React-nativeconfig
|
|
1343
|
+
- React-performancetimeline
|
|
1344
|
+
- React-RCTImage
|
|
1345
|
+
- React-RCTText
|
|
1346
|
+
- React-rendererconsistency
|
|
1347
|
+
- React-rendererdebug
|
|
1348
|
+
- React-runtimescheduler
|
|
1349
|
+
- React-utils
|
|
1350
|
+
- Yoga
|
|
1351
|
+
- React-RCTImage (0.75.2):
|
|
1352
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1353
|
+
- RCTTypeSafety
|
|
1354
|
+
- React-Core/RCTImageHeaders
|
|
1355
|
+
- React-jsi
|
|
1356
|
+
- React-NativeModulesApple
|
|
1357
|
+
- React-RCTNetwork
|
|
1358
|
+
- ReactCodegen
|
|
1359
|
+
- ReactCommon
|
|
1360
|
+
- React-RCTLinking (0.75.2):
|
|
1361
|
+
- React-Core/RCTLinkingHeaders (= 0.75.2)
|
|
1362
|
+
- React-jsi (= 0.75.2)
|
|
1363
|
+
- React-NativeModulesApple
|
|
1364
|
+
- ReactCodegen
|
|
1365
|
+
- ReactCommon
|
|
1366
|
+
- ReactCommon/turbomodule/core (= 0.75.2)
|
|
1367
|
+
- React-RCTNetwork (0.75.2):
|
|
1368
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1369
|
+
- RCTTypeSafety
|
|
1370
|
+
- React-Core/RCTNetworkHeaders
|
|
1371
|
+
- React-jsi
|
|
1372
|
+
- React-NativeModulesApple
|
|
1373
|
+
- ReactCodegen
|
|
1374
|
+
- ReactCommon
|
|
1375
|
+
- React-RCTSettings (0.75.2):
|
|
1376
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1377
|
+
- RCTTypeSafety
|
|
1378
|
+
- React-Core/RCTSettingsHeaders
|
|
1379
|
+
- React-jsi
|
|
1380
|
+
- React-NativeModulesApple
|
|
1381
|
+
- ReactCodegen
|
|
1382
|
+
- ReactCommon
|
|
1383
|
+
- React-RCTText (0.75.2):
|
|
1384
|
+
- React-Core/RCTTextHeaders (= 0.75.2)
|
|
1385
|
+
- Yoga
|
|
1386
|
+
- React-RCTVibration (0.75.2):
|
|
1387
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1388
|
+
- React-Core/RCTVibrationHeaders
|
|
1389
|
+
- React-jsi
|
|
1390
|
+
- React-NativeModulesApple
|
|
1391
|
+
- ReactCodegen
|
|
1392
|
+
- ReactCommon
|
|
1393
|
+
- React-rendererconsistency (0.75.2)
|
|
1394
|
+
- React-rendererdebug (0.75.2):
|
|
1395
|
+
- DoubleConversion
|
|
1396
|
+
- fmt (= 9.1.0)
|
|
1397
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1398
|
+
- React-debug
|
|
1399
|
+
- React-rncore (0.75.2)
|
|
1400
|
+
- React-RuntimeApple (0.75.2):
|
|
1401
|
+
- hermes-engine
|
|
1402
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1403
|
+
- React-callinvoker
|
|
1404
|
+
- React-Core/Default
|
|
1405
|
+
- React-CoreModules
|
|
1406
|
+
- React-cxxreact
|
|
1407
|
+
- React-jserrorhandler
|
|
1408
|
+
- React-jsi
|
|
1409
|
+
- React-jsiexecutor
|
|
1410
|
+
- React-jsinspector
|
|
1411
|
+
- React-Mapbuffer
|
|
1412
|
+
- React-NativeModulesApple
|
|
1413
|
+
- React-RCTFabric
|
|
1414
|
+
- React-RuntimeCore
|
|
1415
|
+
- React-runtimeexecutor
|
|
1416
|
+
- React-RuntimeHermes
|
|
1417
|
+
- React-runtimescheduler
|
|
1418
|
+
- React-utils
|
|
1419
|
+
- React-RuntimeCore (0.75.2):
|
|
1420
|
+
- glog
|
|
1421
|
+
- hermes-engine
|
|
1422
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1423
|
+
- React-cxxreact
|
|
1424
|
+
- React-featureflags
|
|
1425
|
+
- React-jserrorhandler
|
|
1426
|
+
- React-jsi
|
|
1427
|
+
- React-jsiexecutor
|
|
1428
|
+
- React-jsinspector
|
|
1429
|
+
- React-runtimeexecutor
|
|
1430
|
+
- React-runtimescheduler
|
|
1431
|
+
- React-utils
|
|
1432
|
+
- React-runtimeexecutor (0.75.2):
|
|
1433
|
+
- React-jsi (= 0.75.2)
|
|
1434
|
+
- React-RuntimeHermes (0.75.2):
|
|
1435
|
+
- hermes-engine
|
|
1436
|
+
- RCT-Folly/Fabric (= 2024.01.01.00)
|
|
1437
|
+
- React-featureflags
|
|
1438
|
+
- React-hermes
|
|
1439
|
+
- React-jsi
|
|
1440
|
+
- React-jsinspector
|
|
1441
|
+
- React-jsitracing
|
|
1442
|
+
- React-nativeconfig
|
|
1443
|
+
- React-RuntimeCore
|
|
1444
|
+
- React-utils
|
|
1445
|
+
- React-runtimescheduler (0.75.2):
|
|
1446
|
+
- glog
|
|
1447
|
+
- hermes-engine
|
|
1448
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1449
|
+
- React-callinvoker
|
|
1450
|
+
- React-cxxreact
|
|
1451
|
+
- React-debug
|
|
1452
|
+
- React-featureflags
|
|
1453
|
+
- React-jsi
|
|
1454
|
+
- React-rendererconsistency
|
|
1455
|
+
- React-rendererdebug
|
|
1456
|
+
- React-runtimeexecutor
|
|
1457
|
+
- React-utils
|
|
1458
|
+
- React-utils (0.75.2):
|
|
1459
|
+
- glog
|
|
1460
|
+
- hermes-engine
|
|
1461
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1462
|
+
- React-debug
|
|
1463
|
+
- React-jsi (= 0.75.2)
|
|
1464
|
+
- ReactCodegen (0.75.2):
|
|
1465
|
+
- DoubleConversion
|
|
1466
|
+
- glog
|
|
1467
|
+
- hermes-engine
|
|
1468
|
+
- RCT-Folly
|
|
1469
|
+
- RCTRequired
|
|
1470
|
+
- RCTTypeSafety
|
|
1471
|
+
- React-Core
|
|
1472
|
+
- React-debug
|
|
1473
|
+
- React-Fabric
|
|
1474
|
+
- React-FabricImage
|
|
1475
|
+
- React-featureflags
|
|
1476
|
+
- React-graphics
|
|
1477
|
+
- React-jsi
|
|
1478
|
+
- React-jsiexecutor
|
|
1479
|
+
- React-NativeModulesApple
|
|
1480
|
+
- React-rendererdebug
|
|
1481
|
+
- React-utils
|
|
1482
|
+
- ReactCommon/turbomodule/bridging
|
|
1483
|
+
- ReactCommon/turbomodule/core
|
|
1484
|
+
- ReactCommon (0.75.2):
|
|
1485
|
+
- ReactCommon/turbomodule (= 0.75.2)
|
|
1486
|
+
- ReactCommon/turbomodule (0.75.2):
|
|
1487
|
+
- DoubleConversion
|
|
1488
|
+
- fmt (= 9.1.0)
|
|
1489
|
+
- glog
|
|
1490
|
+
- hermes-engine
|
|
1491
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1492
|
+
- React-callinvoker (= 0.75.2)
|
|
1493
|
+
- React-cxxreact (= 0.75.2)
|
|
1494
|
+
- React-jsi (= 0.75.2)
|
|
1495
|
+
- React-logger (= 0.75.2)
|
|
1496
|
+
- React-perflogger (= 0.75.2)
|
|
1497
|
+
- ReactCommon/turbomodule/bridging (= 0.75.2)
|
|
1498
|
+
- ReactCommon/turbomodule/core (= 0.75.2)
|
|
1499
|
+
- ReactCommon/turbomodule/bridging (0.75.2):
|
|
1500
|
+
- DoubleConversion
|
|
1501
|
+
- fmt (= 9.1.0)
|
|
1502
|
+
- glog
|
|
1503
|
+
- hermes-engine
|
|
1504
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1505
|
+
- React-callinvoker (= 0.75.2)
|
|
1506
|
+
- React-cxxreact (= 0.75.2)
|
|
1507
|
+
- React-jsi (= 0.75.2)
|
|
1508
|
+
- React-logger (= 0.75.2)
|
|
1509
|
+
- React-perflogger (= 0.75.2)
|
|
1510
|
+
- ReactCommon/turbomodule/core (0.75.2):
|
|
1511
|
+
- DoubleConversion
|
|
1512
|
+
- fmt (= 9.1.0)
|
|
1513
|
+
- glog
|
|
1514
|
+
- hermes-engine
|
|
1515
|
+
- RCT-Folly (= 2024.01.01.00)
|
|
1516
|
+
- React-callinvoker (= 0.75.2)
|
|
1517
|
+
- React-cxxreact (= 0.75.2)
|
|
1518
|
+
- React-debug (= 0.75.2)
|
|
1519
|
+
- React-featureflags (= 0.75.2)
|
|
1520
|
+
- React-jsi (= 0.75.2)
|
|
1521
|
+
- React-logger (= 0.75.2)
|
|
1522
|
+
- React-perflogger (= 0.75.2)
|
|
1523
|
+
- React-utils (= 0.75.2)
|
|
1524
|
+
- RegulaCommon (7.3.683)
|
|
1525
|
+
- RNFaceSDK (6.2.4):
|
|
1526
|
+
- FaceSDK (= 6.2.1999)
|
|
1527
|
+
- React
|
|
1528
|
+
- RNFaceCore (6.2.1):
|
|
1529
|
+
- FaceCoreBasic (= 6.2.783)
|
|
1530
|
+
- React
|
|
1531
|
+
- RNFS (2.20.0):
|
|
1532
|
+
- React-Core
|
|
1533
|
+
- SocketRocket (0.7.0)
|
|
1534
|
+
- Yoga (0.0.0)
|
|
1535
|
+
|
|
1536
|
+
DEPENDENCIES:
|
|
1537
|
+
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
1538
|
+
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
1539
|
+
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
1540
|
+
- fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
|
|
1541
|
+
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
1542
|
+
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
|
|
1543
|
+
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
1544
|
+
- RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
1545
|
+
- RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
|
|
1546
|
+
- RCTRequired (from `../node_modules/react-native/Libraries/Required`)
|
|
1547
|
+
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
1548
|
+
- React (from `../node_modules/react-native/`)
|
|
1549
|
+
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
1550
|
+
- React-Core (from `../node_modules/react-native/`)
|
|
1551
|
+
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
1552
|
+
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
1553
|
+
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
1554
|
+
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
|
|
1555
|
+
- React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
|
|
1556
|
+
- React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
|
|
1557
|
+
- React-Fabric (from `../node_modules/react-native/ReactCommon`)
|
|
1558
|
+
- React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
|
|
1559
|
+
- React-FabricImage (from `../node_modules/react-native/ReactCommon`)
|
|
1560
|
+
- React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
|
|
1561
|
+
- React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
|
|
1562
|
+
- React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
|
|
1563
|
+
- React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
|
|
1564
|
+
- React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
|
|
1565
|
+
- React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
|
|
1566
|
+
- React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
|
|
1567
|
+
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
1568
|
+
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
1569
|
+
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
|
|
1570
|
+
- React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
|
|
1571
|
+
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
1572
|
+
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
|
|
1573
|
+
- React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
|
|
1574
|
+
- react-native-image-picker (from `../node_modules/react-native-image-picker`)
|
|
1575
|
+
- React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
|
|
1576
|
+
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
|
1577
|
+
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
1578
|
+
- React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
|
|
1579
|
+
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
1580
|
+
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
1581
|
+
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
|
|
1582
|
+
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
1583
|
+
- React-RCTFabric (from `../node_modules/react-native/React`)
|
|
1584
|
+
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
1585
|
+
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
1586
|
+
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
1587
|
+
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
1588
|
+
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
1589
|
+
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
1590
|
+
- React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
|
|
1591
|
+
- React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
|
|
1592
|
+
- React-rncore (from `../node_modules/react-native/ReactCommon`)
|
|
1593
|
+
- React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
|
|
1594
|
+
- React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
|
|
1595
|
+
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
1596
|
+
- React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
|
|
1597
|
+
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
|
1598
|
+
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
|
1599
|
+
- ReactCodegen (from `build/generated/ios`)
|
|
1600
|
+
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
1601
|
+
- "RNFaceSDK (from `../node_modules/@regulaforensics/face-sdk`)"
|
|
1602
|
+
- "RNFaceCore (from `../node_modules/@regulaforensics/react-native-face-core-basic`)"
|
|
1603
|
+
- RNFS (from `../node_modules/react-native-fs`)
|
|
1604
|
+
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
1605
|
+
|
|
1606
|
+
SPEC REPOS:
|
|
1607
|
+
trunk:
|
|
1608
|
+
- FaceCoreBasic
|
|
1609
|
+
- FaceSDK
|
|
1610
|
+
- RegulaCommon
|
|
1611
|
+
- SocketRocket
|
|
1612
|
+
|
|
1613
|
+
EXTERNAL SOURCES:
|
|
1614
|
+
boost:
|
|
1615
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
1616
|
+
DoubleConversion:
|
|
1617
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
1618
|
+
FBLazyVector:
|
|
1619
|
+
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
1620
|
+
fmt:
|
|
1621
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
|
|
1622
|
+
glog:
|
|
1623
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
1624
|
+
hermes-engine:
|
|
1625
|
+
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
|
|
1626
|
+
:tag: hermes-2024-08-15-RNv0.75.1-4b3bf912cc0f705b51b71ce1a5b8bd79b93a451b
|
|
1627
|
+
RCT-Folly:
|
|
1628
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
1629
|
+
RCTDeprecation:
|
|
1630
|
+
:path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
|
|
1631
|
+
RCTRequired:
|
|
1632
|
+
:path: "../node_modules/react-native/Libraries/Required"
|
|
1633
|
+
RCTTypeSafety:
|
|
1634
|
+
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
1635
|
+
React:
|
|
1636
|
+
:path: "../node_modules/react-native/"
|
|
1637
|
+
React-callinvoker:
|
|
1638
|
+
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
1639
|
+
React-Core:
|
|
1640
|
+
:path: "../node_modules/react-native/"
|
|
1641
|
+
React-CoreModules:
|
|
1642
|
+
:path: "../node_modules/react-native/React/CoreModules"
|
|
1643
|
+
React-cxxreact:
|
|
1644
|
+
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
1645
|
+
React-debug:
|
|
1646
|
+
:path: "../node_modules/react-native/ReactCommon/react/debug"
|
|
1647
|
+
React-defaultsnativemodule:
|
|
1648
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
|
|
1649
|
+
React-domnativemodule:
|
|
1650
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
|
|
1651
|
+
React-Fabric:
|
|
1652
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1653
|
+
React-FabricComponents:
|
|
1654
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1655
|
+
React-FabricImage:
|
|
1656
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1657
|
+
React-featureflags:
|
|
1658
|
+
:path: "../node_modules/react-native/ReactCommon/react/featureflags"
|
|
1659
|
+
React-featureflagsnativemodule:
|
|
1660
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
|
|
1661
|
+
React-graphics:
|
|
1662
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
|
|
1663
|
+
React-hermes:
|
|
1664
|
+
:path: "../node_modules/react-native/ReactCommon/hermes"
|
|
1665
|
+
React-idlecallbacksnativemodule:
|
|
1666
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
|
|
1667
|
+
React-ImageManager:
|
|
1668
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
|
|
1669
|
+
React-jserrorhandler:
|
|
1670
|
+
:path: "../node_modules/react-native/ReactCommon/jserrorhandler"
|
|
1671
|
+
React-jsi:
|
|
1672
|
+
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
1673
|
+
React-jsiexecutor:
|
|
1674
|
+
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
1675
|
+
React-jsinspector:
|
|
1676
|
+
:path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
|
|
1677
|
+
React-jsitracing:
|
|
1678
|
+
:path: "../node_modules/react-native/ReactCommon/hermes/executor/"
|
|
1679
|
+
React-logger:
|
|
1680
|
+
:path: "../node_modules/react-native/ReactCommon/logger"
|
|
1681
|
+
React-Mapbuffer:
|
|
1682
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1683
|
+
React-microtasksnativemodule:
|
|
1684
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
|
|
1685
|
+
react-native-image-picker:
|
|
1686
|
+
:path: "../node_modules/react-native-image-picker"
|
|
1687
|
+
React-nativeconfig:
|
|
1688
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1689
|
+
React-NativeModulesApple:
|
|
1690
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
|
|
1691
|
+
React-perflogger:
|
|
1692
|
+
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
1693
|
+
React-performancetimeline:
|
|
1694
|
+
:path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
|
|
1695
|
+
React-RCTActionSheet:
|
|
1696
|
+
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
1697
|
+
React-RCTAnimation:
|
|
1698
|
+
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
1699
|
+
React-RCTAppDelegate:
|
|
1700
|
+
:path: "../node_modules/react-native/Libraries/AppDelegate"
|
|
1701
|
+
React-RCTBlob:
|
|
1702
|
+
:path: "../node_modules/react-native/Libraries/Blob"
|
|
1703
|
+
React-RCTFabric:
|
|
1704
|
+
:path: "../node_modules/react-native/React"
|
|
1705
|
+
React-RCTImage:
|
|
1706
|
+
:path: "../node_modules/react-native/Libraries/Image"
|
|
1707
|
+
React-RCTLinking:
|
|
1708
|
+
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
1709
|
+
React-RCTNetwork:
|
|
1710
|
+
:path: "../node_modules/react-native/Libraries/Network"
|
|
1711
|
+
React-RCTSettings:
|
|
1712
|
+
:path: "../node_modules/react-native/Libraries/Settings"
|
|
1713
|
+
React-RCTText:
|
|
1714
|
+
:path: "../node_modules/react-native/Libraries/Text"
|
|
1715
|
+
React-RCTVibration:
|
|
1716
|
+
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
1717
|
+
React-rendererconsistency:
|
|
1718
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
|
|
1719
|
+
React-rendererdebug:
|
|
1720
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
|
|
1721
|
+
React-rncore:
|
|
1722
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1723
|
+
React-RuntimeApple:
|
|
1724
|
+
:path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
|
|
1725
|
+
React-RuntimeCore:
|
|
1726
|
+
:path: "../node_modules/react-native/ReactCommon/react/runtime"
|
|
1727
|
+
React-runtimeexecutor:
|
|
1728
|
+
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
1729
|
+
React-RuntimeHermes:
|
|
1730
|
+
:path: "../node_modules/react-native/ReactCommon/react/runtime"
|
|
1731
|
+
React-runtimescheduler:
|
|
1732
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
|
|
1733
|
+
React-utils:
|
|
1734
|
+
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
|
1735
|
+
ReactCodegen:
|
|
1736
|
+
:path: build/generated/ios
|
|
1737
|
+
ReactCommon:
|
|
1738
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1739
|
+
RNFaceSDK:
|
|
1740
|
+
:path: "../node_modules/@regulaforensics/face-sdk"
|
|
1741
|
+
RNFaceCore:
|
|
1742
|
+
:path: "../node_modules/@regulaforensics/react-native-face-core-basic"
|
|
1743
|
+
RNFS:
|
|
1744
|
+
:path: "../node_modules/react-native-fs"
|
|
1745
|
+
Yoga:
|
|
1746
|
+
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
1747
|
+
|
|
1748
|
+
SPEC CHECKSUMS:
|
|
1749
|
+
boost: 4cb898d0bf20404aab1850c656dcea009429d6c1
|
|
1750
|
+
DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
|
|
1751
|
+
FaceCoreBasic: c4dd96c2f76134cbfb7c62eb35b35a9bbdcc63b2
|
|
1752
|
+
FaceSDK: 9fb0973e244dcb38bc109629cff54528534427db
|
|
1753
|
+
FBLazyVector: 38bb611218305c3bc61803e287b8a81c6f63b619
|
|
1754
|
+
fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120
|
|
1755
|
+
glog: 69ef571f3de08433d766d614c73a9838a06bf7eb
|
|
1756
|
+
hermes-engine: 3b6e0717ca847e2fc90a201e59db36caf04dee88
|
|
1757
|
+
RCT-Folly: 4464f4d875961fce86008d45f4ecf6cef6de0740
|
|
1758
|
+
RCTDeprecation: 34cbf122b623037ea9facad2e92e53434c5c7422
|
|
1759
|
+
RCTRequired: 24c446d7bcd0f517d516b6265d8df04dc3eb1219
|
|
1760
|
+
RCTTypeSafety: ef5e91bd791abd3a99b2c75fd565791102a66352
|
|
1761
|
+
React: 643f06bc294806d2db2526b424fdf759e107f514
|
|
1762
|
+
React-callinvoker: 34d1fa0c340104f324e2521f546196beb44dfad2
|
|
1763
|
+
React-Core: facd883836d8d1cc1949d2053c58eab5fb22eb75
|
|
1764
|
+
React-CoreModules: f92a2cb11d22f6066823ca547c61e900325dfe44
|
|
1765
|
+
React-cxxreact: f5595a4cbfe5a4e9d401dffa2c1c78bbbbbe75e4
|
|
1766
|
+
React-debug: 4a91c177b5b2efcc546fb50bc2f676f3f589efab
|
|
1767
|
+
React-defaultsnativemodule: 6b666572abf5fe7fe87836a42776abd6ad5ed173
|
|
1768
|
+
React-domnativemodule: 785d767c4edbb9f011b8c976271077759ca5c4aa
|
|
1769
|
+
React-Fabric: a33cc1fdc62a3085774783bb30970531589d2028
|
|
1770
|
+
React-FabricComponents: 98de5f94cbd35d407f4fc78855298b562d8289cb
|
|
1771
|
+
React-FabricImage: 0ce8fd83844d9edef5825116d38f0e208b9ad786
|
|
1772
|
+
React-featureflags: 37a78859ad71db758e2efdcbdb7384afefa8701e
|
|
1773
|
+
React-featureflagsnativemodule: f94aacb52c463e200ee185bff90ae3b392e60263
|
|
1774
|
+
React-graphics: c16f1bab97a5d473831a79360d84300e93a614e5
|
|
1775
|
+
React-hermes: 7801f8c0e12f326524b461dc368d3e74f3d2a385
|
|
1776
|
+
React-idlecallbacksnativemodule: d81bb7b5d26cea9852a8edc6ad1979cd7ed0841f
|
|
1777
|
+
React-ImageManager: 98a1e5b0b05528dde47ebcd953d916ac66d46c09
|
|
1778
|
+
React-jserrorhandler: 08f1c3465a71a6549c27ad82809ce145ad52d4f1
|
|
1779
|
+
React-jsi: 161428ab2c706d5fcd9878d260ff1513fdb356ab
|
|
1780
|
+
React-jsiexecutor: abfdc7526151c6755f836235bbaa53b267a0803c
|
|
1781
|
+
React-jsinspector: f0786053a1a258a4d8dde859d1a820c26ee686f0
|
|
1782
|
+
React-jsitracing: 52b849a77d02e2dc262a3031454c23be8dabb4d9
|
|
1783
|
+
React-logger: 8db32983d75dc2ad54f278f344ccb9b256e694fc
|
|
1784
|
+
React-Mapbuffer: 1c08607305558666fd16678b85ef135e455d5c96
|
|
1785
|
+
React-microtasksnativemodule: f13f03163b6a5ec66665dfe80a0df4468bb766a6
|
|
1786
|
+
react-native-image-picker: ba5067f7d833b9081102c0a33dd0188eb21d92dc
|
|
1787
|
+
React-nativeconfig: 57781b79e11d5af7573e6f77cbf1143b71802a6d
|
|
1788
|
+
React-NativeModulesApple: 7ff2e2cfb2e5fa5bdedcecf28ce37e696c6ef1e1
|
|
1789
|
+
React-perflogger: 8a360ccf603de6ddbe9ff8f54383146d26e6c936
|
|
1790
|
+
React-performancetimeline: 3cfec915adcb3653a5a633b41e711903844c35d8
|
|
1791
|
+
React-RCTActionSheet: 1c0e26a88eec41215089cf4436e38188cfe9f01a
|
|
1792
|
+
React-RCTAnimation: d87207841b1e2ae1389e684262ea8c73c887cb04
|
|
1793
|
+
React-RCTAppDelegate: 328e56399c4f1c3d20cfe547ea24ebded2b3a87f
|
|
1794
|
+
React-RCTBlob: 79b42cb7db55f34079297687a480dbcf37f023f6
|
|
1795
|
+
React-RCTFabric: 27636a6a5fa5622159297fce26881945d3658cf6
|
|
1796
|
+
React-RCTImage: 0c10a75de59f7384a2a55545d5f36fe783e6ecda
|
|
1797
|
+
React-RCTLinking: bf08f4f655bf777af292b8d97449072c8bb196ca
|
|
1798
|
+
React-RCTNetwork: 1b690846b40fc5685af58e088720657db6814637
|
|
1799
|
+
React-RCTSettings: 097e420926dd44153fb25174835b572aded224d6
|
|
1800
|
+
React-RCTText: d8fe2ae9f95b2ccd03b2f534286e938254791992
|
|
1801
|
+
React-RCTVibration: 976466dba32c0981a836e45ce38bcd4c8d6d924e
|
|
1802
|
+
React-rendererconsistency: ee0d6f1b4420e1ad5bb01c02170e7ecbd278e307
|
|
1803
|
+
React-rendererdebug: 7fbf02f30d1e0bb0d96d65cf2548219cb53b29b6
|
|
1804
|
+
React-rncore: 7ffc5be03adbf0a5cbf1b654483f487a899cff08
|
|
1805
|
+
React-RuntimeApple: e623f002e1871de30a443291171d3f2fb134a6ec
|
|
1806
|
+
React-RuntimeCore: a67357d4f073b1dbe6fbefc5273072027f201e1c
|
|
1807
|
+
React-runtimeexecutor: 5bb52479abf8081086afb0397dc33dc97202a439
|
|
1808
|
+
React-RuntimeHermes: 860cf64708a12a2fa62366fe51fe000121fa031b
|
|
1809
|
+
React-runtimescheduler: fff88d51ad2c8815fc75930dbac224d680593e6b
|
|
1810
|
+
React-utils: 81a715d9c0a2a49047e77a86f3a2247408540deb
|
|
1811
|
+
ReactCodegen: 60973d382704c793c605b9be0fc7f31cb279442f
|
|
1812
|
+
ReactCommon: 6ef348087d250257c44c0204461c03f036650e9b
|
|
1813
|
+
RegulaCommon: 3ff38b3135a7fdc8962bd8738bf1ecfde36c320d
|
|
1814
|
+
RNFaceSDK: db531f4c1c4bee30e34fee40792e9ba996f52454
|
|
1815
|
+
RNFaceCore: 9e09111057780dc29cd2ce4ed178fa0622206e48
|
|
1816
|
+
RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
|
|
1817
|
+
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
|
|
1818
|
+
Yoga: a1d7895431387402a674fd0d1c04ec85e87909b8
|
|
1819
|
+
|
|
1820
|
+
PODFILE CHECKSUM: 340b1366d42b52791c9124e21354808fd0a9a164
|
|
1821
|
+
|
|
1822
|
+
COCOAPODS: 1.15.2
|