@jmartins-tillster/analytics-react-native 2.21.3
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/.editorconfig +10 -0
- package/.eslintignore +11 -0
- package/.eslintrc.js +60 -0
- package/.gitattributes +4 -0
- package/.github/ISSUE_TEMPLATE/BUG_REPORT.md +23 -0
- package/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +18 -0
- package/.github/workflows/ci.yml +158 -0
- package/.github/workflows/create_jira.yml +41 -0
- package/.github/workflows/publish.yml +57 -0
- package/.husky/commit-msg +4 -0
- package/.husky/pre-commit +4 -0
- package/.prettierrc.js +7 -0
- package/.yarnrc.yml +2 -0
- package/CODE_OF_CONDUCT.md +84 -0
- package/CONTRIBUTING.md +141 -0
- package/LICENSE +21 -0
- package/MIGRATION_GUIDE.md +185 -0
- package/README.md +944 -0
- package/babel.config.js +3 -0
- package/commitlint.config.js +13 -0
- package/examples/AnalyticsReactNativeExample/.bundle/config +2 -0
- package/examples/AnalyticsReactNativeExample/.eslintrc.js +4 -0
- package/examples/AnalyticsReactNativeExample/.prettierrc.js +7 -0
- package/examples/AnalyticsReactNativeExample/.watchmanconfig +1 -0
- package/examples/AnalyticsReactNativeExample/App.tsx +164 -0
- package/examples/AnalyticsReactNativeExample/Gemfile +9 -0
- package/examples/AnalyticsReactNativeExample/Gemfile.lock +106 -0
- package/examples/AnalyticsReactNativeExample/Home.tsx +206 -0
- package/examples/AnalyticsReactNativeExample/Modal.tsx +25 -0
- package/examples/AnalyticsReactNativeExample/README.md +79 -0
- package/examples/AnalyticsReactNativeExample/SecondPage.tsx +25 -0
- package/examples/AnalyticsReactNativeExample/android/app/build.gradle +119 -0
- package/examples/AnalyticsReactNativeExample/android/app/debug.keystore +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/proguard-rules.pro +10 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/debug/AndroidManifest.xml +9 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/AndroidManifest.xml +26 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/java/com/analyticsreactnativeexample/MainActivity.kt +22 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/java/com/analyticsreactnativeexample/MainApplication.kt +44 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/values/strings.xml +3 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/values/styles.xml +9 -0
- package/examples/AnalyticsReactNativeExample/android/build.gradle +21 -0
- package/examples/AnalyticsReactNativeExample/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/AnalyticsReactNativeExample/android/gradle/wrapper/gradle-wrapper.properties +8 -0
- package/examples/AnalyticsReactNativeExample/android/gradle.properties +39 -0
- package/examples/AnalyticsReactNativeExample/android/gradlew +252 -0
- package/examples/AnalyticsReactNativeExample/android/gradlew.bat +94 -0
- package/examples/AnalyticsReactNativeExample/android/settings.gradle +6 -0
- package/examples/AnalyticsReactNativeExample/app.json +4 -0
- package/examples/AnalyticsReactNativeExample/babel.config.js +3 -0
- package/examples/AnalyticsReactNativeExample/index.js +9 -0
- package/examples/AnalyticsReactNativeExample/ios/.xcode.env +11 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/AppDelegate.h +6 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/AppDelegate.mm +31 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/Images.xcassets/Contents.json +6 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/Info.plist +52 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/LaunchScreen.storyboard +47 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/PrivacyInfo.xcprivacy +37 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/main.m +10 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcodeproj/project.pbxproj +705 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcodeproj/xcshareddata/xcschemes/AnalyticsReactNativeExample.xcscheme +88 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExampleTests/AnalyticsReactNativeExampleTests.m +66 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExampleTests/Info.plist +24 -0
- package/examples/AnalyticsReactNativeExample/ios/Podfile +40 -0
- package/examples/AnalyticsReactNativeExample/ios/Podfile.lock +1961 -0
- package/examples/AnalyticsReactNativeExample/metro.config.js +11 -0
- package/examples/AnalyticsReactNativeExample/package.json +55 -0
- package/examples/AnalyticsReactNativeExample/plugins/ConsentManager.tsx +75 -0
- package/examples/AnalyticsReactNativeExample/plugins/Logger.ts +16 -0
- package/examples/AnalyticsReactNativeExample/react-native.config.js +9 -0
- package/examples/AnalyticsReactNativeExample/tsconfig.json +3 -0
- package/examples/AnalyticsReactNativeExample/workspace.js +5 -0
- package/examples/AnalyticsReactNativeExample/yarn.lock +11110 -0
- package/examples/E2E/.bundle/config +2 -0
- package/examples/E2E/.detoxrc.js +96 -0
- package/examples/E2E/.mise.toml +5 -0
- package/examples/E2E/.prettierrc.js +7 -0
- package/examples/E2E/.watchmanconfig +1 -0
- package/examples/E2E/App.tsx +176 -0
- package/examples/E2E/Gemfile +7 -0
- package/examples/E2E/Gemfile.lock +101 -0
- package/examples/E2E/Home.tsx +206 -0
- package/examples/E2E/Modal.tsx +25 -0
- package/examples/E2E/README.md +79 -0
- package/examples/E2E/SecondPage.tsx +25 -0
- package/examples/E2E/android/app/build.gradle +128 -0
- package/examples/E2E/android/app/debug.keystore +0 -0
- package/examples/E2E/android/app/proguard-rules.pro +10 -0
- package/examples/E2E/android/app/src/androidTest/java/com/segmentanalyticsreactnativeexample/DetoxTest.java +29 -0
- package/examples/E2E/android/app/src/debug/AndroidManifest.xml +13 -0
- package/examples/E2E/android/app/src/debug/java/com/analyticsreactnativeexample/ReactNativeFlipper.java +75 -0
- package/examples/E2E/android/app/src/main/AndroidManifest.xml +26 -0
- package/examples/E2E/android/app/src/main/java/com/analyticsreactnativeexample/MainActivity.java +32 -0
- package/examples/E2E/android/app/src/main/java/com/analyticsreactnativeexample/MainApplication.java +62 -0
- package/examples/E2E/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/examples/E2E/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/values/strings.xml +3 -0
- package/examples/E2E/android/app/src/main/res/values/styles.xml +9 -0
- package/examples/E2E/android/app/src/main/res/xml/network_security_config.xml +7 -0
- package/examples/E2E/android/app/src/release/java/com/analyticsreactnativeexample/ReactNativeFlipper.java +20 -0
- package/examples/E2E/android/build.gradle +37 -0
- package/examples/E2E/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/E2E/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/examples/E2E/android/gradle.properties +44 -0
- package/examples/E2E/android/gradlew +244 -0
- package/examples/E2E/android/gradlew.bat +92 -0
- package/examples/E2E/android/settings.gradle +4 -0
- package/examples/E2E/app.json +4 -0
- package/examples/E2E/babel.config.js +14 -0
- package/examples/E2E/e2e/jest.config.js +13 -0
- package/examples/E2E/e2e/main.e2e.js +192 -0
- package/examples/E2E/e2e/matchers.js +34 -0
- package/examples/E2E/e2e/mockServer.js +56 -0
- package/examples/E2E/index.js +11 -0
- package/examples/E2E/ios/.xcode.env +11 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/AppDelegate.h +6 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/AppDelegate.mm +26 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/Images.xcassets/Contents.json +6 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/Info.plist +55 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/LaunchScreen.storyboard +47 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/main.m +10 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E.xcodeproj/project.pbxproj +721 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2ETests/AnalyticsReactNativeExampleTests.m +66 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2ETests/Info.plist +24 -0
- package/examples/E2E/ios/Podfile +62 -0
- package/examples/E2E/ios/Podfile.lock +763 -0
- package/examples/E2E/jest.config.js +3 -0
- package/examples/E2E/metro.config.js +45 -0
- package/examples/E2E/package.json +65 -0
- package/examples/E2E/plugins/Logger.ts +16 -0
- package/examples/E2E/react-native.config.js +7 -0
- package/examples/E2E/workspace.js +5 -0
- package/examples/E2E/yarn.lock +10898 -0
- package/examples/E2E-73/.bundle/config +2 -0
- package/examples/E2E-73/.detoxrc.js +96 -0
- package/examples/E2E-73/.eslintrc.js +4 -0
- package/examples/E2E-73/.mise.toml +5 -0
- package/examples/E2E-73/.prettierrc.js +7 -0
- package/examples/E2E-73/.watchmanconfig +1 -0
- package/examples/E2E-73/App.tsx +175 -0
- package/examples/E2E-73/Gemfile +7 -0
- package/examples/E2E-73/Gemfile.lock +99 -0
- package/examples/E2E-73/Home.tsx +206 -0
- package/examples/E2E-73/Modal.tsx +25 -0
- package/examples/E2E-73/README.md +79 -0
- package/examples/E2E-73/SecondPage.tsx +25 -0
- package/examples/E2E-73/android/app/build.gradle +119 -0
- package/examples/E2E-73/android/app/debug.keystore +0 -0
- package/examples/E2E-73/android/app/proguard-rules.pro +10 -0
- package/examples/E2E-73/android/app/src/debug/AndroidManifest.xml +9 -0
- package/examples/E2E-73/android/app/src/main/AndroidManifest.xml +25 -0
- package/examples/E2E-73/android/app/src/main/java/com/analyticsreactnativee2e73/MainActivity.kt +22 -0
- package/examples/E2E-73/android/app/src/main/java/com/analyticsreactnativee2e73/MainApplication.kt +45 -0
- package/examples/E2E-73/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/values/strings.xml +3 -0
- package/examples/E2E-73/android/app/src/main/res/values/styles.xml +9 -0
- package/examples/E2E-73/android/build.gradle +21 -0
- package/examples/E2E-73/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/E2E-73/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/E2E-73/android/gradle.properties +41 -0
- package/examples/E2E-73/android/gradlew +249 -0
- package/examples/E2E-73/android/gradlew.bat +92 -0
- package/examples/E2E-73/android/settings.gradle +4 -0
- package/examples/E2E-73/app.json +4 -0
- package/examples/E2E-73/babel.config.js +14 -0
- package/examples/E2E-73/e2e/jest.config.js +13 -0
- package/examples/E2E-73/e2e/main.e2e.js +192 -0
- package/examples/E2E-73/e2e/matchers.js +34 -0
- package/examples/E2E-73/e2e/mockServer.js +56 -0
- package/examples/E2E-73/index.js +9 -0
- package/examples/E2E-73/ios/.xcode.env +11 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/AppDelegate.h +6 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/AppDelegate.mm +31 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/Images.xcassets/Contents.json +6 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/Info.plist +51 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/LaunchScreen.storyboard +47 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/main.m +10 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73.xcodeproj/project.pbxproj +700 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73.xcodeproj/xcshareddata/xcschemes/AnalyticsReactNativeE2E73.xcscheme +88 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73Tests/AnalyticsReactNativeE2E73Tests.m +66 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73Tests/Info.plist +24 -0
- package/examples/E2E-73/ios/Podfile +55 -0
- package/examples/E2E-73/ios/Podfile.lock +1425 -0
- package/examples/E2E-73/jest.config.js +3 -0
- package/examples/E2E-73/metro.config.js +45 -0
- package/examples/E2E-73/package.json +62 -0
- package/examples/E2E-73/plugins/Logger.ts +16 -0
- package/examples/E2E-73/react-native.config.js +12 -0
- package/examples/E2E-73/tsconfig.json +3 -0
- package/examples/E2E-73/workspace.js +5 -0
- package/examples/E2E-73/yarn.lock +10789 -0
- package/examples/README.md +142 -0
- package/examples/linkHelper.js +45 -0
- package/jest.config.js +7 -0
- package/multi-release.config.js +7 -0
- package/package.json +79 -0
- package/packages/core/CHANGELOG.md +274 -0
- package/packages/core/LICENSE +21 -0
- package/packages/core/README.md +3 -0
- package/packages/core/android/build.gradle +96 -0
- package/packages/core/android/gradle.properties +5 -0
- package/packages/core/android/src/main/AndroidManifest.xml +4 -0
- package/packages/core/android/src/main/AndroidManifestNew.xml +3 -0
- package/packages/core/android/src/main/java/com/segmentanalyticsreactnative/AnalyticsReactNativeModule.kt +265 -0
- package/packages/core/android/src/main/java/com/segmentanalyticsreactnative/AnalyticsReactNativePackage.kt +43 -0
- package/packages/core/babel.config.js +3 -0
- package/packages/core/constants-generator.js +17 -0
- package/packages/core/ios/AnalyticsReactNative-Bridging-Header.h +1 -0
- package/packages/core/ios/AnalyticsReactNative.m +7 -0
- package/packages/core/ios/AnalyticsReactNative.swift +142 -0
- package/packages/core/ios/AnalyticsReactNative.xcodeproj/project.pbxproj +281 -0
- package/packages/core/ios/PrivacyInfo.xcprivacy +70 -0
- package/packages/core/jest.config.js +5 -0
- package/packages/core/package.json +85 -0
- package/packages/core/release.config.js +3 -0
- package/packages/core/segment-analytics-react-native.podspec +35 -0
- package/packages/core/src/__tests__/__snapshots__/mapTransform.test.ts.snap +20 -0
- package/packages/core/src/__tests__/analytics.test.ts +252 -0
- package/packages/core/src/__tests__/api.test.ts +91 -0
- package/packages/core/src/__tests__/client.test.ts +27 -0
- package/packages/core/src/__tests__/context.test.ts +122 -0
- package/packages/core/src/__tests__/events.test.ts +234 -0
- package/packages/core/src/__tests__/internal/checkInstalledVersion.test.ts +221 -0
- package/packages/core/src/__tests__/internal/fetchSettings.test.ts +438 -0
- package/packages/core/src/__tests__/internal/handleAppStateChange.test.ts +178 -0
- package/packages/core/src/__tests__/internal/trackDeepLinks.test.ts +121 -0
- package/packages/core/src/__tests__/logger.test.ts +83 -0
- package/packages/core/src/__tests__/mapTransform.test.ts +63 -0
- package/packages/core/src/__tests__/methods/alias.test.ts +89 -0
- package/packages/core/src/__tests__/methods/flush.test.ts +120 -0
- package/packages/core/src/__tests__/methods/group.test.ts +48 -0
- package/packages/core/src/__tests__/methods/identify.test.ts +132 -0
- package/packages/core/src/__tests__/methods/process.test.ts +162 -0
- package/packages/core/src/__tests__/methods/screen.test.ts +48 -0
- package/packages/core/src/__tests__/methods/track.test.ts +49 -0
- package/packages/core/src/__tests__/timeline.test.ts +130 -0
- package/packages/core/src/__tests__/util.test.ts +200 -0
- package/packages/core/src/analytics.ts +1030 -0
- package/packages/core/src/api.ts +23 -0
- package/packages/core/src/client.tsx +76 -0
- package/packages/core/src/constants.ts +18 -0
- package/packages/core/src/context.ts +107 -0
- package/packages/core/src/errors.ts +123 -0
- package/packages/core/src/events.ts +75 -0
- package/packages/core/src/flushPolicies/__tests__/background-flush-policy.test.ts +39 -0
- package/packages/core/src/flushPolicies/__tests__/count-flush-policy.test.ts +28 -0
- package/packages/core/src/flushPolicies/__tests__/flush-policy-executer.test.ts +85 -0
- package/packages/core/src/flushPolicies/__tests__/timer-flush-policy.test.ts +30 -0
- package/packages/core/src/flushPolicies/background-flush-policy.ts +21 -0
- package/packages/core/src/flushPolicies/count-flush-policy.ts +31 -0
- package/packages/core/src/flushPolicies/flush-policy-executer.ts +100 -0
- package/packages/core/src/flushPolicies/index.ts +5 -0
- package/packages/core/src/flushPolicies/startup-flush-policy.ts +20 -0
- package/packages/core/src/flushPolicies/timer-flush-policy.ts +45 -0
- package/packages/core/src/flushPolicies/types.ts +93 -0
- package/packages/core/src/index.ts +28 -0
- package/packages/core/src/logger.ts +37 -0
- package/packages/core/src/mapTransform.ts +48 -0
- package/packages/core/src/plugin.ts +212 -0
- package/packages/core/src/plugins/ConsentPlugin.ts +200 -0
- package/packages/core/src/plugins/DestinationMetadataEnrichment.ts +67 -0
- package/packages/core/src/plugins/QueueFlushingPlugin.ts +149 -0
- package/packages/core/src/plugins/SegmentDestination.ts +153 -0
- package/packages/core/src/plugins/__tests__/QueueFlushingPlugin.test.ts +143 -0
- package/packages/core/src/plugins/__tests__/SegmentDestination.test.ts +549 -0
- package/packages/core/src/plugins/__tests__/consent/consentNotEnabledAtSegment.test.ts +123 -0
- package/packages/core/src/plugins/__tests__/consent/destinationMultipleCategories.test.ts +147 -0
- package/packages/core/src/plugins/__tests__/consent/idfa.test.ts +101 -0
- package/packages/core/src/plugins/__tests__/consent/mockSettings/ConsentNotEnabledAtSegment.json +70 -0
- package/packages/core/src/plugins/__tests__/consent/mockSettings/DestinationsMultipleCategories.json +73 -0
- package/packages/core/src/plugins/__tests__/consent/mockSettings/NoUnmappedDestinations.json +105 -0
- package/packages/core/src/plugins/__tests__/consent/mockSettings/UnmappedDestinations.json +101 -0
- package/packages/core/src/plugins/__tests__/consent/noUnmapped.test.ts +234 -0
- package/packages/core/src/plugins/__tests__/consent/unmapped.test.ts +265 -0
- package/packages/core/src/plugins/__tests__/consent/utils.ts +75 -0
- package/packages/core/src/storage/__tests__/sovranStorage.test.ts +153 -0
- package/packages/core/src/storage/helpers.ts +25 -0
- package/packages/core/src/storage/index.ts +3 -0
- package/packages/core/src/storage/sovranStorage.ts +558 -0
- package/packages/core/src/storage/types.ts +106 -0
- package/packages/core/src/test-helpers/index.ts +7 -0
- package/packages/core/src/test-helpers/mockDestinationPlugin.ts +7 -0
- package/packages/core/src/test-helpers/mockEventStore.ts +35 -0
- package/packages/core/src/test-helpers/mockLogger.ts +10 -0
- package/packages/core/src/test-helpers/mockSegmentStore.ts +266 -0
- package/packages/core/src/test-helpers/mockTimeline.ts +9 -0
- package/packages/core/src/test-helpers/setupSegmentClient.ts +59 -0
- package/packages/core/src/test-helpers/utils.ts +23 -0
- package/packages/core/src/timeline.ts +136 -0
- package/packages/core/src/types.ts +392 -0
- package/packages/core/src/util.ts +288 -0
- package/packages/core/src/uuid.ts +7 -0
- package/packages/core/tsconfig.json +10 -0
- package/packages/core/tsconfig.linter.json +11 -0
- package/packages/plugins/plugin-adjust/CHANGELOG.md +60 -0
- package/packages/plugins/plugin-adjust/LICENSE +21 -0
- package/packages/plugins/plugin-adjust/README.md +72 -0
- package/packages/plugins/plugin-adjust/babel.config.js +3 -0
- package/packages/plugins/plugin-adjust/jest.config.js +5 -0
- package/packages/plugins/plugin-adjust/package.json +72 -0
- package/packages/plugins/plugin-adjust/release.config.js +3 -0
- package/packages/plugins/plugin-adjust/src/AdjustPlugin.tsx +92 -0
- package/packages/plugins/plugin-adjust/src/index.ts +1 -0
- package/packages/plugins/plugin-adjust/src/methods/__mocks__/react-native-adjust.ts +19 -0
- package/packages/plugins/plugin-adjust/src/methods/__tests__/identify.test.ts +34 -0
- package/packages/plugins/plugin-adjust/src/methods/__tests__/reset.test.ts +15 -0
- package/packages/plugins/plugin-adjust/src/methods/__tests__/track.test.ts +148 -0
- package/packages/plugins/plugin-adjust/src/methods/identify.ts +14 -0
- package/packages/plugins/plugin-adjust/src/methods/reset.ts +9 -0
- package/packages/plugins/plugin-adjust/src/methods/track.ts +47 -0
- package/packages/plugins/plugin-adjust/src/util.ts +29 -0
- package/packages/plugins/plugin-adjust/tsconfig.json +10 -0
- package/packages/plugins/plugin-advertising-id/CHANGELOG.md +101 -0
- package/packages/plugins/plugin-advertising-id/CONTRIBUTING.md +196 -0
- package/packages/plugins/plugin-advertising-id/LICENSE +21 -0
- package/packages/plugins/plugin-advertising-id/README.md +40 -0
- package/packages/plugins/plugin-advertising-id/android/build.gradle +96 -0
- package/packages/plugins/plugin-advertising-id/android/gradle.properties +5 -0
- package/packages/plugins/plugin-advertising-id/android/src/main/AndroidManifest.xml +4 -0
- package/packages/plugins/plugin-advertising-id/android/src/main/AndroidManifestNew.xml +3 -0
- package/packages/plugins/plugin-advertising-id/android/src/main/java/com/reactnativeanalyticsreactnativepluginadvertisingid/AnalyticsReactNativePluginAdvertisingIdModule.kt +64 -0
- package/packages/plugins/plugin-advertising-id/android/src/main/java/com/reactnativeanalyticsreactnativepluginadvertisingid/AnalyticsReactNativePluginAdvertisingIdPackage.kt +17 -0
- package/packages/plugins/plugin-advertising-id/babel.config.js +3 -0
- package/packages/plugins/plugin-advertising-id/jest.config.js +5 -0
- package/packages/plugins/plugin-advertising-id/package.json +70 -0
- package/packages/plugins/plugin-advertising-id/release.config.js +3 -0
- package/packages/plugins/plugin-advertising-id/src/AdvertisingIdPlugin.ts +172 -0
- package/packages/plugins/plugin-advertising-id/src/index.ts +1 -0
- package/packages/plugins/plugin-advertising-id/src/types.ts +3 -0
- package/packages/plugins/plugin-advertising-id/tsconfig.json +10 -0
- package/packages/plugins/plugin-amplitudeSession/CHANGELOG.md +46 -0
- package/packages/plugins/plugin-amplitudeSession/LICENSE +21 -0
- package/packages/plugins/plugin-amplitudeSession/README.md +66 -0
- package/packages/plugins/plugin-amplitudeSession/babel.config.js +3 -0
- package/packages/plugins/plugin-amplitudeSession/jest.config.js +5 -0
- package/packages/plugins/plugin-amplitudeSession/package.json +71 -0
- package/packages/plugins/plugin-amplitudeSession/release.config.js +3 -0
- package/packages/plugins/plugin-amplitudeSession/src/AmplitudeSessionPlugin.tsx +327 -0
- package/packages/plugins/plugin-amplitudeSession/src/__tests__/AmplitudeSessionPlugin.test.ts +769 -0
- package/packages/plugins/plugin-amplitudeSession/src/index.ts +1 -0
- package/packages/plugins/plugin-amplitudeSession/tsconfig.json +10 -0
- package/packages/plugins/plugin-appsflyer/CHANGELOG.md +64 -0
- package/packages/plugins/plugin-appsflyer/LICENSE +21 -0
- package/packages/plugins/plugin-appsflyer/README.md +90 -0
- package/packages/plugins/plugin-appsflyer/babel.config.js +3 -0
- package/packages/plugins/plugin-appsflyer/jest.config.js +5 -0
- package/packages/plugins/plugin-appsflyer/package.json +74 -0
- package/packages/plugins/plugin-appsflyer/release.config.js +3 -0
- package/packages/plugins/plugin-appsflyer/src/AppsflyerPlugin.tsx +218 -0
- package/packages/plugins/plugin-appsflyer/src/__tests__/AppsflyerPlugin.test.ts +20 -0
- package/packages/plugins/plugin-appsflyer/src/index.ts +1 -0
- package/packages/plugins/plugin-appsflyer/src/methods/__mocks__/react-native-appsflyer.ts +11 -0
- package/packages/plugins/plugin-appsflyer/src/methods/__tests__/identify.test.ts +57 -0
- package/packages/plugins/plugin-appsflyer/src/methods/__tests__/track.test.ts +99 -0
- package/packages/plugins/plugin-appsflyer/src/methods/identify.ts +42 -0
- package/packages/plugins/plugin-appsflyer/src/methods/track.ts +61 -0
- package/packages/plugins/plugin-appsflyer/src/types.ts +9 -0
- package/packages/plugins/plugin-appsflyer/tsconfig.json +10 -0
- package/packages/plugins/plugin-branch/CHANGELOG.md +51 -0
- package/packages/plugins/plugin-branch/LICENSE +21 -0
- package/packages/plugins/plugin-branch/README.md +71 -0
- package/packages/plugins/plugin-branch/babel.config.js +3 -0
- package/packages/plugins/plugin-branch/jest.config.js +5 -0
- package/packages/plugins/plugin-branch/package.json +74 -0
- package/packages/plugins/plugin-branch/release.config.js +3 -0
- package/packages/plugins/plugin-branch/src/BranchPlugin.ts +42 -0
- package/packages/plugins/plugin-branch/src/index.ts +1 -0
- package/packages/plugins/plugin-branch/src/methods/__mocks__/react-native-branch.ts +16 -0
- package/packages/plugins/plugin-branch/src/methods/__tests__/alias.test.ts +23 -0
- package/packages/plugins/plugin-branch/src/methods/__tests__/identify.test.ts +23 -0
- package/packages/plugins/plugin-branch/src/methods/__tests__/screen.test.ts +38 -0
- package/packages/plugins/plugin-branch/src/methods/__tests__/track.test.ts +73 -0
- package/packages/plugins/plugin-branch/src/methods/alias.ts +9 -0
- package/packages/plugins/plugin-branch/src/methods/identify.ts +9 -0
- package/packages/plugins/plugin-branch/src/methods/parameterMapping.ts +109 -0
- package/packages/plugins/plugin-branch/src/methods/reset.ts +5 -0
- package/packages/plugins/plugin-branch/src/methods/screen.ts +17 -0
- package/packages/plugins/plugin-branch/src/methods/track.ts +18 -0
- package/packages/plugins/plugin-branch/src/methods/util.ts +64 -0
- package/packages/plugins/plugin-branch/tsconfig.json +10 -0
- package/packages/plugins/plugin-braze/CHANGELOG.md +101 -0
- package/packages/plugins/plugin-braze/LICENSE +21 -0
- package/packages/plugins/plugin-braze/README.md +72 -0
- package/packages/plugins/plugin-braze/babel.config.js +3 -0
- package/packages/plugins/plugin-braze/jest.config.js +5 -0
- package/packages/plugins/plugin-braze/package.json +74 -0
- package/packages/plugins/plugin-braze/release.config.js +3 -0
- package/packages/plugins/plugin-braze/src/BrazePlugin.tsx +346 -0
- package/packages/plugins/plugin-braze/src/index.ts +1 -0
- package/packages/plugins/plugin-braze/src/methods/__mocks__/@braze/react-native-sdk.ts +31 -0
- package/packages/plugins/plugin-braze/src/methods/__tests__/flush.test.ts +15 -0
- package/packages/plugins/plugin-braze/src/methods/__tests__/identify.test.ts +114 -0
- package/packages/plugins/plugin-braze/src/methods/__tests__/track.test.ts +321 -0
- package/packages/plugins/plugin-braze/src/methods/flush.ts +5 -0
- package/packages/plugins/plugin-braze/tsconfig.json +10 -0
- package/packages/plugins/plugin-braze-middleware/CHANGELOG.md +32 -0
- package/packages/plugins/plugin-braze-middleware/LICENSE +21 -0
- package/packages/plugins/plugin-braze-middleware/README.md +67 -0
- package/packages/plugins/plugin-braze-middleware/babel.config.js +3 -0
- package/packages/plugins/plugin-braze-middleware/jest.config.js +5 -0
- package/packages/plugins/plugin-braze-middleware/package.json +72 -0
- package/packages/plugins/plugin-braze-middleware/release.config.js +3 -0
- package/packages/plugins/plugin-braze-middleware/src/BrazeMiddlewarePlugin.tsx +38 -0
- package/packages/plugins/plugin-braze-middleware/src/index.ts +1 -0
- package/packages/plugins/plugin-braze-middleware/tsconfig.json +10 -0
- package/packages/plugins/plugin-clevertap/CHANGELOG.md +32 -0
- package/packages/plugins/plugin-clevertap/LICENSE +21 -0
- package/packages/plugins/plugin-clevertap/README.md +71 -0
- package/packages/plugins/plugin-clevertap/babel.config.js +3 -0
- package/packages/plugins/plugin-clevertap/jest.config.js +5 -0
- package/packages/plugins/plugin-clevertap/package.json +72 -0
- package/packages/plugins/plugin-clevertap/release.config.js +3 -0
- package/packages/plugins/plugin-clevertap/src/ClevertapPlugin.ts +75 -0
- package/packages/plugins/plugin-clevertap/src/__mocks__/clevertap-react-native.ts +5 -0
- package/packages/plugins/plugin-clevertap/src/__tests__/ClevertapPlugin.test.ts +164 -0
- package/packages/plugins/plugin-clevertap/src/index.ts +1 -0
- package/packages/plugins/plugin-clevertap/src/parameterMapping.ts +19 -0
- package/packages/plugins/plugin-clevertap/tsconfig.json +10 -0
- package/packages/plugins/plugin-destination-filters/CHANGELOG.md +39 -0
- package/packages/plugins/plugin-destination-filters/LICENSE +21 -0
- package/packages/plugins/plugin-destination-filters/README.md +71 -0
- package/packages/plugins/plugin-destination-filters/babel.config.js +3 -0
- package/packages/plugins/plugin-destination-filters/jest.config.js +5 -0
- package/packages/plugins/plugin-destination-filters/package.json +77 -0
- package/packages/plugins/plugin-destination-filters/release.config.js +3 -0
- package/packages/plugins/plugin-destination-filters/src/DestinationFilters.ts +90 -0
- package/packages/plugins/plugin-destination-filters/src/__tests__/DestinationFilters.test.ts +102 -0
- package/packages/plugins/plugin-destination-filters/src/index.tsx +1 -0
- package/packages/plugins/plugin-destination-filters/tsconfig.json +10 -0
- package/packages/plugins/plugin-device-token/CHANGELOG.md +71 -0
- package/packages/plugins/plugin-device-token/LICENSE +21 -0
- package/packages/plugins/plugin-device-token/README.md +98 -0
- package/packages/plugins/plugin-device-token/babel.config.js +3 -0
- package/packages/plugins/plugin-device-token/jest.config.js +5 -0
- package/packages/plugins/plugin-device-token/package.json +76 -0
- package/packages/plugins/plugin-device-token/release.config.js +3 -0
- package/packages/plugins/plugin-device-token/src/DeviceTokenPlugin.tsx +94 -0
- package/packages/plugins/plugin-device-token/src/index.ts +1 -0
- package/packages/plugins/plugin-device-token/src/methods/___tests__/DeviceTokenPlugin.test.ts +94 -0
- package/packages/plugins/plugin-device-token/tsconfig.json +10 -0
- package/packages/plugins/plugin-facebook-app-events/CHANGELOG.md +78 -0
- package/packages/plugins/plugin-facebook-app-events/LICENSE +21 -0
- package/packages/plugins/plugin-facebook-app-events/README.md +73 -0
- package/packages/plugins/plugin-facebook-app-events/babel.config.js +3 -0
- package/packages/plugins/plugin-facebook-app-events/jest.config.js +5 -0
- package/packages/plugins/plugin-facebook-app-events/package.json +72 -0
- package/packages/plugins/plugin-facebook-app-events/release.config.js +3 -0
- package/packages/plugins/plugin-facebook-app-events/src/FacebookAppEventsPlugin.ts +192 -0
- package/packages/plugins/plugin-facebook-app-events/src/__tests__/FacebookAppEventsPlugin.test.ts +284 -0
- package/packages/plugins/plugin-facebook-app-events/src/index.ts +1 -0
- package/packages/plugins/plugin-facebook-app-events/src/methods/__tests__/screen.test.ts +33 -0
- package/packages/plugins/plugin-facebook-app-events/src/methods/screen.ts +35 -0
- package/packages/plugins/plugin-facebook-app-events/src/parameterMapping.ts +46 -0
- package/packages/plugins/plugin-facebook-app-events/src/utils.ts +12 -0
- package/packages/plugins/plugin-facebook-app-events/tsconfig.json +10 -0
- package/packages/plugins/plugin-firebase/CHANGELOG.md +102 -0
- package/packages/plugins/plugin-firebase/LICENSE +21 -0
- package/packages/plugins/plugin-firebase/README.md +72 -0
- package/packages/plugins/plugin-firebase/babel.config.js +3 -0
- package/packages/plugins/plugin-firebase/jest.config.js +5 -0
- package/packages/plugins/plugin-firebase/package.json +74 -0
- package/packages/plugins/plugin-firebase/release.config.js +3 -0
- package/packages/plugins/plugin-firebase/src/FirebasePlugin.tsx +96 -0
- package/packages/plugins/plugin-firebase/src/index.ts +1 -0
- package/packages/plugins/plugin-firebase/src/methods/___tests__/identify.test.ts +73 -0
- package/packages/plugins/plugin-firebase/src/methods/___tests__/reset.test.ts +20 -0
- package/packages/plugins/plugin-firebase/src/methods/___tests__/screen.test.ts +33 -0
- package/packages/plugins/plugin-firebase/src/methods/___tests__/track.test.ts +85 -0
- package/packages/plugins/plugin-firebase/src/methods/parameterMapping.ts +45 -0
- package/packages/plugins/plugin-firebase/src/methods/reset.ts +5 -0
- package/packages/plugins/plugin-firebase/src/methods/screen.ts +12 -0
- package/packages/plugins/plugin-firebase/src/methods/track.ts +26 -0
- package/packages/plugins/plugin-firebase/tsconfig.json +10 -0
- package/packages/plugins/plugin-idfa/CHANGELOG.md +62 -0
- package/packages/plugins/plugin-idfa/LICENSE +21 -0
- package/packages/plugins/plugin-idfa/README.md +105 -0
- package/packages/plugins/plugin-idfa/babel.config.js +3 -0
- package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa-Bridging-Header.h +2 -0
- package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa.m +11 -0
- package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa.swift +68 -0
- package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa.xcodeproj/project.pbxproj +293 -0
- package/packages/plugins/plugin-idfa/jest.config.js +5 -0
- package/packages/plugins/plugin-idfa/package.json +70 -0
- package/packages/plugins/plugin-idfa/release.config.js +3 -0
- package/packages/plugins/plugin-idfa/segment-analytics-react-native-plugin-idfa.podspec +19 -0
- package/packages/plugins/plugin-idfa/src/AnalyticsReactNativePluginIdfa.e2e.mock.ts +12 -0
- package/packages/plugins/plugin-idfa/src/AnalyticsReactNativePluginIdfa.ts +18 -0
- package/packages/plugins/plugin-idfa/src/IdfaPlugin.tsx +80 -0
- package/packages/plugins/plugin-idfa/src/index.ts +1 -0
- package/packages/plugins/plugin-idfa/src/types.ts +13 -0
- package/packages/plugins/plugin-idfa/tsconfig.json +10 -0
- package/packages/plugins/plugin-mixpanel/CHANGELOG.md +73 -0
- package/packages/plugins/plugin-mixpanel/LICENSE +21 -0
- package/packages/plugins/plugin-mixpanel/README.md +71 -0
- package/packages/plugins/plugin-mixpanel/babel.config.js +3 -0
- package/packages/plugins/plugin-mixpanel/jest.config.js +5 -0
- package/packages/plugins/plugin-mixpanel/package.json +72 -0
- package/packages/plugins/plugin-mixpanel/release.config.js +3 -0
- package/packages/plugins/plugin-mixpanel/src/MixpanelPlugin.ts +106 -0
- package/packages/plugins/plugin-mixpanel/src/index.ts +1 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__mocks__/mixpanel-react-native.ts +67 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/MixpanelPlugin.test.ts +57 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/__helpers__/constants.ts +18 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/alias.test.ts +47 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/group.test.ts +49 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/identify.test.ts +103 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/screen.test.ts +119 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/track.test.ts +110 -0
- package/packages/plugins/plugin-mixpanel/src/methods/alias.ts +28 -0
- package/packages/plugins/plugin-mixpanel/src/methods/group.ts +26 -0
- package/packages/plugins/plugin-mixpanel/src/methods/identify.ts +72 -0
- package/packages/plugins/plugin-mixpanel/src/methods/screen.ts +43 -0
- package/packages/plugins/plugin-mixpanel/src/methods/track.ts +60 -0
- package/packages/plugins/plugin-mixpanel/src/types.ts +15 -0
- package/packages/plugins/plugin-mixpanel/tsconfig.json +10 -0
- package/packages/plugins/plugin-onetrust/CHANGELOG.md +16 -0
- package/packages/plugins/plugin-onetrust/LICENSE +21 -0
- package/packages/plugins/plugin-onetrust/README.md +155 -0
- package/packages/plugins/plugin-onetrust/babel.config.js +3 -0
- package/packages/plugins/plugin-onetrust/jest.config.js +6 -0
- package/packages/plugins/plugin-onetrust/package.json +75 -0
- package/packages/plugins/plugin-onetrust/release.config.js +3 -0
- package/packages/plugins/plugin-onetrust/src/OneTrustProvider.ts +71 -0
- package/packages/plugins/plugin-onetrust/src/index.tsx +1 -0
- package/packages/plugins/plugin-onetrust/tsconfig.json +10 -0
- package/packages/shared/__mocks__/context.ts +35 -0
- package/packages/shared/__mocks__/react-native-get-random-values.ts +1 -0
- package/packages/shared/__mocks__/react-native.ts +53 -0
- package/packages/shared/__mocks__/uuid.ts +3 -0
- package/packages/shared/jest.config.base.js +38 -0
- package/packages/shared/package.json +19 -0
- package/packages/shared/src/setup.ts +7 -0
- package/packages/shared/tsconfig.json +15 -0
- package/packages/sovran/CHANGELOG.md +42 -0
- package/packages/sovran/CONTRIBUTING.md +196 -0
- package/packages/sovran/LICENSE +21 -0
- package/packages/sovran/README.md +174 -0
- package/packages/sovran/android/build.gradle +94 -0
- package/packages/sovran/android/gradle.properties +5 -0
- package/packages/sovran/android/src/main/AndroidManifest.xml +4 -0
- package/packages/sovran/android/src/main/AndroidManifestNew.xml +3 -0
- package/packages/sovran/android/src/main/java/com/reactnativesovran/Sovran.kt +45 -0
- package/packages/sovran/android/src/main/java/com/reactnativesovran/SovranModule.kt +55 -0
- package/packages/sovran/babel.config.js +3 -0
- package/packages/sovran/ios/Sovran-Bridging-Header.h +3 -0
- package/packages/sovran/ios/Sovran.m +8 -0
- package/packages/sovran/ios/Sovran.swift +67 -0
- package/packages/sovran/ios/Sovran.xcodeproj/project.pbxproj +279 -0
- package/packages/sovran/jest.config.js +5 -0
- package/packages/sovran/package.json +89 -0
- package/packages/sovran/release.config.js +3 -0
- package/packages/sovran/sovran-react-native.podspec +33 -0
- package/packages/sovran/src/__tests__/bridge.test.ts +39 -0
- package/packages/sovran/src/__tests__/index.test.tsx +1 -0
- package/packages/sovran/src/__tests__/store.test.ts +397 -0
- package/packages/sovran/src/bridge.ts +48 -0
- package/packages/sovran/src/index.tsx +52 -0
- package/packages/sovran/src/persistor/async-storage-persistor.ts +63 -0
- package/packages/sovran/src/persistor/index.ts +2 -0
- package/packages/sovran/src/persistor/persistor.ts +31 -0
- package/packages/sovran/src/store.ts +232 -0
- package/packages/sovran/tsconfig.json +9 -0
- package/release.config.js +13 -0
- package/tsconfig.json +44 -0
- package/tsconfig.linter.json +36 -0
|
@@ -0,0 +1,1425 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- boost (1.83.0)
|
|
3
|
+
- CocoaAsyncSocket (7.6.5)
|
|
4
|
+
- DoubleConversion (1.1.6)
|
|
5
|
+
- FBLazyVector (0.73.0)
|
|
6
|
+
- FBReactNativeSpec (0.73.0):
|
|
7
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
8
|
+
- RCTRequired (= 0.73.0)
|
|
9
|
+
- RCTTypeSafety (= 0.73.0)
|
|
10
|
+
- React-Core (= 0.73.0)
|
|
11
|
+
- React-jsi (= 0.73.0)
|
|
12
|
+
- ReactCommon/turbomodule/core (= 0.73.0)
|
|
13
|
+
- Flipper (0.201.0):
|
|
14
|
+
- Flipper-Folly (~> 2.6)
|
|
15
|
+
- Flipper-Boost-iOSX (1.76.0.1.11)
|
|
16
|
+
- Flipper-DoubleConversion (3.2.0.1)
|
|
17
|
+
- Flipper-Fmt (7.1.7)
|
|
18
|
+
- Flipper-Folly (2.6.10):
|
|
19
|
+
- Flipper-Boost-iOSX
|
|
20
|
+
- Flipper-DoubleConversion
|
|
21
|
+
- Flipper-Fmt (= 7.1.7)
|
|
22
|
+
- Flipper-Glog
|
|
23
|
+
- libevent (~> 2.1.12)
|
|
24
|
+
- OpenSSL-Universal (= 1.1.1100)
|
|
25
|
+
- Flipper-Glog (0.5.0.5)
|
|
26
|
+
- Flipper-PeerTalk (0.0.4)
|
|
27
|
+
- FlipperKit (0.201.0):
|
|
28
|
+
- FlipperKit/Core (= 0.201.0)
|
|
29
|
+
- FlipperKit/Core (0.201.0):
|
|
30
|
+
- Flipper (~> 0.201.0)
|
|
31
|
+
- FlipperKit/CppBridge
|
|
32
|
+
- FlipperKit/FBCxxFollyDynamicConvert
|
|
33
|
+
- FlipperKit/FBDefines
|
|
34
|
+
- FlipperKit/FKPortForwarding
|
|
35
|
+
- SocketRocket (~> 0.6.0)
|
|
36
|
+
- FlipperKit/CppBridge (0.201.0):
|
|
37
|
+
- Flipper (~> 0.201.0)
|
|
38
|
+
- FlipperKit/FBCxxFollyDynamicConvert (0.201.0):
|
|
39
|
+
- Flipper-Folly (~> 2.6)
|
|
40
|
+
- FlipperKit/FBDefines (0.201.0)
|
|
41
|
+
- FlipperKit/FKPortForwarding (0.201.0):
|
|
42
|
+
- CocoaAsyncSocket (~> 7.6)
|
|
43
|
+
- Flipper-PeerTalk (~> 0.0.4)
|
|
44
|
+
- FlipperKit/FlipperKitHighlightOverlay (0.201.0)
|
|
45
|
+
- FlipperKit/FlipperKitLayoutHelpers (0.201.0):
|
|
46
|
+
- FlipperKit/Core
|
|
47
|
+
- FlipperKit/FlipperKitHighlightOverlay
|
|
48
|
+
- FlipperKit/FlipperKitLayoutTextSearchable
|
|
49
|
+
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.201.0):
|
|
50
|
+
- FlipperKit/Core
|
|
51
|
+
- FlipperKit/FlipperKitHighlightOverlay
|
|
52
|
+
- FlipperKit/FlipperKitLayoutHelpers
|
|
53
|
+
- FlipperKit/FlipperKitLayoutPlugin (0.201.0):
|
|
54
|
+
- FlipperKit/Core
|
|
55
|
+
- FlipperKit/FlipperKitHighlightOverlay
|
|
56
|
+
- FlipperKit/FlipperKitLayoutHelpers
|
|
57
|
+
- FlipperKit/FlipperKitLayoutIOSDescriptors
|
|
58
|
+
- FlipperKit/FlipperKitLayoutTextSearchable
|
|
59
|
+
- FlipperKit/FlipperKitLayoutTextSearchable (0.201.0)
|
|
60
|
+
- FlipperKit/FlipperKitNetworkPlugin (0.201.0):
|
|
61
|
+
- FlipperKit/Core
|
|
62
|
+
- FlipperKit/FlipperKitReactPlugin (0.201.0):
|
|
63
|
+
- FlipperKit/Core
|
|
64
|
+
- FlipperKit/FlipperKitUserDefaultsPlugin (0.201.0):
|
|
65
|
+
- FlipperKit/Core
|
|
66
|
+
- FlipperKit/SKIOSNetworkPlugin (0.201.0):
|
|
67
|
+
- FlipperKit/Core
|
|
68
|
+
- FlipperKit/FlipperKitNetworkPlugin
|
|
69
|
+
- fmt (6.2.1)
|
|
70
|
+
- glog (0.3.5)
|
|
71
|
+
- hermes-engine (0.73.0):
|
|
72
|
+
- hermes-engine/Pre-built (= 0.73.0)
|
|
73
|
+
- hermes-engine/Pre-built (0.73.0)
|
|
74
|
+
- libevent (2.1.12)
|
|
75
|
+
- OpenSSL-Universal (1.1.1100)
|
|
76
|
+
- RCT-Folly (2022.05.16.00):
|
|
77
|
+
- boost
|
|
78
|
+
- DoubleConversion
|
|
79
|
+
- fmt (~> 6.2.1)
|
|
80
|
+
- glog
|
|
81
|
+
- RCT-Folly/Default (= 2022.05.16.00)
|
|
82
|
+
- RCT-Folly/Default (2022.05.16.00):
|
|
83
|
+
- boost
|
|
84
|
+
- DoubleConversion
|
|
85
|
+
- fmt (~> 6.2.1)
|
|
86
|
+
- glog
|
|
87
|
+
- RCT-Folly/Fabric (2022.05.16.00):
|
|
88
|
+
- boost
|
|
89
|
+
- DoubleConversion
|
|
90
|
+
- fmt (~> 6.2.1)
|
|
91
|
+
- glog
|
|
92
|
+
- RCT-Folly/Futures (2022.05.16.00):
|
|
93
|
+
- boost
|
|
94
|
+
- DoubleConversion
|
|
95
|
+
- fmt (~> 6.2.1)
|
|
96
|
+
- glog
|
|
97
|
+
- libevent
|
|
98
|
+
- RCTRequired (0.73.0)
|
|
99
|
+
- RCTTypeSafety (0.73.0):
|
|
100
|
+
- FBLazyVector (= 0.73.0)
|
|
101
|
+
- RCTRequired (= 0.73.0)
|
|
102
|
+
- React-Core (= 0.73.0)
|
|
103
|
+
- React (0.73.0):
|
|
104
|
+
- React-Core (= 0.73.0)
|
|
105
|
+
- React-Core/DevSupport (= 0.73.0)
|
|
106
|
+
- React-Core/RCTWebSocket (= 0.73.0)
|
|
107
|
+
- React-RCTActionSheet (= 0.73.0)
|
|
108
|
+
- React-RCTAnimation (= 0.73.0)
|
|
109
|
+
- React-RCTBlob (= 0.73.0)
|
|
110
|
+
- React-RCTImage (= 0.73.0)
|
|
111
|
+
- React-RCTLinking (= 0.73.0)
|
|
112
|
+
- React-RCTNetwork (= 0.73.0)
|
|
113
|
+
- React-RCTSettings (= 0.73.0)
|
|
114
|
+
- React-RCTText (= 0.73.0)
|
|
115
|
+
- React-RCTVibration (= 0.73.0)
|
|
116
|
+
- React-callinvoker (0.73.0)
|
|
117
|
+
- React-Codegen (0.73.0):
|
|
118
|
+
- DoubleConversion
|
|
119
|
+
- FBReactNativeSpec
|
|
120
|
+
- glog
|
|
121
|
+
- hermes-engine
|
|
122
|
+
- RCT-Folly
|
|
123
|
+
- RCTRequired
|
|
124
|
+
- RCTTypeSafety
|
|
125
|
+
- React-Core
|
|
126
|
+
- React-jsi
|
|
127
|
+
- React-jsiexecutor
|
|
128
|
+
- React-NativeModulesApple
|
|
129
|
+
- React-rncore
|
|
130
|
+
- ReactCommon/turbomodule/bridging
|
|
131
|
+
- ReactCommon/turbomodule/core
|
|
132
|
+
- React-Core (0.73.0):
|
|
133
|
+
- glog
|
|
134
|
+
- hermes-engine
|
|
135
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
136
|
+
- React-Core/Default (= 0.73.0)
|
|
137
|
+
- React-cxxreact
|
|
138
|
+
- React-hermes
|
|
139
|
+
- React-jsi
|
|
140
|
+
- React-jsiexecutor
|
|
141
|
+
- React-perflogger
|
|
142
|
+
- React-runtimescheduler
|
|
143
|
+
- React-utils
|
|
144
|
+
- SocketRocket (= 0.6.1)
|
|
145
|
+
- Yoga
|
|
146
|
+
- React-Core/CoreModulesHeaders (0.73.0):
|
|
147
|
+
- glog
|
|
148
|
+
- hermes-engine
|
|
149
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
150
|
+
- React-Core/Default
|
|
151
|
+
- React-cxxreact
|
|
152
|
+
- React-hermes
|
|
153
|
+
- React-jsi
|
|
154
|
+
- React-jsiexecutor
|
|
155
|
+
- React-perflogger
|
|
156
|
+
- React-runtimescheduler
|
|
157
|
+
- React-utils
|
|
158
|
+
- SocketRocket (= 0.6.1)
|
|
159
|
+
- Yoga
|
|
160
|
+
- React-Core/Default (0.73.0):
|
|
161
|
+
- glog
|
|
162
|
+
- hermes-engine
|
|
163
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
164
|
+
- React-cxxreact
|
|
165
|
+
- React-hermes
|
|
166
|
+
- React-jsi
|
|
167
|
+
- React-jsiexecutor
|
|
168
|
+
- React-perflogger
|
|
169
|
+
- React-runtimescheduler
|
|
170
|
+
- React-utils
|
|
171
|
+
- SocketRocket (= 0.6.1)
|
|
172
|
+
- Yoga
|
|
173
|
+
- React-Core/DevSupport (0.73.0):
|
|
174
|
+
- glog
|
|
175
|
+
- hermes-engine
|
|
176
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
177
|
+
- React-Core/Default (= 0.73.0)
|
|
178
|
+
- React-Core/RCTWebSocket (= 0.73.0)
|
|
179
|
+
- React-cxxreact
|
|
180
|
+
- React-hermes
|
|
181
|
+
- React-jsi
|
|
182
|
+
- React-jsiexecutor
|
|
183
|
+
- React-jsinspector (= 0.73.0)
|
|
184
|
+
- React-perflogger
|
|
185
|
+
- React-runtimescheduler
|
|
186
|
+
- React-utils
|
|
187
|
+
- SocketRocket (= 0.6.1)
|
|
188
|
+
- Yoga
|
|
189
|
+
- React-Core/RCTActionSheetHeaders (0.73.0):
|
|
190
|
+
- glog
|
|
191
|
+
- hermes-engine
|
|
192
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
193
|
+
- React-Core/Default
|
|
194
|
+
- React-cxxreact
|
|
195
|
+
- React-hermes
|
|
196
|
+
- React-jsi
|
|
197
|
+
- React-jsiexecutor
|
|
198
|
+
- React-perflogger
|
|
199
|
+
- React-runtimescheduler
|
|
200
|
+
- React-utils
|
|
201
|
+
- SocketRocket (= 0.6.1)
|
|
202
|
+
- Yoga
|
|
203
|
+
- React-Core/RCTAnimationHeaders (0.73.0):
|
|
204
|
+
- glog
|
|
205
|
+
- hermes-engine
|
|
206
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
207
|
+
- React-Core/Default
|
|
208
|
+
- React-cxxreact
|
|
209
|
+
- React-hermes
|
|
210
|
+
- React-jsi
|
|
211
|
+
- React-jsiexecutor
|
|
212
|
+
- React-perflogger
|
|
213
|
+
- React-runtimescheduler
|
|
214
|
+
- React-utils
|
|
215
|
+
- SocketRocket (= 0.6.1)
|
|
216
|
+
- Yoga
|
|
217
|
+
- React-Core/RCTBlobHeaders (0.73.0):
|
|
218
|
+
- glog
|
|
219
|
+
- hermes-engine
|
|
220
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
221
|
+
- React-Core/Default
|
|
222
|
+
- React-cxxreact
|
|
223
|
+
- React-hermes
|
|
224
|
+
- React-jsi
|
|
225
|
+
- React-jsiexecutor
|
|
226
|
+
- React-perflogger
|
|
227
|
+
- React-runtimescheduler
|
|
228
|
+
- React-utils
|
|
229
|
+
- SocketRocket (= 0.6.1)
|
|
230
|
+
- Yoga
|
|
231
|
+
- React-Core/RCTImageHeaders (0.73.0):
|
|
232
|
+
- glog
|
|
233
|
+
- hermes-engine
|
|
234
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
235
|
+
- React-Core/Default
|
|
236
|
+
- React-cxxreact
|
|
237
|
+
- React-hermes
|
|
238
|
+
- React-jsi
|
|
239
|
+
- React-jsiexecutor
|
|
240
|
+
- React-perflogger
|
|
241
|
+
- React-runtimescheduler
|
|
242
|
+
- React-utils
|
|
243
|
+
- SocketRocket (= 0.6.1)
|
|
244
|
+
- Yoga
|
|
245
|
+
- React-Core/RCTLinkingHeaders (0.73.0):
|
|
246
|
+
- glog
|
|
247
|
+
- hermes-engine
|
|
248
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
249
|
+
- React-Core/Default
|
|
250
|
+
- React-cxxreact
|
|
251
|
+
- React-hermes
|
|
252
|
+
- React-jsi
|
|
253
|
+
- React-jsiexecutor
|
|
254
|
+
- React-perflogger
|
|
255
|
+
- React-runtimescheduler
|
|
256
|
+
- React-utils
|
|
257
|
+
- SocketRocket (= 0.6.1)
|
|
258
|
+
- Yoga
|
|
259
|
+
- React-Core/RCTNetworkHeaders (0.73.0):
|
|
260
|
+
- glog
|
|
261
|
+
- hermes-engine
|
|
262
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
263
|
+
- React-Core/Default
|
|
264
|
+
- React-cxxreact
|
|
265
|
+
- React-hermes
|
|
266
|
+
- React-jsi
|
|
267
|
+
- React-jsiexecutor
|
|
268
|
+
- React-perflogger
|
|
269
|
+
- React-runtimescheduler
|
|
270
|
+
- React-utils
|
|
271
|
+
- SocketRocket (= 0.6.1)
|
|
272
|
+
- Yoga
|
|
273
|
+
- React-Core/RCTSettingsHeaders (0.73.0):
|
|
274
|
+
- glog
|
|
275
|
+
- hermes-engine
|
|
276
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
277
|
+
- React-Core/Default
|
|
278
|
+
- React-cxxreact
|
|
279
|
+
- React-hermes
|
|
280
|
+
- React-jsi
|
|
281
|
+
- React-jsiexecutor
|
|
282
|
+
- React-perflogger
|
|
283
|
+
- React-runtimescheduler
|
|
284
|
+
- React-utils
|
|
285
|
+
- SocketRocket (= 0.6.1)
|
|
286
|
+
- Yoga
|
|
287
|
+
- React-Core/RCTTextHeaders (0.73.0):
|
|
288
|
+
- glog
|
|
289
|
+
- hermes-engine
|
|
290
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
291
|
+
- React-Core/Default
|
|
292
|
+
- React-cxxreact
|
|
293
|
+
- React-hermes
|
|
294
|
+
- React-jsi
|
|
295
|
+
- React-jsiexecutor
|
|
296
|
+
- React-perflogger
|
|
297
|
+
- React-runtimescheduler
|
|
298
|
+
- React-utils
|
|
299
|
+
- SocketRocket (= 0.6.1)
|
|
300
|
+
- Yoga
|
|
301
|
+
- React-Core/RCTVibrationHeaders (0.73.0):
|
|
302
|
+
- glog
|
|
303
|
+
- hermes-engine
|
|
304
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
305
|
+
- React-Core/Default
|
|
306
|
+
- React-cxxreact
|
|
307
|
+
- React-hermes
|
|
308
|
+
- React-jsi
|
|
309
|
+
- React-jsiexecutor
|
|
310
|
+
- React-perflogger
|
|
311
|
+
- React-runtimescheduler
|
|
312
|
+
- React-utils
|
|
313
|
+
- SocketRocket (= 0.6.1)
|
|
314
|
+
- Yoga
|
|
315
|
+
- React-Core/RCTWebSocket (0.73.0):
|
|
316
|
+
- glog
|
|
317
|
+
- hermes-engine
|
|
318
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
319
|
+
- React-Core/Default (= 0.73.0)
|
|
320
|
+
- React-cxxreact
|
|
321
|
+
- React-hermes
|
|
322
|
+
- React-jsi
|
|
323
|
+
- React-jsiexecutor
|
|
324
|
+
- React-perflogger
|
|
325
|
+
- React-runtimescheduler
|
|
326
|
+
- React-utils
|
|
327
|
+
- SocketRocket (= 0.6.1)
|
|
328
|
+
- Yoga
|
|
329
|
+
- React-CoreModules (0.73.0):
|
|
330
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
331
|
+
- RCTTypeSafety (= 0.73.0)
|
|
332
|
+
- React-Codegen
|
|
333
|
+
- React-Core/CoreModulesHeaders (= 0.73.0)
|
|
334
|
+
- React-jsi (= 0.73.0)
|
|
335
|
+
- React-NativeModulesApple
|
|
336
|
+
- React-RCTBlob
|
|
337
|
+
- React-RCTImage (= 0.73.0)
|
|
338
|
+
- ReactCommon
|
|
339
|
+
- SocketRocket (= 0.6.1)
|
|
340
|
+
- React-cxxreact (0.73.0):
|
|
341
|
+
- boost (= 1.83.0)
|
|
342
|
+
- DoubleConversion
|
|
343
|
+
- fmt (~> 6.2.1)
|
|
344
|
+
- glog
|
|
345
|
+
- hermes-engine
|
|
346
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
347
|
+
- React-callinvoker (= 0.73.0)
|
|
348
|
+
- React-debug (= 0.73.0)
|
|
349
|
+
- React-jsi (= 0.73.0)
|
|
350
|
+
- React-jsinspector (= 0.73.0)
|
|
351
|
+
- React-logger (= 0.73.0)
|
|
352
|
+
- React-perflogger (= 0.73.0)
|
|
353
|
+
- React-runtimeexecutor (= 0.73.0)
|
|
354
|
+
- React-debug (0.73.0)
|
|
355
|
+
- React-Fabric (0.73.0):
|
|
356
|
+
- DoubleConversion
|
|
357
|
+
- fmt (~> 6.2.1)
|
|
358
|
+
- glog
|
|
359
|
+
- hermes-engine
|
|
360
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
361
|
+
- RCTRequired
|
|
362
|
+
- RCTTypeSafety
|
|
363
|
+
- React-Core
|
|
364
|
+
- React-cxxreact
|
|
365
|
+
- React-debug
|
|
366
|
+
- React-Fabric/animations (= 0.73.0)
|
|
367
|
+
- React-Fabric/attributedstring (= 0.73.0)
|
|
368
|
+
- React-Fabric/componentregistry (= 0.73.0)
|
|
369
|
+
- React-Fabric/componentregistrynative (= 0.73.0)
|
|
370
|
+
- React-Fabric/components (= 0.73.0)
|
|
371
|
+
- React-Fabric/core (= 0.73.0)
|
|
372
|
+
- React-Fabric/imagemanager (= 0.73.0)
|
|
373
|
+
- React-Fabric/leakchecker (= 0.73.0)
|
|
374
|
+
- React-Fabric/mounting (= 0.73.0)
|
|
375
|
+
- React-Fabric/scheduler (= 0.73.0)
|
|
376
|
+
- React-Fabric/telemetry (= 0.73.0)
|
|
377
|
+
- React-Fabric/templateprocessor (= 0.73.0)
|
|
378
|
+
- React-Fabric/textlayoutmanager (= 0.73.0)
|
|
379
|
+
- React-Fabric/uimanager (= 0.73.0)
|
|
380
|
+
- React-graphics
|
|
381
|
+
- React-jsi
|
|
382
|
+
- React-jsiexecutor
|
|
383
|
+
- React-logger
|
|
384
|
+
- React-rendererdebug
|
|
385
|
+
- React-runtimescheduler
|
|
386
|
+
- React-utils
|
|
387
|
+
- ReactCommon/turbomodule/core
|
|
388
|
+
- React-Fabric/animations (0.73.0):
|
|
389
|
+
- DoubleConversion
|
|
390
|
+
- fmt (~> 6.2.1)
|
|
391
|
+
- glog
|
|
392
|
+
- hermes-engine
|
|
393
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
394
|
+
- RCTRequired
|
|
395
|
+
- RCTTypeSafety
|
|
396
|
+
- React-Core
|
|
397
|
+
- React-cxxreact
|
|
398
|
+
- React-debug
|
|
399
|
+
- React-graphics
|
|
400
|
+
- React-jsi
|
|
401
|
+
- React-jsiexecutor
|
|
402
|
+
- React-logger
|
|
403
|
+
- React-rendererdebug
|
|
404
|
+
- React-runtimescheduler
|
|
405
|
+
- React-utils
|
|
406
|
+
- ReactCommon/turbomodule/core
|
|
407
|
+
- React-Fabric/attributedstring (0.73.0):
|
|
408
|
+
- DoubleConversion
|
|
409
|
+
- fmt (~> 6.2.1)
|
|
410
|
+
- glog
|
|
411
|
+
- hermes-engine
|
|
412
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
413
|
+
- RCTRequired
|
|
414
|
+
- RCTTypeSafety
|
|
415
|
+
- React-Core
|
|
416
|
+
- React-cxxreact
|
|
417
|
+
- React-debug
|
|
418
|
+
- React-graphics
|
|
419
|
+
- React-jsi
|
|
420
|
+
- React-jsiexecutor
|
|
421
|
+
- React-logger
|
|
422
|
+
- React-rendererdebug
|
|
423
|
+
- React-runtimescheduler
|
|
424
|
+
- React-utils
|
|
425
|
+
- ReactCommon/turbomodule/core
|
|
426
|
+
- React-Fabric/componentregistry (0.73.0):
|
|
427
|
+
- DoubleConversion
|
|
428
|
+
- fmt (~> 6.2.1)
|
|
429
|
+
- glog
|
|
430
|
+
- hermes-engine
|
|
431
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
432
|
+
- RCTRequired
|
|
433
|
+
- RCTTypeSafety
|
|
434
|
+
- React-Core
|
|
435
|
+
- React-cxxreact
|
|
436
|
+
- React-debug
|
|
437
|
+
- React-graphics
|
|
438
|
+
- React-jsi
|
|
439
|
+
- React-jsiexecutor
|
|
440
|
+
- React-logger
|
|
441
|
+
- React-rendererdebug
|
|
442
|
+
- React-runtimescheduler
|
|
443
|
+
- React-utils
|
|
444
|
+
- ReactCommon/turbomodule/core
|
|
445
|
+
- React-Fabric/componentregistrynative (0.73.0):
|
|
446
|
+
- DoubleConversion
|
|
447
|
+
- fmt (~> 6.2.1)
|
|
448
|
+
- glog
|
|
449
|
+
- hermes-engine
|
|
450
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
451
|
+
- RCTRequired
|
|
452
|
+
- RCTTypeSafety
|
|
453
|
+
- React-Core
|
|
454
|
+
- React-cxxreact
|
|
455
|
+
- React-debug
|
|
456
|
+
- React-graphics
|
|
457
|
+
- React-jsi
|
|
458
|
+
- React-jsiexecutor
|
|
459
|
+
- React-logger
|
|
460
|
+
- React-rendererdebug
|
|
461
|
+
- React-runtimescheduler
|
|
462
|
+
- React-utils
|
|
463
|
+
- ReactCommon/turbomodule/core
|
|
464
|
+
- React-Fabric/components (0.73.0):
|
|
465
|
+
- DoubleConversion
|
|
466
|
+
- fmt (~> 6.2.1)
|
|
467
|
+
- glog
|
|
468
|
+
- hermes-engine
|
|
469
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
470
|
+
- RCTRequired
|
|
471
|
+
- RCTTypeSafety
|
|
472
|
+
- React-Core
|
|
473
|
+
- React-cxxreact
|
|
474
|
+
- React-debug
|
|
475
|
+
- React-Fabric/components/inputaccessory (= 0.73.0)
|
|
476
|
+
- React-Fabric/components/legacyviewmanagerinterop (= 0.73.0)
|
|
477
|
+
- React-Fabric/components/modal (= 0.73.0)
|
|
478
|
+
- React-Fabric/components/rncore (= 0.73.0)
|
|
479
|
+
- React-Fabric/components/root (= 0.73.0)
|
|
480
|
+
- React-Fabric/components/safeareaview (= 0.73.0)
|
|
481
|
+
- React-Fabric/components/scrollview (= 0.73.0)
|
|
482
|
+
- React-Fabric/components/text (= 0.73.0)
|
|
483
|
+
- React-Fabric/components/textinput (= 0.73.0)
|
|
484
|
+
- React-Fabric/components/unimplementedview (= 0.73.0)
|
|
485
|
+
- React-Fabric/components/view (= 0.73.0)
|
|
486
|
+
- React-graphics
|
|
487
|
+
- React-jsi
|
|
488
|
+
- React-jsiexecutor
|
|
489
|
+
- React-logger
|
|
490
|
+
- React-rendererdebug
|
|
491
|
+
- React-runtimescheduler
|
|
492
|
+
- React-utils
|
|
493
|
+
- ReactCommon/turbomodule/core
|
|
494
|
+
- React-Fabric/components/inputaccessory (0.73.0):
|
|
495
|
+
- DoubleConversion
|
|
496
|
+
- fmt (~> 6.2.1)
|
|
497
|
+
- glog
|
|
498
|
+
- hermes-engine
|
|
499
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
500
|
+
- RCTRequired
|
|
501
|
+
- RCTTypeSafety
|
|
502
|
+
- React-Core
|
|
503
|
+
- React-cxxreact
|
|
504
|
+
- React-debug
|
|
505
|
+
- React-graphics
|
|
506
|
+
- React-jsi
|
|
507
|
+
- React-jsiexecutor
|
|
508
|
+
- React-logger
|
|
509
|
+
- React-rendererdebug
|
|
510
|
+
- React-runtimescheduler
|
|
511
|
+
- React-utils
|
|
512
|
+
- ReactCommon/turbomodule/core
|
|
513
|
+
- React-Fabric/components/legacyviewmanagerinterop (0.73.0):
|
|
514
|
+
- DoubleConversion
|
|
515
|
+
- fmt (~> 6.2.1)
|
|
516
|
+
- glog
|
|
517
|
+
- hermes-engine
|
|
518
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
519
|
+
- RCTRequired
|
|
520
|
+
- RCTTypeSafety
|
|
521
|
+
- React-Core
|
|
522
|
+
- React-cxxreact
|
|
523
|
+
- React-debug
|
|
524
|
+
- React-graphics
|
|
525
|
+
- React-jsi
|
|
526
|
+
- React-jsiexecutor
|
|
527
|
+
- React-logger
|
|
528
|
+
- React-rendererdebug
|
|
529
|
+
- React-runtimescheduler
|
|
530
|
+
- React-utils
|
|
531
|
+
- ReactCommon/turbomodule/core
|
|
532
|
+
- React-Fabric/components/modal (0.73.0):
|
|
533
|
+
- DoubleConversion
|
|
534
|
+
- fmt (~> 6.2.1)
|
|
535
|
+
- glog
|
|
536
|
+
- hermes-engine
|
|
537
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
538
|
+
- RCTRequired
|
|
539
|
+
- RCTTypeSafety
|
|
540
|
+
- React-Core
|
|
541
|
+
- React-cxxreact
|
|
542
|
+
- React-debug
|
|
543
|
+
- React-graphics
|
|
544
|
+
- React-jsi
|
|
545
|
+
- React-jsiexecutor
|
|
546
|
+
- React-logger
|
|
547
|
+
- React-rendererdebug
|
|
548
|
+
- React-runtimescheduler
|
|
549
|
+
- React-utils
|
|
550
|
+
- ReactCommon/turbomodule/core
|
|
551
|
+
- React-Fabric/components/rncore (0.73.0):
|
|
552
|
+
- DoubleConversion
|
|
553
|
+
- fmt (~> 6.2.1)
|
|
554
|
+
- glog
|
|
555
|
+
- hermes-engine
|
|
556
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
557
|
+
- RCTRequired
|
|
558
|
+
- RCTTypeSafety
|
|
559
|
+
- React-Core
|
|
560
|
+
- React-cxxreact
|
|
561
|
+
- React-debug
|
|
562
|
+
- React-graphics
|
|
563
|
+
- React-jsi
|
|
564
|
+
- React-jsiexecutor
|
|
565
|
+
- React-logger
|
|
566
|
+
- React-rendererdebug
|
|
567
|
+
- React-runtimescheduler
|
|
568
|
+
- React-utils
|
|
569
|
+
- ReactCommon/turbomodule/core
|
|
570
|
+
- React-Fabric/components/root (0.73.0):
|
|
571
|
+
- DoubleConversion
|
|
572
|
+
- fmt (~> 6.2.1)
|
|
573
|
+
- glog
|
|
574
|
+
- hermes-engine
|
|
575
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
576
|
+
- RCTRequired
|
|
577
|
+
- RCTTypeSafety
|
|
578
|
+
- React-Core
|
|
579
|
+
- React-cxxreact
|
|
580
|
+
- React-debug
|
|
581
|
+
- React-graphics
|
|
582
|
+
- React-jsi
|
|
583
|
+
- React-jsiexecutor
|
|
584
|
+
- React-logger
|
|
585
|
+
- React-rendererdebug
|
|
586
|
+
- React-runtimescheduler
|
|
587
|
+
- React-utils
|
|
588
|
+
- ReactCommon/turbomodule/core
|
|
589
|
+
- React-Fabric/components/safeareaview (0.73.0):
|
|
590
|
+
- DoubleConversion
|
|
591
|
+
- fmt (~> 6.2.1)
|
|
592
|
+
- glog
|
|
593
|
+
- hermes-engine
|
|
594
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
595
|
+
- RCTRequired
|
|
596
|
+
- RCTTypeSafety
|
|
597
|
+
- React-Core
|
|
598
|
+
- React-cxxreact
|
|
599
|
+
- React-debug
|
|
600
|
+
- React-graphics
|
|
601
|
+
- React-jsi
|
|
602
|
+
- React-jsiexecutor
|
|
603
|
+
- React-logger
|
|
604
|
+
- React-rendererdebug
|
|
605
|
+
- React-runtimescheduler
|
|
606
|
+
- React-utils
|
|
607
|
+
- ReactCommon/turbomodule/core
|
|
608
|
+
- React-Fabric/components/scrollview (0.73.0):
|
|
609
|
+
- DoubleConversion
|
|
610
|
+
- fmt (~> 6.2.1)
|
|
611
|
+
- glog
|
|
612
|
+
- hermes-engine
|
|
613
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
614
|
+
- RCTRequired
|
|
615
|
+
- RCTTypeSafety
|
|
616
|
+
- React-Core
|
|
617
|
+
- React-cxxreact
|
|
618
|
+
- React-debug
|
|
619
|
+
- React-graphics
|
|
620
|
+
- React-jsi
|
|
621
|
+
- React-jsiexecutor
|
|
622
|
+
- React-logger
|
|
623
|
+
- React-rendererdebug
|
|
624
|
+
- React-runtimescheduler
|
|
625
|
+
- React-utils
|
|
626
|
+
- ReactCommon/turbomodule/core
|
|
627
|
+
- React-Fabric/components/text (0.73.0):
|
|
628
|
+
- DoubleConversion
|
|
629
|
+
- fmt (~> 6.2.1)
|
|
630
|
+
- glog
|
|
631
|
+
- hermes-engine
|
|
632
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
633
|
+
- RCTRequired
|
|
634
|
+
- RCTTypeSafety
|
|
635
|
+
- React-Core
|
|
636
|
+
- React-cxxreact
|
|
637
|
+
- React-debug
|
|
638
|
+
- React-graphics
|
|
639
|
+
- React-jsi
|
|
640
|
+
- React-jsiexecutor
|
|
641
|
+
- React-logger
|
|
642
|
+
- React-rendererdebug
|
|
643
|
+
- React-runtimescheduler
|
|
644
|
+
- React-utils
|
|
645
|
+
- ReactCommon/turbomodule/core
|
|
646
|
+
- React-Fabric/components/textinput (0.73.0):
|
|
647
|
+
- DoubleConversion
|
|
648
|
+
- fmt (~> 6.2.1)
|
|
649
|
+
- glog
|
|
650
|
+
- hermes-engine
|
|
651
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
652
|
+
- RCTRequired
|
|
653
|
+
- RCTTypeSafety
|
|
654
|
+
- React-Core
|
|
655
|
+
- React-cxxreact
|
|
656
|
+
- React-debug
|
|
657
|
+
- React-graphics
|
|
658
|
+
- React-jsi
|
|
659
|
+
- React-jsiexecutor
|
|
660
|
+
- React-logger
|
|
661
|
+
- React-rendererdebug
|
|
662
|
+
- React-runtimescheduler
|
|
663
|
+
- React-utils
|
|
664
|
+
- ReactCommon/turbomodule/core
|
|
665
|
+
- React-Fabric/components/unimplementedview (0.73.0):
|
|
666
|
+
- DoubleConversion
|
|
667
|
+
- fmt (~> 6.2.1)
|
|
668
|
+
- glog
|
|
669
|
+
- hermes-engine
|
|
670
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
671
|
+
- RCTRequired
|
|
672
|
+
- RCTTypeSafety
|
|
673
|
+
- React-Core
|
|
674
|
+
- React-cxxreact
|
|
675
|
+
- React-debug
|
|
676
|
+
- React-graphics
|
|
677
|
+
- React-jsi
|
|
678
|
+
- React-jsiexecutor
|
|
679
|
+
- React-logger
|
|
680
|
+
- React-rendererdebug
|
|
681
|
+
- React-runtimescheduler
|
|
682
|
+
- React-utils
|
|
683
|
+
- ReactCommon/turbomodule/core
|
|
684
|
+
- React-Fabric/components/view (0.73.0):
|
|
685
|
+
- DoubleConversion
|
|
686
|
+
- fmt (~> 6.2.1)
|
|
687
|
+
- glog
|
|
688
|
+
- hermes-engine
|
|
689
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
690
|
+
- RCTRequired
|
|
691
|
+
- RCTTypeSafety
|
|
692
|
+
- React-Core
|
|
693
|
+
- React-cxxreact
|
|
694
|
+
- React-debug
|
|
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
|
+
- Yoga
|
|
704
|
+
- React-Fabric/core (0.73.0):
|
|
705
|
+
- DoubleConversion
|
|
706
|
+
- fmt (~> 6.2.1)
|
|
707
|
+
- glog
|
|
708
|
+
- hermes-engine
|
|
709
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
710
|
+
- RCTRequired
|
|
711
|
+
- RCTTypeSafety
|
|
712
|
+
- React-Core
|
|
713
|
+
- React-cxxreact
|
|
714
|
+
- React-debug
|
|
715
|
+
- React-graphics
|
|
716
|
+
- React-jsi
|
|
717
|
+
- React-jsiexecutor
|
|
718
|
+
- React-logger
|
|
719
|
+
- React-rendererdebug
|
|
720
|
+
- React-runtimescheduler
|
|
721
|
+
- React-utils
|
|
722
|
+
- ReactCommon/turbomodule/core
|
|
723
|
+
- React-Fabric/imagemanager (0.73.0):
|
|
724
|
+
- DoubleConversion
|
|
725
|
+
- fmt (~> 6.2.1)
|
|
726
|
+
- glog
|
|
727
|
+
- hermes-engine
|
|
728
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
729
|
+
- RCTRequired
|
|
730
|
+
- RCTTypeSafety
|
|
731
|
+
- React-Core
|
|
732
|
+
- React-cxxreact
|
|
733
|
+
- React-debug
|
|
734
|
+
- React-graphics
|
|
735
|
+
- React-jsi
|
|
736
|
+
- React-jsiexecutor
|
|
737
|
+
- React-logger
|
|
738
|
+
- React-rendererdebug
|
|
739
|
+
- React-runtimescheduler
|
|
740
|
+
- React-utils
|
|
741
|
+
- ReactCommon/turbomodule/core
|
|
742
|
+
- React-Fabric/leakchecker (0.73.0):
|
|
743
|
+
- DoubleConversion
|
|
744
|
+
- fmt (~> 6.2.1)
|
|
745
|
+
- glog
|
|
746
|
+
- hermes-engine
|
|
747
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
748
|
+
- RCTRequired
|
|
749
|
+
- RCTTypeSafety
|
|
750
|
+
- React-Core
|
|
751
|
+
- React-cxxreact
|
|
752
|
+
- React-debug
|
|
753
|
+
- React-graphics
|
|
754
|
+
- React-jsi
|
|
755
|
+
- React-jsiexecutor
|
|
756
|
+
- React-logger
|
|
757
|
+
- React-rendererdebug
|
|
758
|
+
- React-runtimescheduler
|
|
759
|
+
- React-utils
|
|
760
|
+
- ReactCommon/turbomodule/core
|
|
761
|
+
- React-Fabric/mounting (0.73.0):
|
|
762
|
+
- DoubleConversion
|
|
763
|
+
- fmt (~> 6.2.1)
|
|
764
|
+
- glog
|
|
765
|
+
- hermes-engine
|
|
766
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
767
|
+
- RCTRequired
|
|
768
|
+
- RCTTypeSafety
|
|
769
|
+
- React-Core
|
|
770
|
+
- React-cxxreact
|
|
771
|
+
- React-debug
|
|
772
|
+
- React-graphics
|
|
773
|
+
- React-jsi
|
|
774
|
+
- React-jsiexecutor
|
|
775
|
+
- React-logger
|
|
776
|
+
- React-rendererdebug
|
|
777
|
+
- React-runtimescheduler
|
|
778
|
+
- React-utils
|
|
779
|
+
- ReactCommon/turbomodule/core
|
|
780
|
+
- React-Fabric/scheduler (0.73.0):
|
|
781
|
+
- DoubleConversion
|
|
782
|
+
- fmt (~> 6.2.1)
|
|
783
|
+
- glog
|
|
784
|
+
- hermes-engine
|
|
785
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
786
|
+
- RCTRequired
|
|
787
|
+
- RCTTypeSafety
|
|
788
|
+
- React-Core
|
|
789
|
+
- React-cxxreact
|
|
790
|
+
- React-debug
|
|
791
|
+
- React-graphics
|
|
792
|
+
- React-jsi
|
|
793
|
+
- React-jsiexecutor
|
|
794
|
+
- React-logger
|
|
795
|
+
- React-rendererdebug
|
|
796
|
+
- React-runtimescheduler
|
|
797
|
+
- React-utils
|
|
798
|
+
- ReactCommon/turbomodule/core
|
|
799
|
+
- React-Fabric/telemetry (0.73.0):
|
|
800
|
+
- DoubleConversion
|
|
801
|
+
- fmt (~> 6.2.1)
|
|
802
|
+
- glog
|
|
803
|
+
- hermes-engine
|
|
804
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
805
|
+
- RCTRequired
|
|
806
|
+
- RCTTypeSafety
|
|
807
|
+
- React-Core
|
|
808
|
+
- React-cxxreact
|
|
809
|
+
- React-debug
|
|
810
|
+
- React-graphics
|
|
811
|
+
- React-jsi
|
|
812
|
+
- React-jsiexecutor
|
|
813
|
+
- React-logger
|
|
814
|
+
- React-rendererdebug
|
|
815
|
+
- React-runtimescheduler
|
|
816
|
+
- React-utils
|
|
817
|
+
- ReactCommon/turbomodule/core
|
|
818
|
+
- React-Fabric/templateprocessor (0.73.0):
|
|
819
|
+
- DoubleConversion
|
|
820
|
+
- fmt (~> 6.2.1)
|
|
821
|
+
- glog
|
|
822
|
+
- hermes-engine
|
|
823
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
824
|
+
- RCTRequired
|
|
825
|
+
- RCTTypeSafety
|
|
826
|
+
- React-Core
|
|
827
|
+
- React-cxxreact
|
|
828
|
+
- React-debug
|
|
829
|
+
- React-graphics
|
|
830
|
+
- React-jsi
|
|
831
|
+
- React-jsiexecutor
|
|
832
|
+
- React-logger
|
|
833
|
+
- React-rendererdebug
|
|
834
|
+
- React-runtimescheduler
|
|
835
|
+
- React-utils
|
|
836
|
+
- ReactCommon/turbomodule/core
|
|
837
|
+
- React-Fabric/textlayoutmanager (0.73.0):
|
|
838
|
+
- DoubleConversion
|
|
839
|
+
- fmt (~> 6.2.1)
|
|
840
|
+
- glog
|
|
841
|
+
- hermes-engine
|
|
842
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
843
|
+
- RCTRequired
|
|
844
|
+
- RCTTypeSafety
|
|
845
|
+
- React-Core
|
|
846
|
+
- React-cxxreact
|
|
847
|
+
- React-debug
|
|
848
|
+
- React-Fabric/uimanager
|
|
849
|
+
- React-graphics
|
|
850
|
+
- React-jsi
|
|
851
|
+
- React-jsiexecutor
|
|
852
|
+
- React-logger
|
|
853
|
+
- React-rendererdebug
|
|
854
|
+
- React-runtimescheduler
|
|
855
|
+
- React-utils
|
|
856
|
+
- ReactCommon/turbomodule/core
|
|
857
|
+
- React-Fabric/uimanager (0.73.0):
|
|
858
|
+
- DoubleConversion
|
|
859
|
+
- fmt (~> 6.2.1)
|
|
860
|
+
- glog
|
|
861
|
+
- hermes-engine
|
|
862
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
863
|
+
- RCTRequired
|
|
864
|
+
- RCTTypeSafety
|
|
865
|
+
- React-Core
|
|
866
|
+
- React-cxxreact
|
|
867
|
+
- React-debug
|
|
868
|
+
- React-graphics
|
|
869
|
+
- React-jsi
|
|
870
|
+
- React-jsiexecutor
|
|
871
|
+
- React-logger
|
|
872
|
+
- React-rendererdebug
|
|
873
|
+
- React-runtimescheduler
|
|
874
|
+
- React-utils
|
|
875
|
+
- ReactCommon/turbomodule/core
|
|
876
|
+
- React-FabricImage (0.73.0):
|
|
877
|
+
- DoubleConversion
|
|
878
|
+
- fmt (~> 6.2.1)
|
|
879
|
+
- glog
|
|
880
|
+
- hermes-engine
|
|
881
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
882
|
+
- RCTRequired (= 0.73.0)
|
|
883
|
+
- RCTTypeSafety (= 0.73.0)
|
|
884
|
+
- React-Fabric
|
|
885
|
+
- React-graphics
|
|
886
|
+
- React-ImageManager
|
|
887
|
+
- React-jsi
|
|
888
|
+
- React-jsiexecutor (= 0.73.0)
|
|
889
|
+
- React-logger
|
|
890
|
+
- React-rendererdebug
|
|
891
|
+
- React-utils
|
|
892
|
+
- ReactCommon
|
|
893
|
+
- Yoga
|
|
894
|
+
- React-graphics (0.73.0):
|
|
895
|
+
- glog
|
|
896
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
897
|
+
- React-Core/Default (= 0.73.0)
|
|
898
|
+
- React-utils
|
|
899
|
+
- React-hermes (0.73.0):
|
|
900
|
+
- DoubleConversion
|
|
901
|
+
- fmt (~> 6.2.1)
|
|
902
|
+
- glog
|
|
903
|
+
- hermes-engine
|
|
904
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
905
|
+
- RCT-Folly/Futures (= 2022.05.16.00)
|
|
906
|
+
- React-cxxreact (= 0.73.0)
|
|
907
|
+
- React-jsi
|
|
908
|
+
- React-jsiexecutor (= 0.73.0)
|
|
909
|
+
- React-jsinspector (= 0.73.0)
|
|
910
|
+
- React-perflogger (= 0.73.0)
|
|
911
|
+
- React-ImageManager (0.73.0):
|
|
912
|
+
- glog
|
|
913
|
+
- RCT-Folly/Fabric
|
|
914
|
+
- React-Core/Default
|
|
915
|
+
- React-debug
|
|
916
|
+
- React-Fabric
|
|
917
|
+
- React-graphics
|
|
918
|
+
- React-rendererdebug
|
|
919
|
+
- React-utils
|
|
920
|
+
- React-jserrorhandler (0.73.0):
|
|
921
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
922
|
+
- React-debug
|
|
923
|
+
- React-jsi
|
|
924
|
+
- React-Mapbuffer
|
|
925
|
+
- React-jsi (0.73.0):
|
|
926
|
+
- boost (= 1.83.0)
|
|
927
|
+
- DoubleConversion
|
|
928
|
+
- fmt (~> 6.2.1)
|
|
929
|
+
- glog
|
|
930
|
+
- hermes-engine
|
|
931
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
932
|
+
- React-jsiexecutor (0.73.0):
|
|
933
|
+
- DoubleConversion
|
|
934
|
+
- fmt (~> 6.2.1)
|
|
935
|
+
- glog
|
|
936
|
+
- hermes-engine
|
|
937
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
938
|
+
- React-cxxreact (= 0.73.0)
|
|
939
|
+
- React-jsi (= 0.73.0)
|
|
940
|
+
- React-perflogger (= 0.73.0)
|
|
941
|
+
- React-jsinspector (0.73.0)
|
|
942
|
+
- React-logger (0.73.0):
|
|
943
|
+
- glog
|
|
944
|
+
- React-Mapbuffer (0.73.0):
|
|
945
|
+
- glog
|
|
946
|
+
- React-debug
|
|
947
|
+
- react-native-get-random-values (1.10.0):
|
|
948
|
+
- React-Core
|
|
949
|
+
- react-native-safe-area-context (4.7.4):
|
|
950
|
+
- React-Core
|
|
951
|
+
- React-nativeconfig (0.73.0)
|
|
952
|
+
- React-NativeModulesApple (0.73.0):
|
|
953
|
+
- glog
|
|
954
|
+
- hermes-engine
|
|
955
|
+
- React-callinvoker
|
|
956
|
+
- React-Core
|
|
957
|
+
- React-cxxreact
|
|
958
|
+
- React-jsi
|
|
959
|
+
- React-runtimeexecutor
|
|
960
|
+
- ReactCommon/turbomodule/bridging
|
|
961
|
+
- ReactCommon/turbomodule/core
|
|
962
|
+
- React-perflogger (0.73.0)
|
|
963
|
+
- React-RCTActionSheet (0.73.0):
|
|
964
|
+
- React-Core/RCTActionSheetHeaders (= 0.73.0)
|
|
965
|
+
- React-RCTAnimation (0.73.0):
|
|
966
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
967
|
+
- RCTTypeSafety
|
|
968
|
+
- React-Codegen
|
|
969
|
+
- React-Core/RCTAnimationHeaders
|
|
970
|
+
- React-jsi
|
|
971
|
+
- React-NativeModulesApple
|
|
972
|
+
- ReactCommon
|
|
973
|
+
- React-RCTAppDelegate (0.73.0):
|
|
974
|
+
- RCT-Folly
|
|
975
|
+
- RCTRequired
|
|
976
|
+
- RCTTypeSafety
|
|
977
|
+
- React-Core
|
|
978
|
+
- React-CoreModules
|
|
979
|
+
- React-hermes
|
|
980
|
+
- React-nativeconfig
|
|
981
|
+
- React-NativeModulesApple
|
|
982
|
+
- React-RCTFabric
|
|
983
|
+
- React-RCTImage
|
|
984
|
+
- React-RCTNetwork
|
|
985
|
+
- React-runtimescheduler
|
|
986
|
+
- ReactCommon
|
|
987
|
+
- React-RCTBlob (0.73.0):
|
|
988
|
+
- hermes-engine
|
|
989
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
990
|
+
- React-Codegen
|
|
991
|
+
- React-Core/RCTBlobHeaders
|
|
992
|
+
- React-Core/RCTWebSocket
|
|
993
|
+
- React-jsi
|
|
994
|
+
- React-NativeModulesApple
|
|
995
|
+
- React-RCTNetwork
|
|
996
|
+
- ReactCommon
|
|
997
|
+
- React-RCTFabric (0.73.0):
|
|
998
|
+
- glog
|
|
999
|
+
- hermes-engine
|
|
1000
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
1001
|
+
- React-Core
|
|
1002
|
+
- React-debug
|
|
1003
|
+
- React-Fabric
|
|
1004
|
+
- React-FabricImage
|
|
1005
|
+
- React-graphics
|
|
1006
|
+
- React-ImageManager
|
|
1007
|
+
- React-jsi
|
|
1008
|
+
- React-nativeconfig
|
|
1009
|
+
- React-RCTImage
|
|
1010
|
+
- React-RCTText
|
|
1011
|
+
- React-rendererdebug
|
|
1012
|
+
- React-runtimescheduler
|
|
1013
|
+
- React-utils
|
|
1014
|
+
- Yoga
|
|
1015
|
+
- React-RCTImage (0.73.0):
|
|
1016
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1017
|
+
- RCTTypeSafety
|
|
1018
|
+
- React-Codegen
|
|
1019
|
+
- React-Core/RCTImageHeaders
|
|
1020
|
+
- React-jsi
|
|
1021
|
+
- React-NativeModulesApple
|
|
1022
|
+
- React-RCTNetwork
|
|
1023
|
+
- ReactCommon
|
|
1024
|
+
- React-RCTLinking (0.73.0):
|
|
1025
|
+
- React-Codegen
|
|
1026
|
+
- React-Core/RCTLinkingHeaders (= 0.73.0)
|
|
1027
|
+
- React-jsi (= 0.73.0)
|
|
1028
|
+
- React-NativeModulesApple
|
|
1029
|
+
- ReactCommon
|
|
1030
|
+
- ReactCommon/turbomodule/core (= 0.73.0)
|
|
1031
|
+
- React-RCTNetwork (0.73.0):
|
|
1032
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1033
|
+
- RCTTypeSafety
|
|
1034
|
+
- React-Codegen
|
|
1035
|
+
- React-Core/RCTNetworkHeaders
|
|
1036
|
+
- React-jsi
|
|
1037
|
+
- React-NativeModulesApple
|
|
1038
|
+
- ReactCommon
|
|
1039
|
+
- React-RCTSettings (0.73.0):
|
|
1040
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1041
|
+
- RCTTypeSafety
|
|
1042
|
+
- React-Codegen
|
|
1043
|
+
- React-Core/RCTSettingsHeaders
|
|
1044
|
+
- React-jsi
|
|
1045
|
+
- React-NativeModulesApple
|
|
1046
|
+
- ReactCommon
|
|
1047
|
+
- React-RCTText (0.73.0):
|
|
1048
|
+
- React-Core/RCTTextHeaders (= 0.73.0)
|
|
1049
|
+
- Yoga
|
|
1050
|
+
- React-RCTVibration (0.73.0):
|
|
1051
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1052
|
+
- React-Codegen
|
|
1053
|
+
- React-Core/RCTVibrationHeaders
|
|
1054
|
+
- React-jsi
|
|
1055
|
+
- React-NativeModulesApple
|
|
1056
|
+
- ReactCommon
|
|
1057
|
+
- React-rendererdebug (0.73.0):
|
|
1058
|
+
- DoubleConversion
|
|
1059
|
+
- fmt (~> 6.2.1)
|
|
1060
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1061
|
+
- React-debug
|
|
1062
|
+
- React-rncore (0.73.0)
|
|
1063
|
+
- React-runtimeexecutor (0.73.0):
|
|
1064
|
+
- React-jsi (= 0.73.0)
|
|
1065
|
+
- React-runtimescheduler (0.73.0):
|
|
1066
|
+
- glog
|
|
1067
|
+
- hermes-engine
|
|
1068
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1069
|
+
- React-callinvoker
|
|
1070
|
+
- React-cxxreact
|
|
1071
|
+
- React-debug
|
|
1072
|
+
- React-jsi
|
|
1073
|
+
- React-rendererdebug
|
|
1074
|
+
- React-runtimeexecutor
|
|
1075
|
+
- React-utils
|
|
1076
|
+
- React-utils (0.73.0):
|
|
1077
|
+
- glog
|
|
1078
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1079
|
+
- React-debug
|
|
1080
|
+
- ReactCommon (0.73.0):
|
|
1081
|
+
- React-logger (= 0.73.0)
|
|
1082
|
+
- ReactCommon/turbomodule (= 0.73.0)
|
|
1083
|
+
- ReactCommon/turbomodule (0.73.0):
|
|
1084
|
+
- DoubleConversion
|
|
1085
|
+
- fmt (~> 6.2.1)
|
|
1086
|
+
- glog
|
|
1087
|
+
- hermes-engine
|
|
1088
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1089
|
+
- React-callinvoker (= 0.73.0)
|
|
1090
|
+
- React-cxxreact (= 0.73.0)
|
|
1091
|
+
- React-jsi (= 0.73.0)
|
|
1092
|
+
- React-logger (= 0.73.0)
|
|
1093
|
+
- React-perflogger (= 0.73.0)
|
|
1094
|
+
- ReactCommon/turbomodule/bridging (= 0.73.0)
|
|
1095
|
+
- ReactCommon/turbomodule/core (= 0.73.0)
|
|
1096
|
+
- ReactCommon/turbomodule/bridging (0.73.0):
|
|
1097
|
+
- DoubleConversion
|
|
1098
|
+
- fmt (~> 6.2.1)
|
|
1099
|
+
- glog
|
|
1100
|
+
- hermes-engine
|
|
1101
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1102
|
+
- React-callinvoker (= 0.73.0)
|
|
1103
|
+
- React-cxxreact (= 0.73.0)
|
|
1104
|
+
- React-jsi (= 0.73.0)
|
|
1105
|
+
- React-logger (= 0.73.0)
|
|
1106
|
+
- React-perflogger (= 0.73.0)
|
|
1107
|
+
- ReactCommon/turbomodule/core (0.73.0):
|
|
1108
|
+
- DoubleConversion
|
|
1109
|
+
- fmt (~> 6.2.1)
|
|
1110
|
+
- glog
|
|
1111
|
+
- hermes-engine
|
|
1112
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1113
|
+
- React-callinvoker (= 0.73.0)
|
|
1114
|
+
- React-cxxreact (= 0.73.0)
|
|
1115
|
+
- React-jsi (= 0.73.0)
|
|
1116
|
+
- React-logger (= 0.73.0)
|
|
1117
|
+
- React-perflogger (= 0.73.0)
|
|
1118
|
+
- RNCAsyncStorage (1.21.0):
|
|
1119
|
+
- React-Core
|
|
1120
|
+
- RNCMaskedView (0.1.11):
|
|
1121
|
+
- React
|
|
1122
|
+
- RNGestureHandler (2.14.0):
|
|
1123
|
+
- glog
|
|
1124
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1125
|
+
- React-Core
|
|
1126
|
+
- RNScreens (3.29.0):
|
|
1127
|
+
- glog
|
|
1128
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1129
|
+
- React-Core
|
|
1130
|
+
- segment-analytics-react-native (2.16.1):
|
|
1131
|
+
- React-Core
|
|
1132
|
+
- sovran-react-native
|
|
1133
|
+
- SocketRocket (0.6.1)
|
|
1134
|
+
- sovran-react-native (1.0.4):
|
|
1135
|
+
- React-Core
|
|
1136
|
+
- Yoga (1.14.0)
|
|
1137
|
+
|
|
1138
|
+
DEPENDENCIES:
|
|
1139
|
+
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
1140
|
+
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
1141
|
+
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
1142
|
+
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
|
1143
|
+
- Flipper (= 0.201.0)
|
|
1144
|
+
- Flipper-Boost-iOSX (= 1.76.0.1.11)
|
|
1145
|
+
- Flipper-DoubleConversion (= 3.2.0.1)
|
|
1146
|
+
- Flipper-Fmt (= 7.1.7)
|
|
1147
|
+
- Flipper-Folly (= 2.6.10)
|
|
1148
|
+
- Flipper-Glog (= 0.5.0.5)
|
|
1149
|
+
- Flipper-PeerTalk (= 0.0.4)
|
|
1150
|
+
- FlipperKit (= 0.201.0)
|
|
1151
|
+
- FlipperKit/Core (= 0.201.0)
|
|
1152
|
+
- FlipperKit/CppBridge (= 0.201.0)
|
|
1153
|
+
- FlipperKit/FBCxxFollyDynamicConvert (= 0.201.0)
|
|
1154
|
+
- FlipperKit/FBDefines (= 0.201.0)
|
|
1155
|
+
- FlipperKit/FKPortForwarding (= 0.201.0)
|
|
1156
|
+
- FlipperKit/FlipperKitHighlightOverlay (= 0.201.0)
|
|
1157
|
+
- FlipperKit/FlipperKitLayoutPlugin (= 0.201.0)
|
|
1158
|
+
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.201.0)
|
|
1159
|
+
- FlipperKit/FlipperKitNetworkPlugin (= 0.201.0)
|
|
1160
|
+
- FlipperKit/FlipperKitReactPlugin (= 0.201.0)
|
|
1161
|
+
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.201.0)
|
|
1162
|
+
- FlipperKit/SKIOSNetworkPlugin (= 0.201.0)
|
|
1163
|
+
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
1164
|
+
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
|
|
1165
|
+
- libevent (~> 2.1.12)
|
|
1166
|
+
- OpenSSL-Universal (= 1.1.1100)
|
|
1167
|
+
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
1168
|
+
- RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
1169
|
+
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
|
1170
|
+
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
1171
|
+
- React (from `../node_modules/react-native/`)
|
|
1172
|
+
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
1173
|
+
- React-Codegen (from `build/generated/ios`)
|
|
1174
|
+
- React-Core (from `../node_modules/react-native/`)
|
|
1175
|
+
- React-Core/DevSupport (from `../node_modules/react-native/`)
|
|
1176
|
+
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
1177
|
+
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
1178
|
+
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
1179
|
+
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
|
|
1180
|
+
- React-Fabric (from `../node_modules/react-native/ReactCommon`)
|
|
1181
|
+
- React-FabricImage (from `../node_modules/react-native/ReactCommon`)
|
|
1182
|
+
- React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
|
|
1183
|
+
- React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
|
|
1184
|
+
- React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
|
|
1185
|
+
- React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
|
|
1186
|
+
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
1187
|
+
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
1188
|
+
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
|
|
1189
|
+
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
1190
|
+
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
|
|
1191
|
+
- react-native-get-random-values (from `../node_modules/react-native-get-random-values`)
|
|
1192
|
+
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
|
1193
|
+
- React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
|
|
1194
|
+
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
|
1195
|
+
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
1196
|
+
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
1197
|
+
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
1198
|
+
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
|
|
1199
|
+
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
1200
|
+
- React-RCTFabric (from `../node_modules/react-native/React`)
|
|
1201
|
+
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
1202
|
+
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
1203
|
+
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
1204
|
+
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
1205
|
+
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
1206
|
+
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
1207
|
+
- React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
|
|
1208
|
+
- React-rncore (from `../node_modules/react-native/ReactCommon`)
|
|
1209
|
+
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
1210
|
+
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
|
1211
|
+
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
|
1212
|
+
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
1213
|
+
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
|
|
1214
|
+
- "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
|
|
1215
|
+
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
|
|
1216
|
+
- RNScreens (from `../node_modules/react-native-screens`)
|
|
1217
|
+
- segment-analytics-react-native (from `../../../packages/core`)
|
|
1218
|
+
- sovran-react-native (from `../../../packages/sovran`)
|
|
1219
|
+
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
1220
|
+
|
|
1221
|
+
SPEC REPOS:
|
|
1222
|
+
trunk:
|
|
1223
|
+
- CocoaAsyncSocket
|
|
1224
|
+
- Flipper
|
|
1225
|
+
- Flipper-Boost-iOSX
|
|
1226
|
+
- Flipper-DoubleConversion
|
|
1227
|
+
- Flipper-Fmt
|
|
1228
|
+
- Flipper-Folly
|
|
1229
|
+
- Flipper-Glog
|
|
1230
|
+
- Flipper-PeerTalk
|
|
1231
|
+
- FlipperKit
|
|
1232
|
+
- fmt
|
|
1233
|
+
- libevent
|
|
1234
|
+
- OpenSSL-Universal
|
|
1235
|
+
- SocketRocket
|
|
1236
|
+
|
|
1237
|
+
EXTERNAL SOURCES:
|
|
1238
|
+
boost:
|
|
1239
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
1240
|
+
DoubleConversion:
|
|
1241
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
1242
|
+
FBLazyVector:
|
|
1243
|
+
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
1244
|
+
FBReactNativeSpec:
|
|
1245
|
+
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
|
1246
|
+
glog:
|
|
1247
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
1248
|
+
hermes-engine:
|
|
1249
|
+
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
|
|
1250
|
+
:tag: hermes-2023-11-17-RNv0.73.0-21043a3fc062be445e56a2c10ecd8be028dd9cc5
|
|
1251
|
+
RCT-Folly:
|
|
1252
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
1253
|
+
RCTRequired:
|
|
1254
|
+
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
|
1255
|
+
RCTTypeSafety:
|
|
1256
|
+
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
1257
|
+
React:
|
|
1258
|
+
:path: "../node_modules/react-native/"
|
|
1259
|
+
React-callinvoker:
|
|
1260
|
+
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
1261
|
+
React-Codegen:
|
|
1262
|
+
:path: build/generated/ios
|
|
1263
|
+
React-Core:
|
|
1264
|
+
:path: "../node_modules/react-native/"
|
|
1265
|
+
React-CoreModules:
|
|
1266
|
+
:path: "../node_modules/react-native/React/CoreModules"
|
|
1267
|
+
React-cxxreact:
|
|
1268
|
+
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
1269
|
+
React-debug:
|
|
1270
|
+
:path: "../node_modules/react-native/ReactCommon/react/debug"
|
|
1271
|
+
React-Fabric:
|
|
1272
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1273
|
+
React-FabricImage:
|
|
1274
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1275
|
+
React-graphics:
|
|
1276
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
|
|
1277
|
+
React-hermes:
|
|
1278
|
+
:path: "../node_modules/react-native/ReactCommon/hermes"
|
|
1279
|
+
React-ImageManager:
|
|
1280
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
|
|
1281
|
+
React-jserrorhandler:
|
|
1282
|
+
:path: "../node_modules/react-native/ReactCommon/jserrorhandler"
|
|
1283
|
+
React-jsi:
|
|
1284
|
+
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
1285
|
+
React-jsiexecutor:
|
|
1286
|
+
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
1287
|
+
React-jsinspector:
|
|
1288
|
+
:path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
|
|
1289
|
+
React-logger:
|
|
1290
|
+
:path: "../node_modules/react-native/ReactCommon/logger"
|
|
1291
|
+
React-Mapbuffer:
|
|
1292
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1293
|
+
react-native-get-random-values:
|
|
1294
|
+
:path: "../node_modules/react-native-get-random-values"
|
|
1295
|
+
react-native-safe-area-context:
|
|
1296
|
+
:path: "../node_modules/react-native-safe-area-context"
|
|
1297
|
+
React-nativeconfig:
|
|
1298
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1299
|
+
React-NativeModulesApple:
|
|
1300
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
|
|
1301
|
+
React-perflogger:
|
|
1302
|
+
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
1303
|
+
React-RCTActionSheet:
|
|
1304
|
+
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
1305
|
+
React-RCTAnimation:
|
|
1306
|
+
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
1307
|
+
React-RCTAppDelegate:
|
|
1308
|
+
:path: "../node_modules/react-native/Libraries/AppDelegate"
|
|
1309
|
+
React-RCTBlob:
|
|
1310
|
+
:path: "../node_modules/react-native/Libraries/Blob"
|
|
1311
|
+
React-RCTFabric:
|
|
1312
|
+
:path: "../node_modules/react-native/React"
|
|
1313
|
+
React-RCTImage:
|
|
1314
|
+
:path: "../node_modules/react-native/Libraries/Image"
|
|
1315
|
+
React-RCTLinking:
|
|
1316
|
+
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
1317
|
+
React-RCTNetwork:
|
|
1318
|
+
:path: "../node_modules/react-native/Libraries/Network"
|
|
1319
|
+
React-RCTSettings:
|
|
1320
|
+
:path: "../node_modules/react-native/Libraries/Settings"
|
|
1321
|
+
React-RCTText:
|
|
1322
|
+
:path: "../node_modules/react-native/Libraries/Text"
|
|
1323
|
+
React-RCTVibration:
|
|
1324
|
+
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
1325
|
+
React-rendererdebug:
|
|
1326
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
|
|
1327
|
+
React-rncore:
|
|
1328
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1329
|
+
React-runtimeexecutor:
|
|
1330
|
+
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
1331
|
+
React-runtimescheduler:
|
|
1332
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
|
|
1333
|
+
React-utils:
|
|
1334
|
+
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
|
1335
|
+
ReactCommon:
|
|
1336
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1337
|
+
RNCAsyncStorage:
|
|
1338
|
+
:path: "../node_modules/@react-native-async-storage/async-storage"
|
|
1339
|
+
RNCMaskedView:
|
|
1340
|
+
:path: "../node_modules/@react-native-community/masked-view"
|
|
1341
|
+
RNGestureHandler:
|
|
1342
|
+
:path: "../node_modules/react-native-gesture-handler"
|
|
1343
|
+
RNScreens:
|
|
1344
|
+
:path: "../node_modules/react-native-screens"
|
|
1345
|
+
segment-analytics-react-native:
|
|
1346
|
+
:path: "../../../packages/core"
|
|
1347
|
+
sovran-react-native:
|
|
1348
|
+
:path: "../../../packages/sovran"
|
|
1349
|
+
Yoga:
|
|
1350
|
+
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
1351
|
+
|
|
1352
|
+
SPEC CHECKSUMS:
|
|
1353
|
+
boost: 26fad476bfa736552bbfa698a06cc530475c1505
|
|
1354
|
+
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
|
1355
|
+
DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
|
|
1356
|
+
FBLazyVector: 39ba45baf4e398618f8b3a4bb6ba8fcdb7fc2133
|
|
1357
|
+
FBReactNativeSpec: 20cfca68498e27879514790359289d1df2b52c56
|
|
1358
|
+
Flipper: c7a0093234c4bdd456e363f2f19b2e4b27652d44
|
|
1359
|
+
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
|
|
1360
|
+
Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
|
|
1361
|
+
Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
|
|
1362
|
+
Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
|
|
1363
|
+
Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
|
|
1364
|
+
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
|
1365
|
+
FlipperKit: 37525a5d056ef9b93d1578e04bc3ea1de940094f
|
|
1366
|
+
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
1367
|
+
glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
|
|
1368
|
+
hermes-engine: 34304f8c6e8fa68f63a5fe29af82f227d817d7a7
|
|
1369
|
+
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
|
1370
|
+
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
|
|
1371
|
+
RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0
|
|
1372
|
+
RCTRequired: 5e3631b27c08716986980ef23eed8abdee1cdcaf
|
|
1373
|
+
RCTTypeSafety: 02a64828b0b428eb4f63de1397d44fb2d0747e85
|
|
1374
|
+
React: df5dbfbd10c5bd8d4bcb49bd9830551533e11c7e
|
|
1375
|
+
React-callinvoker: dc0dff59e8d3d1fe4cd9fb5f120f82a775d2a325
|
|
1376
|
+
React-Codegen: 88bf5d1e29db28c1c9b88fe909f073be6c9f769d
|
|
1377
|
+
React-Core: 276ccbbf282538138f4429313bb1200a15067c6e
|
|
1378
|
+
React-CoreModules: 64747180c0329bebed8307ffdc97c331220277a6
|
|
1379
|
+
React-cxxreact: 84d98283f701bae882dcd3ad7c573a02f4c9d5c0
|
|
1380
|
+
React-debug: 443cf46ade52f3555dd1ec709718793490ac5edc
|
|
1381
|
+
React-Fabric: 4c877c032b3acc07ed3f2e46ae25b5a39af89382
|
|
1382
|
+
React-FabricImage: c46c47ea3c672b9fadd6850795a51d3d9e5df712
|
|
1383
|
+
React-graphics: e1cff03acf09098513642535324432d495b6425c
|
|
1384
|
+
React-hermes: e3356f82c76c5c41688a7e08ced2254a944501c4
|
|
1385
|
+
React-ImageManager: c783771479ab0bf1e3dbe711cc8b9f5b0f65972b
|
|
1386
|
+
React-jserrorhandler: 7cd93ce5165e5d66c87b6f612f94e5642f5c5028
|
|
1387
|
+
React-jsi: 81b5fe94500e69051c2f3a775308afaa53e2608b
|
|
1388
|
+
React-jsiexecutor: 4f790f865ad23fa949396c1a103d06867c0047ed
|
|
1389
|
+
React-jsinspector: 9f6fb9ed9f03a0fb961ab8dc2e0e0ee0dc729e77
|
|
1390
|
+
React-logger: 008caec0d6a587abc1e71be21bfac5ba1662fe6a
|
|
1391
|
+
React-Mapbuffer: 58fe558faf52ecde6705376700f848d0293d1cef
|
|
1392
|
+
react-native-get-random-values: 384787fd76976f5aec9465aff6fa9e9129af1e74
|
|
1393
|
+
react-native-safe-area-context: 2cd91d532de12acdb0a9cbc8d43ac72a8e4c897c
|
|
1394
|
+
React-nativeconfig: a063483672b8add47a4875b0281e202908ff6747
|
|
1395
|
+
React-NativeModulesApple: 169506a5fd708ab22811f76ee06a976595c367a1
|
|
1396
|
+
React-perflogger: b61e5db8e5167f5e70366e820766c492847c082e
|
|
1397
|
+
React-RCTActionSheet: dcaecff7ffc1888972cd1c1935751ff3bce1e0c1
|
|
1398
|
+
React-RCTAnimation: 24b8ae7ebc897ba3f33a93a020bbc66ab7863f5d
|
|
1399
|
+
React-RCTAppDelegate: 661fc59d833e6727cc8c7e36bf8664215e5c277f
|
|
1400
|
+
React-RCTBlob: 112880abc731c5a0d8eefb5919a591ad30f630e8
|
|
1401
|
+
React-RCTFabric: a0289e3bf73da8c03b68b4e9733ba497b021de45
|
|
1402
|
+
React-RCTImage: b8065c1b51cc6c2ff58ad81001619352518dd793
|
|
1403
|
+
React-RCTLinking: fdf9f43f8bd763d178281a079700105674953849
|
|
1404
|
+
React-RCTNetwork: ad3d988e425288492510ee37c9dcdf8259566214
|
|
1405
|
+
React-RCTSettings: 67c3876f2775d1cf86298f657e6006afc2a2e4cf
|
|
1406
|
+
React-RCTText: 671518da40bd548943ec12ee6a60f733a751e2e9
|
|
1407
|
+
React-RCTVibration: 60bc4d01d7d8ab7cff14852a195a7fa93b38e1f3
|
|
1408
|
+
React-rendererdebug: 6aaab394c9fefe395ef61809580a9bf63b98fd3e
|
|
1409
|
+
React-rncore: 6680f0ebb941e256af7dc92c6a512356e77bfea7
|
|
1410
|
+
React-runtimeexecutor: 2ca6f02d3fd6eea5b9575eb30720cf12c5d89906
|
|
1411
|
+
React-runtimescheduler: 77543c74df984ce56c09d49d427149c53784aaf6
|
|
1412
|
+
React-utils: 42708ea436853045ef1eaff29996813d9fbbe209
|
|
1413
|
+
ReactCommon: 851280fb976399ca1aabc74cc2c3612069ea70a2
|
|
1414
|
+
RNCAsyncStorage: 618d03a5f52fbccb3d7010076bc54712844c18ef
|
|
1415
|
+
RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489
|
|
1416
|
+
RNGestureHandler: 61bfdfc05db9b79dd61f894dcd29d3dcc6db3c02
|
|
1417
|
+
RNScreens: b582cb834dc4133307562e930e8fa914b8c04ef2
|
|
1418
|
+
segment-analytics-react-native: 13d4ba325add2b2ed796ee58531e3b4cacfe692f
|
|
1419
|
+
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
|
|
1420
|
+
sovran-react-native: 791f2f726b4d57ece59676eda58d6da9dc95ad4e
|
|
1421
|
+
Yoga: 20d6a900dcc8d61d5e3b799bbf627cc34474a8c4
|
|
1422
|
+
|
|
1423
|
+
PODFILE CHECKSUM: a8b42a411ee5d548930e6e63e39d1b743067421d
|
|
1424
|
+
|
|
1425
|
+
COCOAPODS: 1.14.3
|